16.08.2011, 02:08
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 :)
{
format(string, sizeof(string), "Rбdio Aйreo: (%s) - %s", pNome(playerid), string);
SendClientMessage(i, Cor, string);
}
}
return 1;
}
pawn Код:
stock pNome(playerid)
{
new nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, nome, sizeof(nome));
return nome;
}