29.08.2010, 21:34
I am getting this error
on this code
the original from IRC plugin thred said this
Код:
C:\New Folder\filterscripts\New Folder\filterscripts\IA-B.pwn(78) : error 025: function heading differs from prototype Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
Код:
public OnPlayerCommandText(playerid, cmdtext)
{
new ircCommand[256];
format(ircCommand, sizeof(ircCommand), "02[%i] 07%s: %s", playerid, PlayerName(playerid), cmdtext);
IRC_Say(IRC_EchoConnection, EchoChan, ircCommand);
return false;
}
Код:
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;
}

