mob/var
AFK="No"
Busy="Yes"
mob/verb
AFK()
set category = "Commands"
if(usr.AFK == "No")
usr.AFK = "Yes"
usr.AFK2 = 1
world << "[usr] has gone Away From Keyboard!"
if(usr.AFK=="Yes")
usr.AFK = "No")
world << "[usr] is back!"
mob/verb
Busy()
if(usr.Busy=="No")
usr.Busy = "Yes"
world << "[usr] is now busy!"
if(usr.Busy=="Yes")
usr.Busy="No"
world << "[usr] is back!"
When I input this coding I get:
loading Jump Icon Stars.dme
AFK.dm:14:error: ): expected }
AFK.dm:14:error: location of top-most unmatched {
AFK.dm:14:error: ): expected }
AFK.dm:8:error: location of top-most unmatched {
Jump Icon Stars.dmb - 4 errors, 0 warnings (double-click on an error to jump to it)