2019-08-04, 07:22 AM
v0.2: Fixed Linux. Turns out SYSREQ.pri is broken there.
Also, how to hook long function names. `DEFINE_HOOK_REPLACEMENT` doesn't work with these (and sadly can't). But this does work:
Also, how to hook long function names. `DEFINE_HOOK_REPLACEMENT` doesn't work with these (and sadly can't). But this does work:
PHP Code:
#define SPP SetPlayerPos
hook function SPP(playerid, Float:x, Float:y, Float:z)
{
return continue(playerid, x, y, z 0.1);
}