42nfl19 0 Posted May 16, 2017 So with the introduction of the Jets DLC, it was shown that there are new animations for AI to play out while on the deck of the USS Freedom. My question is, where can I find these animations? I have looked at the functions viewer in the ambient animations and have found nothing. Share this post Link to post Share on other sites
Grumpy Old Man 3546 Posted May 16, 2017 Maybe you'll find animations in the "animations" viewer. Might be a thought. Cheers 2 Share this post Link to post Share on other sites
EO 11277 Posted May 16, 2017 Splendid Animation Viewer > select CutScene..... 2 Share this post Link to post Share on other sites
42nfl19 0 Posted May 16, 2017 Yeah I know there are animations in the animations viewer but most of the time it is the different parts of an animation. So you have to use scripts to add the different parts in sequence a la switchmove, playmove, and playmovenow. I am talking about using BIS_fnc_ambientAnim which was introduced to add simple ambient animation without resorting to the the different animation class name stuff. Share this post Link to post Share on other sites
Midnighters 152 Posted May 16, 2017 BIS_fnc_ambientAnim is your simpleton variant of playMove and switchMove . If it's that hard to find the animations in the animation viewer and combine them together if needed, then why even try? I'm pretty sure if bis can do it in a showcase, so can you. 1 Share this post Link to post Share on other sites
simon1279 53 Posted May 16, 2017 I'd prefer a module like the one included in the Nimitz mod, instead of writing tons of lines and variables, after all it's a paid DLC that can easily do what a free mod can do i suppose, at least for the crew. there's something that could be interesting in the showcase mission, but i can' find it on ArmA 3 samples library nor i can unpack the missions pbo inside the DLC folder for obvious reasons 1 Share this post Link to post Share on other sites
Midnighters 152 Posted May 16, 2017 6 minutes ago, simon1279 said: I'd prefer a module like the one included in the Nimitz mod, instead of writing tons of lines and variables, after all it's a paid DLC that can easily do what a free mod can do i suppose, at least for the crew. there's something that could be interesting in the showcase mission, but i can' find it on ArmA 3 samples library nor i can unpack the missions pbo inside the DLC folder for obvious reasons The carrier is FREE. I'm not sure as to what you're on about. Share this post Link to post Share on other sites
simon1279 53 Posted May 16, 2017 the carrier itself yes and that's right but for those which have bought the DLC i believe that a deck crew animations module would be something to have, at least for sure another good incentive for selling the DLC Share this post Link to post Share on other sites
Rydygier 1317 Posted May 19, 2017 Good. These animations may be usfeul for scripting spell casting gestures. 3 Share this post Link to post Share on other sites
kremator 1065 Posted May 19, 2017 31 minutes ago, Rydygier said: Good. These animations may be usfeul for scripting spell casting gestures. Ahhh yes ... I remember from Arma2 days we a great spell casting mission! 1 Share this post Link to post Share on other sites
R0adki11 3949 Posted May 19, 2017 10 hours ago, ss9 said: Yeah, kinda disappointed that you have to hold enter to launch (Nimitz is better, can keep your hands on the controls) and that no crew guy comes up to give you the launch dance. I think its better, as you get to choose when you want to launch. Share this post Link to post Share on other sites
HazardousJay 83 Posted May 19, 2017 2 hours ago, Rydygier said: Good. These animations may be usfeul for scripting spell casting gestures. Inb4 someone makes a ArmA parody of turn-based JRPG's Share this post Link to post Share on other sites
The Dapper Fox 0 Posted May 27, 2017 As I can't seem to make a forum topic, I'll have to ask my question here. I want to use this animation (Acts_JetsPilotWalking), and I wanted to make the pilot carry his helmet in his hand. I used the attachto command but its pretty dodgy. Can anyone help me out? Share this post Link to post Share on other sites
theend3r 83 Posted May 27, 2017 7 hours ago, The Dapper Fox said: As I can't seem to make a forum topic, I'll have to ask my question here. I want to use this animation (Acts_JetsPilotWalking), and I wanted to make the pilot carry his helmet in his hand. I used the attachto command but its pretty dodgy. Can anyone help me out? It should look ok if you use a memPoint to attach it to (e.g. a hand, find it through selectionNames). Share this post Link to post Share on other sites
Wiki 1558 Posted May 30, 2017 Hey there. Looking for a simple script that simulates the whole animated lauching sequence. Just the animations for the crew members. Does anyone have that in stock? Would be great! 1 Share this post Link to post Share on other sites
simon1279 53 Posted June 5, 2017 On 30/5/2017 at 9:38 PM, wiki said: Hey there. Looking for a simple script that simulates the whole animated lauching sequence. Just the animations for the crew members. Does anyone have that in stock? Would be great! Same....... Share this post Link to post Share on other sites
Colince411 38 Posted June 13, 2017 On 6/5/2017 at 10:44 AM, simon1279 said: Same....... Has anyone found one? I'm trying to make one, but it keeps throwing me errors. Here's what I got: (This just goes from standing to thumbs up atm) S4 switchmove "Acts_JetsCrewaidR_idle"; sleep 3.367; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouch_in_m"; sleep 2.699; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouchThumbup_in_m"; sleep 1.533; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouchThumbup_loop_m"; sleep 4.366; S4 switchmove ""; ------------------------------------------------------------ Here's the error I'm getting: Share this post Link to post Share on other sites
sarogahtyp 1108 Posted June 13, 2017 (edited) do u use sleep in an unscheduled environment? Hard to tell without the complete error message from .rpt file. but if it is the case then use it this way to get a scheduled environment: [] spawn { S4 switchmove "Acts_JetsCrewaidR_idle"; sleep 3.367; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouch_in_m"; sleep 2.699; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouchThumbup_in_m"; sleep 1.533; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouchThumbup_loop_m"; sleep 4.366; S4 switchmove ""; }; Edited June 13, 2017 by sarogahtyp 1 Share this post Link to post Share on other sites
Colince411 38 Posted June 13, 2017 10 hours ago, sarogahtyp said: do u use sleep in an unscheduled environment? Hard to tell without the complete error message from .rpt file. but if it is the case then use it this way to get a scheduled environment: [] spawn { S4 switchmove "Acts_JetsCrewaidR_idle"; sleep 3.367; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouch_in_m"; sleep 2.699; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouchThumbup_in_m"; sleep 1.533; S4 switchmove ""; S4 switchmove "Acts_JetsCrewaidRCrouchThumbup_loop_m"; sleep 4.366; S4 switchmove ""; }; Thank you, this works now. The only remaining issue is now the AI activates the animations automatically, instead of by the trigger. Any tips? Share this post Link to post Share on other sites
warlord554 2065 Posted June 14, 2017 Sounds like you need to change your actual trigger conditions. They are being engaged immediately Share this post Link to post Share on other sites
Colince411 38 Posted June 14, 2017 I got it, thank you. I will have a fully functional and responsive aircraft carrier deck complete soon for anyone who wants it. Share this post Link to post Share on other sites
Skyler13 0 Posted June 16, 2017 On 14/6/2017 at 8:42 AM, colince411 said: I got it, thank you. I will have a fully functional and responsive aircraft carrier deck complete soon for anyone who wants it. Me, pls Share this post Link to post Share on other sites
kevinsue 2 Posted June 17, 2017 On 6/14/2017 at 4:42 PM, colince411 said: I got it, thank you. I will have a fully functional and responsive aircraft carrier deck complete soon for anyone who wants it. Thanks! very much looking forward to this. I was disappointed to find that a deck ambiance module was not included after I purchased the Jets DLC. Share this post Link to post Share on other sites
captmoose344 29 Posted June 17, 2017 I have already created a version of what your talking about. However I have no idea how to make it a module. I'll have to talk to my Nimitz buddies about how to do that. I'll also have to update it in guessing. Were you wanting this for the USA freedom? 1 Share this post Link to post Share on other sites
Colince411 38 Posted June 18, 2017 8 hours ago, captmoose344 said: I have already created a version of what your talking about. However I have no idea how to make it a module. I'll have to talk to my Nimitz buddies about how to do that. I'll also have to update it in guessing. Were you wanting this for the USA freedom? This looks great! Good job. So in my opinion, the best way to share this would be to have this exist on a map with nothing else. Then save it as a mission.sqm this way people could use it as a starting point for any mission they would like. You can also save this as a 'Composition', however I do not believe the scripts will be saved per AI. It's always worth a shot though. Share this post Link to post Share on other sites