08.01.2012, 12:28
Hi. I added the skins so only the FD/PD skins can see the message. But when someone use the command all can see the message.
If i change SendClientMessageToAll with SendClientMessage i got errors. Please how to fix
+REP!!!!!!!!!!!
If i change SendClientMessageToAll with SendClientMessage i got errors. Please how to fix
pawn Код:
CMD:911(playerid,params[])
{
//911 system
if(isnull(params)) return SendClientMessage(playerid,COLOR_LIGHTBLUE,"Usage: /911 [Message and Location]");
new name[24];
new sendername[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, sendername, sizeof(sendername));
GetPlayerName(playerid,name,24);
new playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, sizeof(playername));
SendClientMessage(playerid, COLOR_GOLD, "[INFO]You have just called 911. Please remain at your location and wait.");
for(new i=0;i<MAX_PLAYERS;i++)
{if(GetPlayerSkin(i) == 285 || GetPlayerSkin(i) == 282 || GetPlayerSkin(i) == 281 || GetPlayerSkin(i) == 283 || GetPlayerSkin(i) == 288 ||GetPlayerSkin(i) == 278 || GetPlayerSkin(i) == 275 || GetPlayerSkin(i) == 279 || GetPlayerSkin(i) == 277 || GetPlayerSkin(i) == 274 || GetPlayerSkin(i) == 276)
{
format(string, sizeof(string), "-------------------------------------------------------------------------------------------------", sendername, params);
SendClientMessageToAll(COLOR_GREY, string);
format(string, sizeof(string), "DISPATCH", sendername, params);
SendClientMessageToAll(COLOR_ROYALBLUE, string);
format(string, sizeof(string), "Be advised, the following is a 911 call.", sendername, params);
SendClientMessageToAll(COLOR_GREY, string);
format(string, sizeof(string), "Units aviable please respond.", sendername, params);
SendClientMessageToAll(COLOR_GREY, string);
format(string, sizeof(string), "CALLER: %s ~ INFO & LOCATION: %s", sendername, params);
SendClientMessageToAll(COLOR_GREY, string);
format(string, sizeof(string), "-------------------------------------------------------------------------------------------------", sendername, params);
SendClientMessageToAll(COLOR_GREY, string);
}
}
return 1;
}