Grayz_lost 2 Report post Posted April 8, 2018 Hi ,.. so ive got no option to raise or lower draw bridge i have in my .. class CfgInteractionMenus .. what am i missing ? class Drawbridge { targetType = 2; target = "Exile_Construction_WoodDrawBridge_Abstract"; class Actions { class Lower: ExileAbstractAction { title = "Lower"; condition = "ExileClientInteractionObject call ExileClient_object_construction_openBridgeShow"; action = "ExileClientInteractionObject animateSource ['DrawBridge_Source', 0];"; }; class Raise: ExileAbstractAction { title = "Raise"; condition = "((ExileClientInteractionObject animationSourcePhase 'DrawBridge_Source') < 0.5)"; action = "ExileClientInteractionObject animateSource ['DrawBridge_Source', 2]"; }; }; }; Share this post Link to post Share on other sites
hogansheroes 374 Report post Posted April 9, 2018 target = "Exile_Construction_WoodDrawBridge_Abstract"; change it to this below target = "Exile_Construction_Abstract_DrawBridge"; Share this post Link to post Share on other sites
Grayz_lost 2 Report post Posted April 9, 2018 working now .. thankyou Share this post Link to post Share on other sites