Spawn message?
#3

Check it out:
pawn Код:
// at the top of your script
new bool:MsgSent[MAX_PLAYERS];

// inside OnPlayerConnect
MsgSent[playerid] = false;

// inside OnPlayerSpawn

if(!MsgSent[playerid])
{
    SendClientMessage(playerid,-1,"Some message");
    MsgSent[playerid] = true;
}
Reply


Messages In This Thread
Spawn message? - by FreshRio - 07.02.2012, 06:52
Re: Spawn message? - by FreshRio - 07.02.2012, 08:02
Re: Spawn message? - by Norck - 07.02.2012, 10:06
Re: Spawn message? - by FreshRio - 08.02.2012, 07:38

Forum Jump:


Users browsing this thread: 1 Guest(s)