SA-MP Forums Archive
Help whit script - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help whit script (/showthread.php?tid=106230)



Help whit script - Kuba_PL - 01.11.2009

I get this after compile:

Quote:

C:\Users\Administrator\Desktop\IRC Echo\irc.pwn(2527) : error 035: argument type mismatch (argument 1)
C:\Users\Administrator\Desktop\IRC Echo\irc.pwn(2527) : error 029: invalid expression, assumed zero
C:\Users\Administrator\Desktop\IRC Echo\irc.pwn(2527) : error 029: invalid expression, assumed zero
C:\Users\Administrator\Desktop\IRC Echo\irc.pwn(2527) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


4 Errors.

Here is the copy of the script:

Quote:

2524: public AccessDenied(user[]) {
2525: new Denied[256];
2526: format(Denied,sizeof(Denied),"Notice %s 4*** Error: You don't have the necessary level.",user);
2527: IRC_GroupNotice(GroupID, 0], user, Denied);
2528: return true;
2529: }

Please help me


Re: Help whit script - dice7 - 01.11.2009

Here's your problem
pawn Код:
(GroupID, 0],



Re: Help whit script - Kuba_PL - 01.11.2009

Quote:
Originally Posted by dice7
Here's your problem
pawn Код:
(GroupID, 0],
Tried to solve this, but can't
Help


Re: Help whit script - Devine - 01.11.2009

Quote:
Originally Posted by Kuba_PL
Quote:
Originally Posted by dice7
Here's your problem
pawn Код:
(GroupID, 0],
Tried to solve this, but can't
Help
You can't have a ( and close it with a ] ..