My Pawn Compiler Crash - 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: My Pawn Compiler Crash (
/showthread.php?tid=614537)
My Pawn Compiler Crash -
RXS - 09.08.2016
Hello! Today my pawn compiler is crashing when I want to compile a .pwn to .amx. I don't create the gamemode, i just downloaded it from internet. Can you help me?
Code:
http://www.mediafire.com/download/1c...My+problem.pwn
Note: If you can't understand words means that words are in my language. Sorry for my bad english.
Re: My Pawn Compiler Crash -
Whatname - 09.08.2016
I'm not going to check whole code
But tell did you use something like this
PHP код:
return "some_name";
if yes then you can easily fix that by doing this this:
PHP код:
new str[] = "some_name";
return str;