ID:142665
 
Code:
proc
Repoploop()
world.Repop()
world << "**REPOP**"
spawn(1200)Repoploop()
..()


Problem description:
everytime i host the game it says after 1200 sec

runtime error: Cannot execute null.Repoploop().
proc name: Repoploop (/proc/Repoploop)
usr: null
src: null
call stack:
Repoploop()
: New()
Crettos (/mob): Login()
Crettos (/client): New()

Well that's definitely a weird error. You've written that wrong, though, and are calling it wrong.

world/New()
spawn() Repoploop()

proc/Repoploop()
while(1)
sleep(1200)
world << "**REPOP**"
world.Repop()


Don't use recursion for no reason.
In response to Garthor (#1)
Thank you very much.