KokaKolaA3 394 Posted November 13, 2016 So, im having trouble with my ACE 3 Extension. I added the possibility to perform animations via ACE Interaction Menu, like this: The Moving Animations from Arma 3 Vanilla are working fine, but the static costum animation does not work in MP, they do work in SP, but in MP other Players can't see you performing the animation. Here is my config: class CfgMovesBasic { class Actions; //Extended }; class CfgMovesMaleSdr : CfgMovesBasic { class States { class AmovPercMstpSrasWrflDnon; //Extended class AmovPknlMstpSrasWrflDnon; //Extended class AmovPercMstpSlowWrflDnon; //Extended class AmovPercMrunSlowWrflDf; //Extended class AmovPercMstpSrasWpstDnon; //Extended class AmovPercMstpSnonWnonDnon; //Extended class AmovPpneMstpSnonWnonDnon; //Extended class ACE_AmovPercMstpScapWnonDnon; class relax_44 : ACE_AmovPercMstpScapWnonDnon { file = "\KKA3_ACE_Extension_Anim\anim\p_44.rtm"; speed = -10000000000.0; looped = true; //connectTo[] = {"AmovPercMstpSnonWnonDnon",2 }; //connectFrom[] = {"AmovPercMstpSnonWnonDnon",2 }; interpolateFrom[] = {}; interpolateTo[] = {}; }; class relax_45 : ACE_AmovPercMstpScapWnonDnon { file = "\KKA3_ACE_Extension_Anim\anim\p_45.rtm"; speed = -10000000000.0; looped = true; //connectTo[] = {"AmovPercMstpSnonWnonDnon",2 }; //connectFrom[] = {"AmovPercMstpSnonWnonDnon",2 }; interpolateFrom[] = {}; interpolateTo[] = {}; }; class attention1 : ACE_AmovPercMstpScapWnonDnon { file = "\KKA3_ACE_Extension_Anim\anim\attention1.rtm"; speed = -10000000000.0; looped = true; //connectTo[] = {"AmovPercMstpSnonWnonDnon",2 }; //connectFrom[] = {"AmovPercMstpSnonWnonDnon",2 }; interpolateFrom[] = {}; interpolateTo[] = {}; }; .............................. .......................... ........ etc }; }; Here is the ACE config: class kka3_direone1 { displayName = "Attention 1"; condition = ""; exceptions[] = {}; statement = "_player switchMove 'attention1'"; icon = "\KKA3_ACE_Extension_Anim\data\ui_p1.paa"; }; as you can see im using "switchmove", i don't see any problem why this isn't working. Any help would be appreciated! Share this post Link to post Share on other sites
AutismoBot 2 Posted September 28, 2019 I have the same issue, animations work in SP but not MP (I can see my own player doing it but others cannot) Any ideas? Share this post Link to post Share on other sites
KokaKolaA3 394 Posted September 28, 2019 Solution: [player, 'CLASSNAME'] remoteExec ['switchMove', 0] 1 Share this post Link to post Share on other sites