Quote:
Originally Posted by Lorenc_
Btw, via my system to add timing
pawn Код:
new NewTime[MAX_PLAYERS];
Ongamemodeonit:
pawn Код:
SetTimerEx("AddScore1", NewTime[playerid], true, "i", playerid);
A timer to detect if the player is level 0..
pawn Код:
if(LevelPlayer[playerid] == 0) { NewTime[playerid] = 60000; }
pawn Код:
public Timer(playerid) { LevelPlayer[playerid]++; NewTime[playerid] = NewTime[playerid] + 60000; new string[50]; format(string, sizeof(string), "You are now level %i.",LevelPlayer[playerid]); SendClientMessage(playerid, COLOR_, string); return 1; }
I think its like for adding extra time, correct me if im wrong there, UNTESTED.
|
Can you help me with that score thing becouse i get errors :S