SA-MP Forums Archive
"Run Time Error"? - 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: "Run Time Error"? (/showthread.php?tid=143457)



"Run Time Error"? - Toni - 23.04.2010

Uhh I'm starting a new script and i just added the Gm-Addon "moving camera" and i added a few cmds and player classes..

But i get this error when i start the server.

Script[gamemodes/party.amx]: Run Time Error 20: "Invalid Index Parameter (bad entry point)"

What does that mean? i have never run into this error..


Re: "Run Time Error"? - ScottCFR - 23.04.2010

It means your script ie jacked up, or you added an Include but didn't upload it to your host.


Re: "Run Time Error"? - Toni - 23.04.2010

Quote:
Originally Posted by ScottCFR
It means your script ie jacked up, or you added an Include but didn't upload it to your host.
Nope, My Script is definitely screwed...


Re: "Run Time Error"? - Calgon - 23.04.2010

You removed/missed out:

pawn Код:
main()
{
}
At the top, I believe (may be wrong).

Quote:
Originally Posted by ScottCFR
It means your script ie jacked up, or you added an Include but didn't upload it to your host.
Incorrect. When you compile a script, includes are compiled along with the gamemode (requiring NO uploading of includes).


Re: "Run Time Error"? - Toni - 23.04.2010

Quote:
Originally Posted by FreddoX [BINMAN
]
You removed/missed out:

pawn Код:
main()
{
}
At the top, I believe (may be wrong).

Quote:
Originally Posted by ScottCFR
It means your script ie jacked up, or you added an Include but didn't upload it to your host.
Holy moley FreddoX, Thanks...somehow it got by me and i didn't even notice o_O

Btw: Just new info i'm creating a New Party server i just started, but i'm working on a moving camera thing....can you help me with one thing....

this is the link. http://forum.sa-mp.com/index.php?topic=115765.0
i can't see to get the sound working

Incorrect. When you compile a script, includes are compiled along with the gamemode (requiring NO uploading of includes).