PAWNO
#6

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;
}
Reply


Messages In This Thread
PAWNO - by Polomikey - 24.01.2012, 02:34
Re: PAWNO - by Ballu Miaa - 24.01.2012, 02:48
AW: PAWNO - by Drebin - 24.01.2012, 08:13
Re: PAWNO - by Spooky - 24.01.2012, 09:23
Re: PAWNO - by [HK]Ryder[AN] - 24.01.2012, 09:33
Re: PAWNO - by Sinner - 24.01.2012, 09:46

Forum Jump:


Users browsing this thread: 1 Guest(s)