#1

When i click save then press F5

It says PAWNO(Not responding)
What is the problem?
Reply
#2

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!
Reply
#3

You most likely have an error in your code where the compiler crashes.
Reply
#4

SAME Problem with me but no one told me any solution
Reply
#5

Are you missing a bracket?
Check using the brackets finder
Pawn crashes are usually because of a missing bracket.
Reply
#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


Forum Jump:


Users browsing this thread: 2 Guest(s)