View Single Post
  #3  
Old 08-19-2009, 08:17 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
You have to either:

- Ask Stefan to do it for you.
- Write a Script to do it yourself.

I.e a simple script that would go in your Control-NPC:

PHP Code:
function onActionPlayerOnline() {
  
// Check if Account is in Reset Array
  
if (!(player.account in this.reset)) {
    
// Add Account to Reset Array
    
this.reset.add(player.account);
    
// Reset Account
    
sendtorc("/reset " player.account);
  }

Which is pretty much the equivalent to resetting everyone who logs in with the /reset command.

But as Lone stated, if you have different methods of storing player data you'll have to write scripts to reset them as well.
__________________
Quote: