Search Results
Yeah, there is apparently some bug in the call graph feature that causes crashes like this, but I haven't been able to reproduce it. If you have an example gamemode that has this bug feel free to shar...
10,449
Half-Life 2 and its episodes, it was/is great
5,051
Quote: Originally Posted by Kaperstone I think we had the same issue Код: 03/18/18 08:45:19 [debug] Server crashed due to an unknown error 03/18/18 08:45:19 [debug] Native backtrace: 0...
93,467
You need to call amx_PushArray() twice - first for globalchatradius, then once again for limitglobalchat. For some reason AMX doesn't have a function for pushing references, only arrays. But referenc...
16,432
Because you called it before sampgdk::Load().
11,657
Quote: Originally Posted by eco1999 [sampgdk:error] Too many callback arguments (at most 32 allowed) Use this: https://sampforum.blast.hk/showthread.php?tid=262796
93,467
I'm sorry but isn't this just a ripoff of another XML plugin's code?
462
This script can be now installed via pip (Python package manager): Code: pip install samp-server-cli
394
It could be a result of a runtime error in one of your callbacks, you need to find where that is and fix it. One option is install the CrashDetect plugin: https://sampforum.blast.hk/showthread.php?ti...
972
I created a build file for the build package (allows you to compile Pawn scripts from Atom), perhaps somebody will find this useful: https://gist.github.com/Zeex/8c6539bb95c8b6198593 You'll need to ...
2,027
Did you initialize pAMXFunctions? All AMX functions are called through this variable (see amxplugin.cpp).
559
Oh, it's same as before: https://github.com/Zeex/samp-plugin-...3-linux.tar.gz
4,967
Hold on, I'll recompile it with gcc 4.4 and upload again. Edit: Done.
4,967
Try compiling it on your host: https://github.com/Zeex/samp-plugin-...lding-on-linux
4,967
JIT 2.0.3 is released! Fixed modulo operator producing incorrect results with negative operand Added floatcmp() intrinsic Added an include file Slightly optimized jumps and native calls Download
4,967
Well, you need read my previous post again, I said something about n-1 there.
17,771
In Pawn array indices start from 0 and go to n-1 where n is the size of the array. You're looping through elements from 1 to n, so you're essentially skipping the first element and reading a non-exist...
17,771
True, but that wouldn't work for filterscripts loaded via RCON and not listed in server.cfg.
206
I think I mentioned this in some other suggestions topic a couple of versions back: It would be great if there was a way to get the path to the .amx file from which the AMX has been loaded. This is e...
206
Ask the devs about that, they probaly know how to fix it. Or maybe not... Also they'll most likely tell you to do this: https://sampforum.blast.hk/showthread.php?tid=495402
17,771