29.05.2014, 08:00
Here you go hope this helps you out
Kind Regards
Ciandlah
Код:
new Exp[MAX_PLAYERS]; //Place this timer where you want it to go Exp[playerid] = SetTimerEx("UpdateExp", 60000, true, "i", playerid); forward UpdateExp(playerid); public UpdateExp(playerid) { if(IsPlayerConnected(playerid)) { // The leveling up command goes here, whats inside the command not the /levelup peice return 1; } return 1; }
Ciandlah