04.02.2019, 15:06
(
Последний раз редактировалось Markski; 04.02.2019 в 16:46.
)
Surely, on your pawn code editor, add the flag -d3 to the compile/build settings.
If you use pawno, go to Build -> Run options and add "-d3" to the "with these parameters" textbox.
If you use any other code editor, add -d3 to wherever the build file is.
For example, if you use sublime text, you probably have something that looks like this:
In which case, you change -d2 by -d3. If you don't have any -dX parameter, then add it.
Whichever the case, it looks like the problem causing your crash is something in your OnPlayerCommandText callback.
If you use pawno, go to Build -> Run options and add "-d3" to the "with these parameters" textbox.
If you use any other code editor, add -d3 to wherever the build file is.
For example, if you use sublime text, you probably have something that looks like this:
PHP код:
"cmd": [
"pawncc.exe",
"$file",
"-d2",
"-i includes",
"-Z+"
],
Whichever the case, it looks like the problem causing your crash is something in your OnPlayerCommandText callback.