ID:178967
 
I'm Having Trouble With the Admin tools i am creating, This is what i have:


mob/GM
key = "NilFisk"


verb/boot(mob/M in world,reason as text)
set category = "Blah tools"
M<<"You have been booted for [reason]"
world<<" [M] was booted for [reason]"
del(M)
mob/GM
verb

RenameWorld(msg as text)
set category = "Blah tools"
world.name = msg
world<<"World is now called [msg]"

Reboot()
set category = "Blah tools"
world<<"\green WORLD IS REBOOTING IN 5 SECONDS!!!"
sleep(10)
world<<"4"
sleep(10)
world<<"3"
sleep(10)
world<<"2"
sleep(10)
world<<"1"
sleep(10)
world.Reboot()

announce(message as message)
set desc = "() Announce something globally"
if(lentext(message) >=400)
usr<<"Please Shorten Your Message it is too long"
else
world<< "
[usr] announces"
world<< "
\red[message]"

Now, When i log in i dont have the verbs i tried it on a small min game i made and it worked, but it wont work on this one. Can anyone help me???


-NilFisk