10.01.2011, 19:31
Quote:
If i put the code with IRCCMD: say it doesn't work
If i put the code without IRCCMD: say i get 4 Errors Код:
C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(139) : warning 219: local variable "msg" shadows a variable at a preceding level C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(533) : error 010: invalid function or declaration C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(536) : error 010: invalid function or declaration C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(541) : error 021: symbol already defined: "format" C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(547) : error 010: invalid function or declaration C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(613) : warning 219: local variable "msg" shadows a variable at a preceding level C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(649) : warning 219: local variable "msg" shadows a variable at a preceding level C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(681) : warning 219: local variable "msg" shadows a variable at a preceding level C:\Dokumente und Einstellungen\Administrator\Desktop\Server\filterscripts\irc.pwn(941) : warning 203: symbol is never used: "msg" |
pawn Код:
//IRC_OnUserSay:
if (IRC_IsVoice(botid, channel, user))
{
// Check if the user entered any text
if (!isnull(message))
{
// Echo the formatted message
new txt[256];
format(txt, sizeof(txt), "*** %s on IRC: %s", user, message);
IRC_GroupSay(gGroupID, channel, txt);
format(txt, sizeof(txt), "*** %s on IRC: %s", user, message);
SendClientMessageToAll(0x0000FFFF, txt);
}
}