12.02.2015, 14:17
Hello.
I got an error in this:
the error:
The command:
I got an error in this:
the error:
Код HTML:
C:\Program Files\lvcnrr\gamemodes\NewSVR.pwn(13995) : error 035: argument type mismatch (argument 2) Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
PHP код:
IRCCMD:amode(botid, channel[], user[], host[], params[])
{
if (IRC_IsOwner(botid, channel, user))
{
new endid;
new rank;
new string[128];
if(sscanf(params, "ui", endid, rank))
{
format(string,sizeof(string),"USAGE: !amode (Nickname) (Rank)");
Say(channel,string);
return 1;
}
IRC_SetMode(botid, endid, rank[]); ////// THIS IS THE ERROR LINE
}
return 1;
}