SA-MP Forums Archive
Need some help - 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)
+--- Thread: Need some help (/showthread.php?tid=480987)



Need some help - ultrAslan - 13.12.2013

I get some errors. Can you help me please?






Here is the Filterscript that i made

http://pastebin.com/Qhg8cKQi


Re: Need some help - Hansrutger - 13.12.2013

Not sure of how filterscripts fully work as I never use them. Try to download one and see. All I know is that you have to define it as one and then add the functions, like one is:
OnFilterScriptInit()
instead of
OnGameModeInit()

I think at least. Don't sue me if I'm wrong. :P


EDIT: Nevermind, I think I meant something else of what I wrote above haha', confused myself. :P


Re: Need some help - SilentSoul - 13.12.2013

Add those codes in the top of your script and tell me if you still get the errors.
pawn Код:
#include <a_samp>
#include <dini>



Re: Need some help - ultrAslan - 13.12.2013

Quote:
Originally Posted by SilentSoul
Посмотреть сообщение
Add those codes in the top of your script and tell me if you still get the errors.
pawn Код:
#include <a_samp>
#include <dini>
thanks now i get 1 error

C:\Users\kadir\Desktop\Untitled.pwn(2) : fatal error 100: cannot read from file: "dini"


Re: Need some help - SilentSoul - 13.12.2013

Download dini from here! and add it to your samp server folder > pawno > include , and you won't recieve this error again.


Re: Need some help - ultrAslan - 13.12.2013

C:\Users\kadir\Desktop\Untitled.pwn(21) : error 017: undefined symbol "Connect_To_Database"
C:\Users\kadir\Desktop\Untitled.pwn(35) : error 017: undefined symbol "COLOR_LIGHTBLUE"
C:\Users\kadir\Desktop\Untitled.pwn(42) : error 017: undefined symbol "COLOR_LIGHTBLUE"
C:\Users\kadir\Desktop\Untitled.pwn(46) : warning 217: loose indentation
C:\Users\kadir\Desktop\Untitled.pwn(55) : error 017: undefined symbol "SavePlayer"
C:\Users\kadir\Desktop\Untitled.pwn(143) : warning 203: symbol is never used: "buycomp"
C:\Users\kadir\Desktop\Untitled.pwn(143) : warning 203: symbol is never used: "createcomp"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


and 4 Errors after dini


Re: Need some help - xVIP3Rx - 13.12.2013

You should define COLOR_LIGHTBLUE
Also There are two missing function..
"Connect_To_Database" and "SavePlayer"


Re: Need some help - ultrAslan - 13.12.2013

C:\Users\kadir\Desktop\Untitled.pwn(143) : warning 203: symbol is never used: "buycomp"
C:\Users\kadir\Desktop\Untitled.pwn(143) : warning 203: symbol is never used: "createcomp"


this commands dindt work why ?


Re: Need some help - xVIP3Rx - 13.12.2013

Those means that you have declared ( E.g. new Variable; ) a variable and didn't use them, It's not an error it's just a warning.. You should delete them or find a usage to them