Hacker Hunter 0 Posted July 12, 2017 Hello. Umm, i'm really beginner at editing, so pls understanding. I want to make a trigger to open door. So i write this at trigger in act line. vehiclename animate ['ramp', 1]; It works properly. But i want to apply this order to all vehicle inside of trigge. So.. what should i do? pls help me.. It took me all day to think about how to do this. Share this post Link to post Share on other sites
Boerstil 8 Posted July 12, 2017 Not tested: { _x animate ['ramp', 1]; } forEach thislist Share this post Link to post Share on other sites
R3vo 2650 Posted July 13, 2017 thisList only contains the objects which fulfill the conditions set in the trigger. So make sure those are set correctly. I belive activation should be "anything". The easier way would be to name those objects and use the following code: { _x animate ["ramp",1]; } forEach [objectName_1,objectName_2,objectName_n]; Share this post Link to post Share on other sites
Hacker Hunter 0 Posted July 13, 2017 Really thank you all ! Share this post Link to post Share on other sites