@verb #2731:"status_*" none none none rdo #2731 @program #2731:"status_*" none none none if (verb == "status_normal") if (this:status_idle() == 0 && this:status_afk() == 0 && this:status_busy() == 0 && this:status_asleep() == 0) return 1 endif elseif (verb == "status_idle") if (this:idle_seconds() >= 1800) return 1 endif elseif (verb == "status_afk") if (this.afk) return 1 endif elseif (verb == "status_busy") if (this.busy) return 1 endif elseif (verb == "status_asleep") if (!this:connected()) return 1 endif endif .