18.02.2011, 13:58
Usa uma PVar.
Se й o que entendi...
Depois se quiser que o jogador mande mensagem de novo й sу zerar a var: SetPVarInt(playerid, "subiu.e", 0);
Pode colocar isso em um SetTimerEx se tu quer que volte a mandar depois de um tempo que ele passou nesse lugar.
Flws!
Se й o que entendi...
pawn Код:
public AcionarT2()
{
new string[256], Nome[MAX_PLAYER_NAME];
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerToPoint(1.0, i, 268.5646,1874.9343,8.6094) && GetPVarInt(i, "subiu.e"))
{
GetPlayerName(i,Nome,MAX_PLAYER_NAME);
format(string,sizeof string,"CUIDADO! O JOGADOR %s JБ SUBIU A ESCADA E JБ PASSOU PELA PORTA!",Nome);
SendClientMessageToAll(VERMELHO, string);
SetPVarInt(i, "subiu.e", 1);
}
}
return 1;
}
Pode colocar isso em um SetTimerEx se tu quer que volte a mandar depois de um tempo que ele passou nesse lugar.
Flws!