I'm using this kreedz plugin
https://github.com/Theggv/Kreedz with this jumpstats plugin
https://xtreme-jumps.eu/e107_plugins...pic.php?379695
However, this jumpstats does not reset the jump when teleporting, so the code needs to be embedded in the kzplugin side.
I need to call forward named fwResetBug for every teleport I have
Example of usage:
PHP Code:
new g_hResetBugForward;
public plugin_init()
{
...
g_hResetBugForward = CreateMultiForward("fwResetBug", ET_IGNORE, FP_CELL);
}
public gocheck(id)
{
...
new iReturn;
ExecuteForward(g_hResetBugForward, iReturn, id);
}
public plugin_end()
{
...
DestroyForward(g_hResetBugForward);
}
I am not familiar with amxx and cannot do this embedding.
I would also appreciate it if you could note where you have rewritten the plugin so that it can be updated.
I can donate 15usd via paypal for helping.