I've got a Noob question to ask. I'm Having problems with my map its more of how to make what I want to happen.
Ill get to the point and save all of you the trouble
How can I make it so that 4 buttons have to be pressed IN to activate a single object and if one is not pressed in it will turn off?
1. Make a logic_compare and give it a name.
2. Set the Initial value to 0 and Compare value to 4.
3. Connect the OnEqualTo and OnNotEqualTo outputs to the object to control.
4. Make a math_counter and give it a name.
5. Set the Initial Value to 0 and Maximum Legal Value to 4.
6. Connect the OutValue output to the SetValueCompare input of the logic_compare.
7. Make four func_buttons and check the Toggle flag on each.
8. Give each func_button two outputs: one to Add 1 to the math_counter OnIn and the other to Subtract 1, OnOut.
Thanks!
[QUOTE=Terrenteller;25394490]1. Make a logic_compare and give it a name.
2. Set the Initial value to 0 and Compare value to 4.
3. Connect the OnEqualTo and OnNotEqualTo outputs to the object to control.
4. Make a math_counter and give it a name.
5. Set the Initial Value to 0 and Maximum Legal Value to 4.
6. Connect the OutValue output to the SetValueCompare input of the logic_compare.
7. Make four func_buttons and check the Toggle flag on each.
8. Give each func_button two outputs: one to Add 1 to the math_counter OnIn and the other to Subtract 1, OnOut.[/QUOTE]
Or, to do it the easy way, make the buttons all locked at first, and make each one in the sequence unlock the next one until the final one opens the door or w/e you're trying to do.
[QUOTE=Ard Patrinel;25402691]Or, to do it the easy way, make the buttons all locked at first, and make each one in the sequence unlock the next one until the final one opens the door or w/e you're trying to do.[/QUOTE]
That would be a terrible way of doing it. Not very secure really...
Secure? I don't know quite what you mean.
Though, upon rereading the OP, I think I may have misunderstood. The order in which they are pressed doesn't matter, does it? You just want it to only open when all the buttons have been activated.
Randomly pressing buttons and you get in.
Sorry, you need to Log In to post a reply to this thread.