Jump to content
Sign in to follow this  
Maj D. Schultz

WIP - Porting over Zodiac from ARMA 2

Recommended Posts

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

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
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

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

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×