09.02.2012, 03:32
I would put it where you're setting scores, if you have mulitple places just make a stock then use that line wherever its setting
If you're set on OnPlayerUpdate, simply add a new bool like,
Then create an if statement inside of that checker like, if(GetPlayerScore(playerid) >= 11 && gotMessage1[playerid] == false) we would do stuff including setting gotmessage1 to true
If you're set on OnPlayerUpdate, simply add a new bool like,
pawn Code:
new bool:gotMessage1[MAX_PLAYERS] = false,
bool:gotMessage2[MAX_PLAYERS] = false;