Search Results
Looks very nice. Good job.
1,690
This is called "local variable", this kinda runs in the name. You can't access a local variable from "OnPlayerConnect" to a command. Because it's closed down in the callback. Create it however outside...
89
Compile with -d3. Here’s how you do it: create a new file named pawn.cfg inside your pawno folder and just put -d3 inside it, save and re-compile then give me the line number. This is called debug l...
126
As mentioned above by Sew, create the PlayerTextDraw's under "OnPlayerConnect" and then just hide them, once their wanted level goes up you can use PlayerTextDrawSetString, and PlayerTextDrawShow or P...
196
The reason why you get «symbol is never used» is because you have functions/variables that has no use in your script. So basically to get these warnings away you can either comment them out(or remov...
160