fubarno1 0 Posted January 8, 2007 Hi I need some idea's on how I can have 4 objects (bmp etc etc) that need to be detected by the player before his only extraction waypoint becomes available, I thought 4 triggers set as detected by west but what would the command be that groups these triggers together so they only activate the waypoint if the condition of all 4 triggers are the same? Share this post Link to post Share on other sites
Scillion 0 Posted January 8, 2007 You have 4 triggers and all four triggers must be triggered. Then a waypoint opens up. In trigger one's On act. section put: a=true Example of On act. section: hint "you found your first target";a=true In trigger two: b=true In trigger three:c=true In trigger four:d=true In a 5th trigger type in the condition section put: a and b and c and d Hope thats what you were after. Good luck Have your next way point synchronized to the trigger. You might want to put this in your init.sqs file a=false b=false ect... It just gets them ready. Share this post Link to post Share on other sites
fubarno1 0 Posted January 9, 2007 spot on works a treat I knew I had to have a 5th trigger but couldn't remember how to set the conditions. thanks for your speedy reply Share this post Link to post Share on other sites