Davis Welder 1 Posted June 1, 2024 hello I would like to do a wheel action when we are in a vehicle to trigger a care script. But I can't seem to find any help, I guess it's with a useraction. can you help me thank you Share this post Link to post Share on other sites
JCataclisma 80 Posted June 1, 2024 It seems like your best bet is to go for ACE mod:https://steamcommunity.com/sharedfiles/filedetails/?id=463939057&searchtext=ace Share this post Link to post Share on other sites
Joshua9797 38 Posted June 3, 2024 I'm not sure if this will help you, but this is how you could add an action to the player when they are in a vehicle. In this example, the script myCareScript.sqf is called, and the player is passed to this script. player addAction ["care", { _player = _this select 3 select 0; [_player] execVM "myCareScript.sqf"; } , [player], 1.5, true, true, "","(!(isNull objectParent Player))"]; If you meant to add an action in ACE, this might help you: 1 Share this post Link to post Share on other sites