@verb #2731:"@mood @afk @busy" any any any rd #2731 @program #2731:"@mood @afk @busy" any any any if (verb == "@mood") if (argstr == "") this.mood = 0 this:tell(tostr(this:title(), ", Your mood has been removed.")) else this.mood = argstr this:tell(tostr(this:title(), ", You mood is now \"", argstr, ".\"")) endif elseif (verb == "@afk") if (!this.afk) this.afk = 1 this:tell(tostr(this:title(), ", You are now afk.")) else this.afk = 0 this:tell(tostr(this:title(), ", You are longer afk.")) endif elseif (verb == "@busy") if (argstr != "") this.busy = argstr this:tell(tostr(this:title(), ", You are now busy for because \"", argstr, "\".")) else this.busy = 0 this:tell(tostr(this:title(), ", You are longer busy.")) endif endif .