Thread: script help
View Single Post
  #3  
Old 01-17-2009, 07:15 AM
Seich Seich is offline
Noctorious' NeoHunter
Seich's Avatar
Join Date: Jun 2008
Location: Honduras
Posts: 193
Seich will become famous soon enough
Send a message via MSN to Seich Send a message via Yahoo to Seich
If you want to reset players as they login use something like this:

PHP Code:
function onActionPlayerOnline(){
    if(
client.reset != true){
        
temp.acc player.account;
        
sendtorc(format("/reset %s"temp.acc));
        
client.reset true;
    }

This should be added to the npc control.

I personally dislike that method, I would reset all accounts for once, instead of resetting them as players login as you requested.
Reply With Quote