05.04.2009, 19:58
hey guyz,
Is it possible to make an rcon admin see the chat ?
Like this:
Hope you can help me.
Is it possible to make an rcon admin see the chat ?
Like this:
Код:
public OnPlayerText(playerid, text[])
{
new string2[128];
new name[MAX_PLAYER_NAME+1];
GetPlayerName(playerid, name, sizeof(name));
format(string2, sizeof(string), "%s[%i]: %s",name,playerid,text);
print(string2);
//but here I need something to send it to the rcon console !?
return 0;
}


