09.10.2012, 10:51
Well, here is my code, still it doesn't show commands on IRC
PHP код:
public OnPlayerCommandReceived(playerid, cmdtext[])
{
new name[MAX_PLAYER_NAME], ircMsg[256];
GetPlayerName(playerid, name, sizeof(name));
format(ircMsg, sizeof(ircMsg), "02[%d] 07%s: %s", playerid, name, cmdtext);
IRC_GroupSay(groupID, IRC_CHANNEL, ircMsg);
return 1;
}