ID:173173
 
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
Quxatrox wrote:
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~!!
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()