29.08.2009, 12:50
How can I change this function so the adminґs name is displayed too?
Код:
if(strcmp(cmd, "/say", true) == 0) // Publicly says an admin message. Exact same as RCON's 'say' but in a red color. { if (AccountInfo[playerid][AdminLevel] >= 3 || IsPlayerAdmin(playerid)) { GetPlayerName(playerid, sendername, sizeof(sendername)); new result[128]; result = bigstrtok(cmdtext, idx); if(!strlen(result)) { SendClientMessage(playerid, ORANGE, "USAGE: /say [message]"); SendClientMessage(playerid, ORANGE, "FUNCTION: Will broadcast an admin message."); return 1; } format(string, sizeof(string), "::: Admin: %s :::", result); SendClientMessageToAll(LIGHTRED, string); printf("%s", string); } else SendClientMessage(playerid, RED, "You are not an admin with the required level."); return 1; }