GravelPit type Problem

Arkosis

L1: Registered
Feb 19, 2008
28
4
I am in the middle of planning a new map and its going to be in the Gravelpit style layout. I want to not let BLU go into C until A and B are capped. I was thinking about using a Respawn Room visualizer but I'm not exactly sure of the commands of how to make it so that once both points are capped the visualizer goes away. any suggestions would be great!
 

Pseudo

L6: Sharp Member
Jan 26, 2008
319
150
Have two logic_branch, one for A and one for B. Both have an initialvalue of 0. For CP A, OnEndCap SetValue of logic_branch A to 1. Then send logic_branch B a Test input. CP B would be similar, OnEndCap SetValue logic_branch B to 1, then Test logic_branch A. Both logic_branches would have a OnTrue that Disable the func_respawnroomvisualizer.

So when a CP is capped, it tests to see if the other CP has already been capped and gets rid of the visualizers if has. This is how I would do it but there's likely several other methods.