Compile error 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Compile error help (
/showthread.php?tid=143359)
Compile error help -
zalyy - 22.04.2010
Hello im trying to compile a file im translating the gamemode in to another laungage but when im doned 20% of translating i clicked on compile and showed this error
![Sad](images/smilies/sad.gif)
-------------------------------------------------------------------------------------------------------------------------------
E:\Users\Csomor Eva\Desktop\Forditas alatti LARP hibas\larp.pwn(4312) : error 001: expected token: "-string end-", but found "-identifier-"
E:\Users\Csomor Eva\Desktop\Forditas alatti LARP hibas\larp.pwn(4312) : error 029: invalid expression, assumed zero
E:\Users\Csomor Eva\Desktop\Forditas alatti LARP hibas\larp.pwn(4312) : error 029: invalid expression, assumed zero
E:\Users\Csomor Eva\Desktop\Forditas alatti LARP hibas\larp.pwn(4312) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.
-------------------------------------------------------------------------------------------------------------------------------
So this the errors if someone can plz help me ty.
Re: Compile error help -
aircombat - 22.04.2010
no one can fix ur errors if u dont show the error line
Re: Compile error help -
Dark-Pheonix - 22.04.2010
Show us line 4312
Re: Compile error help -
zalyy - 22.04.2010
i fixed it but it shows this it is good?:
----------------------------------------------------------------------------------------
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Header size: 13412 bytes
Code size: 2539460 bytes
Data size: 11989324 bytes
Stack/heap size: 16384 bytes; estimated max. usage=5383 cells (21532 bytes)
Total requirements:14558580 bytes
----------------------------------------------------------------------------------------
Re: Compile error help -
dcmd_crash - 22.04.2010
Looks like you forgot to end a string, example:
pawn Код:
SendClientMessage(playerid, green, "Hi this is an example of how to fail);
When it should be
pawn Код:
SendClientMessage(playerid, green, "Hi this is an example of how not to fail");
Re: Compile error help -
ViruZZzZ_ChiLLL - 22.04.2010
Quote:
Originally Posted by zalyy
i fixed it but it shows this it is good?:
----------------------------------------------------------------------------------------
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Header size: 13412 bytes
Code size: 2539460 bytes
Data size: 11989324 bytes
Stack/heap size: 16384 bytes; estimated max. usage=5383 cells (21532 bytes)
Total requirements:14558580 bytes
----------------------------------------------------------------------------------------
|
Uhmmm... Yes, that should be fine now.
________
BUY VAPIR OXYGEN
Re: Compile error help -
zalyy - 22.04.2010
ok ty all
Re: Compile error help -
Correlli - 22.04.2010
Quote:
Originally Posted by ViruZZzZ_ChiLLL
Quote:
Originally Posted by zalyy
i fixed it but it shows this it is good?:
----------------------------------------------------------------------------------------
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Header size: 13412 bytes
Code size: 2539460 bytes
Data size: 11989324 bytes
Stack/heap size: 16384 bytes; estimated max. usage=5383 cells (21532 bytes)
Total requirements:14558580 bytes
----------------------------------------------------------------------------------------
|
Uhmmm... Yes, that should be fine now.
|
That's not fine, no way.
Your script is using too much memory, read this topic -
http://forum.sa-mp.com/index.php?topic=79810.0
Re: Compile error help -
zalyy - 22.04.2010
but why not fine plz help how can i ??
Re: Compile error help -
Correlli - 22.04.2010
Quote:
Originally Posted by Don Correlli
|