15.10.2012, 10:41
Or you can do this:
Nice work I guess..
pawn Код:
new bool:g_FirstSpawn[MAX_PLAYERS];
public OnPlayerSpawn(playerid)
{
if (!g_FirstSpawn[playerid])
{
SendClientMessage(playerid, -1, "You've just spawned for the first time!");
g_FirstSpawn[playerid] = true;
}
giveplayermoney
setplayerteam
more code
...
}