Posts: 36
Threads: 10
Joined: Apr 2013
Reputation:
0
Hello i got a problem when i clciks on run >.
Then pop-ups Pawno crashed how to fix?
Thx
- AMCNR
Posts: 2,364
Threads: 135
Joined: Dec 2009
Reputation:
0
Not pawno but the compiler ?
Then is because you put something really messy.
Retrieve your last steps
Posts: 1,826
Threads: 52
Joined: Feb 2012
Reputation:
0
Or you might have some extra braces or missed a few braces. Use Notepad++ to check for braces.
Posts: 1,046
Threads: 29
Joined: Mar 2010
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