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.