Maj D. Schultz 13 Posted April 24, 2015 I'm currently in the process of updating my Zodiac CRRC - Assault Boat addon - http://forums.bistudio.com/showthread.php?185194-Zodiac-CRRC-Assault-Boat by actually bringing over the Zodiac from ARMA 2. So far so good on it and I'm making improvements on it, however I cannot figure out this issue. When you destroy the boat, instead of ejecting the players out of it and keeping them alive in the water. It kills everyone on-board. I wasn't sure if this was a config issue or a model issue. I figured I'd start here. Share this post Link to post Share on other sites
swtx 42 Posted April 24, 2015 This goes in the vehicles Init : dummy = this spawn { waitUntil {(damage _this) > 0.8}; { _x action ["Eject", _this]; } forEach (crew _this); _this lock 2; }; Share this post Link to post Share on other sites
warlord554 2065 Posted April 25, 2015 Usually when a small boat explodes with passengers in it, they die Share this post Link to post Share on other sites
Maj D. Schultz 13 Posted April 25, 2015 This goes in the vehicles Init :dummy = this spawn { waitUntil {(damage _this) > 0.8}; { _x action ["Eject", _this]; } forEach (crew _this); _this lock 2; }; Cool I'll make an eventhandler for this, thanks for the help. Share this post Link to post Share on other sites
Maj D. Schultz 13 Posted April 27, 2015 Nope no dice, AI/Players all still die when the boat is considered destroyed. @Warlord554 Not when it's a rubber boat, the current A3 Assault boats eject all players when they deflate. Currently, mine is not doing that and instead just kills everyone as soon as the boat is destroyed instead of forcing them to eject. I havn't been able to find anything config wise as to how to get that to happen, and I don't know if there is anything I'm supposed to set in the Model p3d itself. Share this post Link to post Share on other sites
swtx 42 Posted April 29, 2015 Hey Karneck, you might try upping the damage value from 0.8 to 1.0 and see if that affects the outcome. play around with it :) Share this post Link to post Share on other sites
Maj D. Schultz 13 Posted April 30, 2015 I'll give it another shot. Any other suggestions are still welcome. Otherwise regardless of outcome, expect a release in the next month. Share this post Link to post Share on other sites