Admin.dm:13:error:said:undefined var
and this is the code
mob/Owner
verb
Check_For_AFK()
set category = "Staff"
world << "
for(var/mob/M in world)
M.AFK_Check()
mob/proc
AFK_Check()
said = 0
var/talk = input("Say something, or be booted.")as null|text
if(talk)
said = 1
world << "[name] has been checked. He will not be booted."
else if(!talk)
sleep(600)
world << "
if(!talk)
world << "[name] has been booted due to being AFK."
sleep(10)
del(src)
Can somone help me?