18.01.2015, 15:24
Quote:
Код:
CMD:comando(playerid) { new Float:x1, Float:y1, Float:z1; GetPlayerPos(playerid, x1, y1, z1); for(new i; i < MAX_PLAYERS; i++) { if(i != playerid) { if(GetPlayerOrg(i) == GetPlayerOrg(playerid) && IsPlayerInRangeOfPoint(i, 10 , x1, y1, z1)) { //funзхes que acontece } else { //o que aconte se nгo tiver alguem da org perto } } } return 1; } |