18.07.2012, 19:45
Quote:
Isn't that like obvious from reading the errors?
pawn Код:
|
Код:
Player name - "text"
CMD pawn:
Код:
CMD:me(playerid, params[]) { new string[128], action[100]; if(sscanf(params, "s[100]", action)) { SendClientMessage(playerid, -1, "USAGE: /me [action]"); return 1; } else { format(string, sizeof(string), "* %s %s.",(playerid), action); ProxDetector(30, playerid, string, COLOR_PURPLE); } return 1; }