25.10.2010, 01:54
Use a boolean to check if the player had already spawned once:
pawn Код:
new bool:FirstTime[MAX_PLAYERS] = {true, ...};
public OnPlayerSpawn(playerid)
{
if(FirstTime[playerid] == true)
{
// game text code here
FirstTime[playerid] = false;
}
return 1;
}