catito14 0 Posted February 18, 2010 (edited) Hi, i need to make the animation to open the back door of the Amphibious LVTP-7. I tried but i do not have luck. Here is what i did: I put in the Class Animations this: class puertalvtp7 { type = "rotation"; animperiod = 3.7; selection ="ramp"; axis = "alfa_porton"; angle0 = 0; angle1= 2.100; }; And in CFGVehicles in the class of the Vehicle i put this: class UserActions { // Abrir y cerrar el porton class SubirPorton { displayName="Subir Porton"; position="alfa_porton"; radius=3.2 condition="this animationPhase ""puertalvtp7"">= 0.5"; statement="this animate [""puertalvtp7"", 0]"; }; class BajarPorton { displayName="Bajar Porton"; position="alfa_porton"; radius=3.2 condition="this animationPhase ""puertalvtp7"" < 0.5"; statement="this animate [""puertalvtp7"", 1]"; }; }; What is wrong with this?? Regards Edited February 20, 2010 by catito14 Share this post Link to post Share on other sites
f2f_bho 10 Posted February 3, 2012 well you might get some better info if it where in English as well could you try translating please/ Share this post Link to post Share on other sites
drunken officer 18 Posted February 19, 2012 config.cpp class AnimationSource { class puertalvtp7 { scope = true animPeriod = 3.7; initPhase = 0; };}; After your "radius" is a ; missing Share this post Link to post Share on other sites