lifetap 188 Posted May 4, 2015 I'd like to find away to move a unit's position (seat) within a vehicle. The only way I can find is to use a combination of moveOut and moveIn to move a passenger. e.g. moveOut player; player moveInDriver _vehicle; The problem with this approach is it fires the GetOut event handler, which is something I need to avoid. So does anyone know of either a better way to move locations within a vehicle, or alternatively a way to exit a vehicle without triggering a "getout" event? Thanks Share this post Link to post Share on other sites
Maj D. Schultz 13 Posted May 5, 2015 Just so I'm understanding, You want it so that all players in a vehicle are capable of switching spots or seats with each other, withOUT having to get out of the vehicle correct? have you tried setting their compartments to all be the same? EXP driverCompartments="Compartment1"; cargoCompartments[]={"Compartment1"}; Share this post Link to post Share on other sites
lifetap 188 Posted May 5, 2015 Just so I'm understanding,You want it so that all players in a vehicle are capable of switching spots or seats with each other, withOUT having to get out of the vehicle correct? Yes, correct. They are all currently in the same compartment. What I'm looking for is a script command to force the unit to switch positions. Share this post Link to post Share on other sites
Maj D. Schultz 13 Posted May 5, 2015 AGM (now ACE3) has the option for players to switch seats. I'd check out the open source code. Share this post Link to post Share on other sites