04.01.2013, 20:46
how to make command which will put text in IC chat in range!?
its buggy ...
Код:
CMD:e(playerid, params[]) { new tekst[128], string[128], id; new Float:x, Float:y, Float:z; if(PlayerInfo[playerid][pAdmin] < 1)return SendClientMessage(playerid, COLOR_WHITE, ""#COL_RED"| "COL_LIGHTBLUE"WS:DM "#COL_RED"| "#COL_WHITE"Niste ovlasteni za ovu komandu"); else if(sscanf(params, "s[128]", tekst))return SendClientMessage(playerid, COLOR_WHITE, "/e [Tekst]"); GetPlayerPos(playerid, x, y, z); foreach (new i : Player) if(IsPlayerInRangeOfPoint(playerid, 50.0, x, y, z)) { format(string, sizeof(string), "(( Admin %s: %s ))", PlayerName(playerid), tekst); SendClientMessage(id, -1, string); } return 1; }