Hello there!
Is it possible to manipulate function output via a forward. For example:
Code:
native do_a_thing(id, data);
forward fw_do_a_thing(id, data);
My plugin call the do_a_thing function that return 1 by default.
In my fw_do_a_thing function I would validate the data. If it is defined as a fix value I want change the final output to 0.
I think it is possible I just want to see an example for custom functions. Like you register a client command. And it disappear from the chat if you return PLUGIN_HANDLED.
Thank you!