05.02.2011, 08:14
Help my admin message not working it shows name but not the message/params any help :S >>
Код:
CMD:asay(playerid, params[]) { if(pInfo[playerid][Level] < 2) return SendClientMessage(playerid,RED,">> You Must Be Level 2+ To Use This Command!"); if(!strlen(params)) return SendClientMessage(playerid, RED, "USAGE: /asay [msg]"); new string[24], pname[24]; GetPlayerName(playerid, pname, 24); format(string, sizeof(string), ">> Admin %s Says: %s", pname, params); return SendClientMessageToAll(COLOR_LIGHTGREEN,string); }