I have a plugin that uses only fakemeta.
It has two forwards that are giving me errors every so often.
Code:
register_forward(FM_Touch, "my_touch_func")
register_forward(FM_Think, "my_think_func")
public my_touch_func(ptr, ptd)
{
code here
}
public my_think_func(entity)
{
code here
}
Heres my problem.
While the plugin works the way it should, I get errors from the forwards.
One is when the touch event has been completed, I get a [META] Error: plugin failed to see fakemeta_amxx_i386.so:: DispatchTouch().
And the same error for think, when the entity that is thinking has been terminated, it generates that same error but with DispatchThink().
I wanted to know if anyone knew if certain fm returns should be used inside these forward functions to stop these errors?
Thanks.