16.08.2011, 01:51
pawn Код:
#define MAXPLAYERS 40 // mude para a qntd de slots do teu sv :3
forward ChatInAr(Cor, const string[]);
pawn Код:
public OnPlayerText(playerid, text[])
{
if(GetVehicleModel(playerid) == 562) // aqui vocк vai substituir pelos modelos dos heli e aviхes ou faz uma stock pra ficar melhor :)
{
ChatInAr(Cor, const string[]);
}
return 0;
}
pawn Код:
public ChatInAr(Cor, const string[],level)
{
for(new i = 0; i < MAXPLAYERS; i++)
{
if(IsPlayerConnected(i) && GetVehicleModel(playerid) == 562) // aqui vocк vai substituir pelos modelos dos heli e aviхes ou faz uma stock pra ficar melhor :)
{
SendClientMessage(i, Cor, string);
}
}
return 1;
}