Author Topic: Choose events  (Read 690 times)

Is there an addon that can allow you to turn individual events on and off in different bricks? i'm making a Nuclear Powerplant and it has controls to cool and heat the core. I need three buttons but the toggle event enabled option isn't as good. It swaps events on and off but you cant make it always turn off and always turn on i'm only just getting back into Blockland so this might be able to be done anyway without addons but i'm re learning some harder events.

Example of what I need:

On activate - Name brick - turn event : off
                     Heat one       number : (event number)

On activate - Name brick - turn event : off
                     Heat two       number : (event number)

On activate - Self - turn event : on
                               number : (event number)

There is toggleeventenabled already by default.

There is toggleeventenabled already by default.

Ik but that only switches on and off in a specific order. The thing I need is something that completely shuts down an even event or ticks it back on without having to go in the on and off order.

OnActivate>named brick>SetEventEnabled>[number] [ * ] < box means enabled

If unchecked, it will turn off the listed events, and turns them off for every click. Vice/Versa

If this is what you need, it's default, too.

OnActivate>named brick>SetEventEnabled>[number] [ * ] < box means enabled

If unchecked, it will turn off the listed events, and turns them off for every click. Vice/Versa

If this is what you need, it's default, too.

Hmm default? I'll have to see if I can find it. Some addons interfere with the default. For example when someone dies it doesn't inform the server anymore (glitch?). Although I have some default events disabled.
Ty B)

Hmm default? I'll have to see if I can find it. Some addons interfere with the default. For example when someone dies it doesn't inform the server anymore (glitch?). Although I have some default events disabled.
Ty B)
Haven't heard of anything modifying it.

I'd say if you want to fully disable Add-Ons, you should do the following:

(Delay: 33) onRelay >> Self >> ToggleEventEnabled "(List all events that you want to disable in numerical order, separated by spaces)"
(Delay: 43) onRelay >> Self >> ToggleEventEnabled "(List all events that you want to disable in numerical order, separated by spaces)"
(Delay: 53) onRelay >> Self >> calcelEvents

I haven't put this in practice before, but it should work.

I've found that for cancelevents to be effective the event to be canceled needs ~500+ delay

I've found that for cancelevents to be effective the event to be canceled needs ~500+ delay
Thanks!