02.02.2013, 15:52
Are you sure that ServerInfo[ReadCmds] is set to 1?
However
this should show the message to RCON ADMINS, however if you have a serverside admin system use post here your variable (if you don't know which just post here an admin command like /kick or /ban)
However
Код:
if(ServerInfo[ReadCmds] == 1)
{
format(string, sizeof(string), "*** %s (%d) typed: %s", pName(playerid),playerid,cmdtext);
for(new i = 0; i < MAX_PLAYERS; i++) {
if(IsPlayerConnected(i)) {
if(IsPlayerAdmin(playerid)) {
SendClientMessage(i, grey, string);
}
}
}
}

