11.08.2011, 11:50
Yes I am 100% sure that it's possible. There is also a function:
But that's sending everything what you type in the mainchat. But not those commands like /ask
pawn Код:
public OnPlayerText(playerid, text[])
{
new name[MAX_PLAYER_NAME], ircMsg[256];
GetPlayerName(playerid, name, sizeof(name));
format(ircMsg, sizeof(ircMsg), "02[%d] 07%s: %s", playerid, name, text);
IRC_GroupSay(gGroupID, IRC_CHANNEL, ircMsg);
return 1;
}