11.07.2013, 20:14
Show us your codes?
Why wouldn't it compile?
If you want it to give 50000 on player connect, use this:
Or
Hope it helped.
Why wouldn't it compile?
If you want it to give 50000 on player connect, use this:
pawn Код:
public OnPlayerConnect(playerid)
{
SetPlayerScore(playerid, GetPlayerScore(playerid) +50000);
return 1;
}
pawn Код:
public OnPlayerConnect(playerid)
{
SetPlayerScore(playerid, 50000);
return 1;
}