shinkicker 5 Posted December 11, 2013 In light of the recent content release (MLODS) I am trying my hand at a port. I decided on trying out old_bike (the bicycle) and I am little stuck around importing the animations (rtms) In the config is driverAction = "MMT_Driver"; driverInAction = "MMT_Driver"; cargoAction[] = {"MMT_Driver"}; Now as this is an A2 config file, MMT_Driver would be declared and set up in A2 somewhere I expect under 'CfgMovesMaleSdr', so I figure I need to do something like this for my a3 config.cpp: class CfgMovesMaleSdr : CfgMovesBasic { class States { class Crew; // External class reference class DefaultDie; // External class reference class MMT_Driver : Crew {}; file = "<path_to_rtm"; speed = 1.25; interpolateTo[] = {"MMT_Dead", 1}; }; }; The thing is I have no idea where the rtm file is and how to insure I set the CfgMovesMaleSdr correctly. Anyone have any ideas where I can dig the correct CfgMovesMaleSdr out and get the right rtm? My searches are all coming up blank. Share this post Link to post Share on other sites