02.11.2013, 18:46
Check the OnPlayerConnect callback and write something like this :
This will check if the player has lvl 0(just joined) and it will set the player's score to 10 .
pawn Код:
if(GetPlayerScore(playerid) == 0)
{
SetPlayerScore(playerid, 10);
return 1;
}