Help me - 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: Help me (
/showthread.php?tid=620894)
Help me -
gogo45 - 04.11.2016
What it is error
D:\Server Samp\NFS COMPLITE\gamemodes\NFSgate.pwn(18243) : error 047: array sizes do not match, or destination array is too small
D:\Server Samp\NFS COMPLITE\gamemodes\NFSgate.pwn(18264) : error 047: array sizes do not match, or destination array is too small
D:\Server Samp\NFS COMPLITE\gamemodes\NFSgate.pwn(23987) : warning 209: function "cmd_deletegate" should return a value
D:\Server Samp\NFS COMPLITE\gamemodes\NFSgate.pwn(46029) : error 047: array sizes do not match, or destination array is too small
D:\Server Samp\NFS COMPLITE\gamemodes\NFSgate.pwn(46080) : error 047: array sizes do not match, or destination array is too small
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.
Respuesta: Help me -
Ner0x96 - 04.11.2016
You should post your line error code to help you, we can't know what's happening without it lel
Re: Help me -
CXdur - 04.11.2016
Post your code as stated above.
D:\Server Samp\NFS COMPLITE\gamemodes\NFSgate.pwn(18264) : error 047: array sizes do not match, or destination array is too small
It's pretty obvious, array sizes do not match or destination array is too small. Post your code here and we can see what you've done wrong.
D:\Server Samp\NFS COMPLITE\gamemodes\NFSgate.pwn(23987) : warning 209: function "cmd_deletegate" should return a value
It's a warning, your command cmd_deletegate needs to return a value. This means that a return is missing, return 1 for instance. Post your code here so we can see where you need to return but it's usually in the end of the command or after some code has been executed.