SA-MP Forums Archive
[HELP]Errors - 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]Errors (/showthread.php?tid=100301)



[HELP]Errors - Jake Canfield - 04.10.2009

I tried to add a text draw and this happens:

C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(2405) : error 021: symbol already defined: "sscanf"
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(10662) : error 010: invalid function or declaration
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(10672) : error 010: invalid function or declaration
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(45502) : warning 203: symbol is never used: "Textdraw0"
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(45502) : warning 203: symbol is never used: "Textdraw1"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


3 Errors.



Re: [HELP]Errors - virspector - 04.10.2009

Код:
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(2405) : error 021: symbol already defined: "sscanf"
I think it because u have 2 sscanf function. Try to find the 2nd sscanf and delete it. If you can't find it, just delete the sscanf function, because maybe the sscanf already defined in a INCLUDE file you have.

Код:
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(45502) : warning 203: symbol is never used: "Textdraw0"
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(45502) : warning 203: symbol is never used: "Textdraw1"
You didn't use Textdraw0 and Textdraw1.

Код:
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(10662) : error 010: invalid function or declaration
C:\PC Games\GTA San Andreas\filterscripts\larpedited.pwn(10672) : error 010: invalid function or declaration
Please show me the codes in line 10662 and 10672, please...


Re: [HELP]Errors - Jake Canfield - 04.10.2009

Ok i am getting those lines hang on


Re: [HELP]Errors - Jake Canfield - 04.10.2009

It somehow got erased.... all of it

Can you give me what i need to put in the .pwn?


Re: [HELP]Errors - virspector - 04.10.2009

Invalid function or declaration means you use that function incorrectly...