PAWNO script 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)
+--- Thread: PAWNO script errors (
/showthread.php?tid=613586)
PAWNO script errors -
Louwwieee42 - 29.07.2016
Hi all,
I'm currently trying to learn how to script, and upon compiling i am presented with the following errors?
Any help would be appreicated!
http://pastebin.com/2s6t5m8T
Regards: Louwwieee42
Re: PAWNO script errors -
Louwwieee42 - 29.07.2016
Quote:
Originally Posted by Louwwieee42
Hi all,
I'm currently trying to learn how to script, and upon compiling i am presented with the following errors?
Any help would be appreicated!
http://pastebin.com/2s6t5m8T
Regards: Louwwieee42
|
Realised I missed a bracket, but now im getting the following warnings...
http://pastebin.com/0v81a0c3
Re: PAWNO script errors - Quinncell - 29.07.2016
Read this, it'll explain how to fix some errors/warnings and make it a bit clearer for you.
https://sampforum.blast.hk/showthread.php?tid=185407
Btw, provide the code next time since no one can help you if it's not provided.
Re: PAWNO script errors -
evan69 - 29.07.2016
I'll explain what are this warnings all about
:
1. "warning 202: number of arguments does not match definition": It is indicating that particular function you are implementing is not having expected number of arguments in it. More or less, number of arguments are not matching with the function prototype, so you need to provide exact number of arguments expected by that function also keep in mind type of the argument.
2. "tag mismatch": This is usually resulted due to mixing strong tag variables with weaker ones or just vice versa of it. Also incompatible usage of variables, gives you this warning.