26.09.2009, 02:46
Hey guys, just quickly made up a script for this that echo's any /commands (Not including rcon).
Not hard to do, but I thought I would share for other people not so great with pawn
Just put it under the "SA-MP Callbacks" section ...
Not hard to do, but I thought I would share for other people not so great with pawn

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new
name[MAX_PLAYER_NAME],
ircCommand[256];
GetPlayerName(playerid, name, sizeof(name));
format(ircCommand, sizeof(ircCommand), "02[%i] 07%s: %s", playerid, name, cmdtext);
IRC_GroupSay(gGroupID, IRC_CHANNEL, ircCommand);
return false;
}

