Pawno gets crashed. - 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 gets crashed. (
/showthread.php?tid=431852)
Pawno gets crashed. -
AmsterdamCopsAndRobbers - 20.04.2013
Hello i got a problem when i clciks on run >.
Then pop-ups Pawno crashed how to fix?
Thx
- AMCNR
Re: Pawno gets crashed. -
Giroud12 - 20.04.2013
Extract new pawno
Re: Pawno gets crashed. -
park4bmx - 20.04.2013
Not pawno but the compiler ?
Then is because you put something really messy.
Retrieve your last steps
Re: Pawno gets crashed. -
Giroud12 - 20.04.2013
Extract pawno will work.
Re: Pawno gets crashed. -
Faisal_khan - 20.04.2013
Or you might have some extra braces or missed a few braces. Use Notepad++ to check for braces.
AW: Pawno gets crashed. -
BigETI - 20.04.2013
I've experienced compiler crashes when I've attempted to compile something like these examples below:
pawn Код:
// I'm using a semicolon after stock
stock something();
{
// some stuff
}
crashes
and
pawn Код:
stock one()
{
return 1;
}
stock something(value = one())
{
// some stuff
}
crashes