Quote:
Originally Posted by CHE4TER
I want a menu that can enable/disable this multi jump...
Because client_PreThink/client_PostThink auto enable it..
|
Ok, so do you have the menu part working?
Note: You shouldn't be doing an alive check in the menu part, it just doesn't make any sense.
After you get the menu part working correctly, you can add the isEnabled[id] to the multi-jump code. Which you can do by changing:
Code:
if(!is_user_alive(id)) return PLUGIN_CONTINUE
to this:
Code:
if(!is_user_alive(id) && !isEnabled[id]) return PLUGIN_CONTINUE
__________________