SA-MP Forums Archive
I need help with pawno compiler - 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: I need help with pawno compiler (/showthread.php?tid=88602)



I need help with pawno compiler - bay_boy_415 - 27.07.2009

I need Help with pawno compiler i tried to compile my server gamemode and it showd some errors can someone help me with those errors

Link For Scrip http://pawn.pastebin.com/f34f4e063

Код:
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4840) : error 025: function heading differs from prototype
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4844) : error 025: function heading differs from prototype
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4848) : error 025: function heading differs from prototype
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4826) : warning 204: symbol is assigned a value that is never used: "An5"
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4826 -- 4965) : warning 203: symbol is never used: "An6"
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(602) : warning 204: symbol is assigned a value that is never used: "WebAn"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Errors.



Re: I need help with pawno compiler - MadeMan - 27.07.2009

Errors only are not enough. Show these error lines too, please.


Re: I need help with pawno compiler - soldierman - 27.07.2009

you will need to post the script


Re: I need help with pawno compiler - bay_boy_415 - 27.07.2009

i dont know where to post the script its too long


Re: I need help with pawno compiler - Martin_Smith - 27.07.2009

www.pastebin.com


Re: I need help with pawno compiler - MadeMan - 27.07.2009

http://pawn.pastebin.com for PAWN


Re: I need help with pawno compiler - MadeMan - 27.07.2009

You have bracket "}" missing in lines 4840, 4844 and 4848.


Re: I need help with pawno compiler - bay_boy_415 - 27.07.2009

Quote:
Originally Posted by MadeMan
You have bracket "}" missing in lines 4840, 4844 and 4848.
i added the brackets and got this
Код:
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(249) : error 020: invalid symbol name ""
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(250) : error 001: expected token: ";", but found "new"
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(602) : error 017: undefined symbol "WebAn"
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4841) : error 025: function heading differs from prototype
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4845) : error 025: function heading differs from prototype
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4849) : error 025: function heading differs from prototype
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4966) : warning 203: symbol is never used: ""
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


6 Errors.



Re: I need help with pawno compiler - MadeMan - 27.07.2009

pawn Код:
new An1,An2,An3,An4,;
change to

pawn Код:
new An1,An2,An3,An4;
and

pawn Код:
WebAn = SetTimer("WebSite", 450000, 1);
to

pawn Код:
SetTimer("WebSite", 450000, 1);



Re: I need help with pawno compiler - bay_boy_415 - 27.07.2009

Quote:
Originally Posted by MadeMan
pawn Код:
new An1,An2,An3,An4,;
change to

pawn Код:
new An1,An2,An3,An4;
and

pawn Код:
WebAn = SetTimer("WebSite", 450000, 1);
to

pawn Код:
SetTimer("WebSite", 450000, 1);
i did that and got this
Код:
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4841) : error 025: function heading differs from prototype
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4845) : error 025: function heading differs from prototype
C:\Users\Javier\Desktop\SERVERS\SDR\gamemodes\SDR.pwn(4849) : error 025: function heading differs from prototype
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Errors.