ID:139998
 
Code:
var/afk
mob/verb/AFK()
set category="Options"
if(usr.afk == 0)
usr.afk = 1
usr << "<font color=green>Your status is set to AFK"
src.overlays += afk.dmi
else
usr.afk = 0
usr << "<font color=green>Returning From AFK"


Problem description:
verbs.dm:243:error: inconsistent indentation
verbs.dm:244:error: inconsistent indentation
verbs.dm:245:error: inconsistent indentation
verbs.dm:247:error: inconsistent indentation
verbs.dm:246:warning: empty 'else' clause
verbs.dm:248:error: inconsistent indentation

What Could Be The Solution?
(I Am A Beginning Coder So Dont Get Angry Because I Make Mistakes :P)


the error is exactly what it says, your indentation and the way you defined afk are wrong and when using icon files and such they should be in single quotes, everything should look more like this:
mob/var/afk

mob/verb/AFK()
set category="Options"
if(usr.afk == 0)
usr.afk = 1
usr << "<font color=green>Your status is set to AFK"
src.overlays += 'afk.dmi'
else
usr.afk = 0
usr << "<font color=green>Returning From AFK"