help reset all character stats

Load this script into your server and players will have their status points reset upon next login. If you have players online, just @kickall so they have to relog.

Code:
-	script	status_reset	-1,{	 OnPCLoginEvent:		if (!status_reset) {			resetstatus;			status_reset++;		}				end;	} 
 
Yes; if you want to do this again, run this query in your database:

Code:
DELETE FROM `global_reg_value` WHERE `str` = 'status_reset';
 
Last edited by a moderator:
Back
Top