Is it possible for reset all variables?
PHP Code:
enum PLAYER_DATABASE
{
STEAMID[32],
AWP_KILLS,
SCOUT_KILLS,
DEAGLE_KILLS,
USP_KILLS,
GLOCK_KILLS,
KNIFE_KILLS,
AWP_MENU,
SCOUT_MENU,
DEAGLE_MENU,
USP_MENU,
GLOCK_MENU,
KNIFE_MENU
}
new player_data[33][PLAYER_DATABASE];
public client_putinserver(id) {
if(is_user_bot(id)) return;
for(new i=0;PLAYER_DATABASE:i<=KNIFE_MENU;PLAYER_DATABASE:i++)
player_data[id][PLAYER_DATABASE:i] = 0
load(id);
}