24.07.2011, 20:21
PHP код:
if(!strcmp(cmdtext, "/radio", true))
{
if(IsPlayerConnected(playerid))
{
if(!(GetPlayerSkin(playerid) == 61))
return SendClientMessage(playerid, -1, "You are not a pilot !");
#if !defined string
new string[128];
#endif
#if !defined pName
new pName[MAX_PLAYER_NAME];
#endif
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(string, 128, "[Pilot %s]: %s", pName, cmdtext[6]);
for(new i = 0; i < MAX_PLAYERS; i++)
if(GetPlayerSkin(i) == 61) // this checks IsPlayerConnected too
SendClientMessage(i, 0xFF000000, string);
}
return 1;
}