noewon
Member-
Content Count
19 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout noewon
-
Rank
Private First Class
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
I'm trying to set up a location where climbing down a ladder into basement area, teleports players to location off map where I've built an underground bunker. Rather than just drop them at the base of the underground ladder, I'd like to position them on the ladder to finish the climb down. I can't get "ladderdown" to work. Is it still valid or a legacy Arma2 action that no longer functions? I found this on the Steam forum but am having problems pulling it apart and working out what it's doing to refit it for my purposes: https://steamcommunity.com/app/107410/discussions/17/1813170373227147740/ this addAction ["Climb Down",{player action ["LadderDown",nearestObject[player,"Land_ladder_half_EP1"],0,1]},[],2,true,true,"","(getPosATL player select 2) > 25",15,false]; The first part is fairly straight forward, but then there are these extra arguments at the end : [],2,true,true,"","(getPosATL player select 2) > 25",15,false]; Can anyone unpack what this is trying to do? Or just point me in the direction of something that works?
-
Custom Dialog System
noewon replied to SceptreOfficial's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Is this still up? Both links are broken. -
Unsure how to make spinning light
noewon replied to Street Captain's topic in ARMA 3 - MISSION EDITING & SCRIPTING
attempting to use the script in the init of a light, receiving the error: "Error - invalid number in expression" any ideas? -
Slide an object across the ground
noewon replied to gitrinec's topic in ARMA 3 - MISSION EDITING & SCRIPTING
how did you go with this? I'm attempting to set up a hidden panel that slides open when triggered but am having no joy with the animation of moving an object. -
Nope. Just have the IR laser sitting somewhere as in a laser defense system.
-
I want to use a laser pointer for a visual effect, how do I set to be on/off based on triggers? I've found the other posts about turning streetlights on or off, but it's not quite the same. if I use: object setHit [part, damage, useEffects] What's the part for the object "IR Laser Pointer"?
-
ARMA 3 Addon Request Thread
noewon replied to max power's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Thanks... I should have been more explicit. By humanoid.. I meant human... just a giant person -
ARMA 3 Addon Request Thread
noewon replied to max power's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
How hard would it be to make a giant humanoid figure? Would it just be as simple as taking a current model and scaling? Would the current animations still work? Nothing too extravagant, maybe the equivalent of 8-9ft tall. -
I already did post what i tried. got NFI how to do this... but could pull apart an example if someone has one
-
Bump... would also like to set up a similar scenario as per option 2...
-
hooF!@#nrah. it works. When the appropriate trigger is tripped, dofollow gets them all moving again and shenanigans ensue. thanks for your help
-
OK.. this is driving me nuts. I've tried dostop, disableAI "move", forcespeed, none work. Where should the command go? In: Comoposition init? Object init? On the a hold waypoint referencing the group? oh, but wait.. that doesn't work, it generates an error "type group, object expected". How the F do you reference an entire group then? Read the wiki.. commands don't work.
-
Thanks David Where does this code go?
-
How do I address the entire group? Every command I'm trying (forcespeed, enablesimulation etc) keeps giving me the error "Type group, object expected" when testing the scenario. Where is this command supposed to go? Object init? Composition init? In other words, how do I reference the entire group?
-
I'm attempting to set up an ambush in an urban environment and don't want the group to be standing in any the usual formations as they arrange themselves outside the building or in the next compound. In the editor, I need the units to remain in the location they've been placed, not return to formation. I've tried using dostop this and thislist on the group to get them to remain in the location I've dragged them, but they just ignore any commands and stroll back to formation. How do I get them to stick? domove doesn't seem to work... unless I'm getting the syntax wrong.