29.04.2011, 10:25
How can I make this command
to send a message to players NEAR the person who typed /duty + they have to be TEAM_COP.... How?? please help
Код:
if(strcmp(cmd, "/duty", true) == 0) { if(IsPlayerConnected(playerid)) { if(IsPlayerInRangeOfPoint(playerid,3,246.783996,63.900199,1003.640625)) { SetPlayerColor(playerid,0x0259EAAA); SetPlayerSkin(playerid,280); GivePlayerWeapon(playerid,22,300); GivePlayerWeapon(playerid,3,1); return 1; } else return SendClientMessage(playerid, 0x0259EAAA, "You Are Not In LSPD Entrance."); } else return SendClientMessage(playerid, 0x0259EAAA, "Player Is Not Online"); }