Hey
I like to make a reboot system with different options like
Set time reboot -
sow i can set a num in the game and then it will say exepel i put 5 in it
Server reboot in 5 Seconds~!!
Stop reboot - this will stop the reboot
ID:173173
![]() Feb 8 2004, 6:28 am
|
|
mob/verb/Rebooter(n as num)
var/time= 0
time= n * 10
world <<"The world will reboot in [n] seconds"
sleep(time)//Every 10 in sleep equals one second, so multiply n by 10 wich is done above.
world.Reboot()