Use hook, null value
23 replies It seems that you tried to
addhook a
trigger hook and there's no function for that hook. To solve this either delete the
addhook code or create a function for that hook.



I'm awesome ... and I really like cookies.

Quote:
So you want to disable buttons for a while and then re-enable them?
not all buttons, only which player used
If the bug is not corrected, the entire project can be thrown in the trash

It would be so much easier if people wrote what they are trying to do instead of just throwing a bunch of meaningless code.
Tell me what you are trying to do and maybe I will help you. I can't waste time just trying to guess what you're trying to do.
Tell me what you are trying to do and maybe I will help you. I can't waste time just trying to guess what you're trying to do.
@
HESY: That's exactly what my code does. BUT you have to understand that trigger control works by passing what NAME of trigger you have to use. In other words, if you have triggers with the same name, they will all get triggered. It's actually a convenience in most cases, since you disable all triggers you no longer need. However, if you want to disable separate triggers, you'll have to use different names for them.
I understand that you have triggers:
"debug" x 10
and clicking one of them will disable all of them for a while.
You'll have to set up:
"debug0"
"debug1"
"debug2"
"debug3"
...
"debug8"
"debug9"
and define a function for each of them (what function does can be the same).
Hope that helps.
Cheers.

I understand that you have triggers:
"debug" x 10
and clicking one of them will disable all of them for a while.
You'll have to set up:
"debug0"
"debug1"
"debug2"
"debug3"
...
"debug8"
"debug9"
and define a function for each of them (what function does can be the same).
Hope that helps.
Cheers.