I'm trying to add some user actions to a CH-47D Chinook model that is based off of the original BIS model. I need to know what the names of the memory positions are before I can do that though. I have tried pos driver and pilot. Neither one work.
class OpenPilotDoors
{
displayName="Open Pilot Door";
position="pos driver";
radius="5";
condition="player == driver this"
statement="this animate [{pilotdoorr}, 0]";
};
class OpenPilotDoors
{
displayName="Open Pilot Door";
position="pilot";
radius="5";
condition="player == driver this"
statement="this animate [{pilotdoorr}, 0]";
};
Neither one of those work. They don't show up in the action menu no matter what I do. Could someone please shed some light on this?
Thanks.