Switch to edit mode.
Name(s): status_*1: if (verb == "status_normal") 2: if (this:status_idle() == 0 && this:status_afk() == 0 && this:status_busy() == 0 && this:status_asleep() == 0) 3: return 1 4: endif 5: elseif (verb == "status_idle") 6: if (this:idle_seconds() >= 1800) 7: return 1 8: endif 9: elseif (verb == "status_afk") 10: if (this.afk) 11: return 1 12: endif 13: elseif (verb == "status_busy") 14: if (this.busy) 15: return 1 16: endif 17: elseif (verb == "status_asleep") 18: if (!this:connected()) 19: return 1 20: endif 21: endif