ID:176260
 
Could any kind soul give me an example of how to use the repop proc?
Thanks in advance..
-Spoon
Repop()
world.refresh
spawn(600)
Repop()

mob
Login()
..()
Repop()
In response to Koolguy900095
Koolguy900095 wrote:
Repop()
world.refresh
spawn(600)
Repop()

mob
Login()
..()
Repop()
No! That's an infinite loop (although I don't think you meant it to be...) Also, world.refresh???
Also no reason to Repop() in a player login...
Make it this:
<code>ReSpawn() world << "Repop!" Repop() spawn(600) //(Every 60 sec) ReSpawn() // Needs the extra indentation. world New() ..() ReSpawn()</code>

-<font color="#33ff33">Nova</font>
In response to Nova2000
Thanks a lot, you've really helped me out!
Especially with such a vauge question...
-SPoOn!