PAWNO - 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 (
/showthread.php?tid=313040)
PAWNO -
Polomikey - 24.01.2012
When i click save then press F5
It says PAWNO(Not responding)
What is the problem?
Re: PAWNO -
Ballu Miaa - 24.01.2012
Wait for 5-10 Minutes and let PAWNO complete its compiling task. If it still doesnt respond still. Tell us what you added in the GM lately!
AW: PAWNO -
Drebin - 24.01.2012
You most likely have an error in your code where the compiler crashes.
Re: PAWNO -
Spooky - 24.01.2012
SAME Problem with me but no one told me any solution
Re: PAWNO -
[HK]Ryder[AN] - 24.01.2012
Are you missing a bracket?
Check using the brackets finder
Pawn crashes are usually because of a missing bracket.
Re: PAWNO -
Sinner - 24.01.2012
This usually happens if you have statements (not declarations) of code outside a callback or function.
for example:
pawn Код:
SetPlayerVirtualWorld(playerid, 1); // <-- This would crash pawncc (the compiler)
public OnPlayerConnect(playerid) {
SetPlayerVirtualWorld(playerid, 1); // <-- this would not
return 1;
}