#arma3_editor

1 messages · Page 22 of 1

sharp lily
#

Also on clients ?

summer anvil
#

yes

#

Could it be caused by a remoteExec without a specified target? I think this script might be the issue, but I still have some doubts. Should I ask about this in the scripting channel?
this addAction ["Use Ritual Key", {
params ["_target", "_caller"];

_target hideObjectGlobal true;
deleteVehicle _target;

_caller sideChat "Something has been released...";

[] remoteExec {
_boss = group player createUnit ["WBK_SpecialZombie_Smacher_Hellbeast_3", getPos spawn_jefe, [], 0, "NONE"];
_boss setPosATL (getPosATL spawn_jefe);
_boss allowDamage true;
_boss setVariable ["bossMaxHealth", 1000, true];
_boss setVariable ["bossCurrentHealth", 1000, true];
_boss setName "THE CHOSEN ONE";

titleText ["Something dark has been summoned...", "PLAIN", 3];

[] spawn {
  for "_i" from 1 to 40 do {
    sleep 0.04;
    addCamShake [12, 1.5, 40];
  };
};

[] spawn {
  waitUntil { !isNull _boss };
  while { alive _boss } do {
    _hp = _boss getVariable ["bossCurrentHealth", 1000];
    _max = _boss getVariable ["bossMaxHealth", 1000];
    _percent = _hp / _max;
    _bar = "";
    for "_i" from 1 to 20 do {
      _bar = _bar + ( if (_i < (_percent * 20)) then { "█" } else { "░" } );
    };
    titleText [_bar, "PLAIN DOWN", 0.1];
    sleep 0.3;
  };
  titleText ["", "PLAIN"];
};

_boss addEventHandler ["HandleDamage", {
  params ["_unit", "_selection", "_damage", "_source"];
  private _currentHP = _unit getVariable ["bossCurrentHealth", 1000];
  _newHP = _currentHP - (_damage * 1000);
  _unit setVariable ["bossCurrentHealth", _newHP max 0, true];
  if (_newHP <= 0) then { _unit setDamage 1 };
  0
}];

};
}];

turbid olive
#

complex... but you can try these commands with some cooldown. My idea is:
When the enemy hits your vehicle (https://community.bistudio.com/wiki/Arma_3:_Event_Handlers#Hit) or the player's group detect an enemy (https://community.bistudio.com/wiki/Arma_3:_Event_Handlers#EnemyDetected), it will activate the script (a loop) that will check cameraView (https://community.bistudio.com/wiki/cameraView) of the player , if not "INTERNAL" then switchCamera (https://community.bistudio.com/wiki/switchCamera) to "INTERNAL" or "GUNNER".

You will need to delete the event handler as soon as the enemy hit the player's vehicle, to avoid calling it multiple times. The cooldown here (can be a longer or a shorter one) is to call the event handler again, and end the loop before it.
Idk if this will actually work

slow jewel
#

how did i miss all that up there lol

sharp lily
turbid olive
turbid olive
sharp lily
sharp lily
# turbid olive well it's easier if it's a trigger, but you said "gets in contact" lol

I know, my fault, in the end its ok we trigger this just based on location (lets say on "contact line").** When players enters contact zone -> tanks, btr and bmp2 crew needs to be blocked, otherwise 3rd person can be pretty much spoiled.** That's better explanation of situation.

There is a glitch with ACE "view restriction" module, where I can use "acex_viewrestriction_modeSelectiveLand = 1;" command to block them locally, but that can be quite risky move on dedicated with 50+ players I guess 😅 I'm not sure about its behaviour, it could be ok thou.

turbid olive
#

this is something that I've never tried so, not sure

ashen marsh
#

Try this:

  • Trigger condition (should be repeatable):
player inArea thisTrigger
  • On activation:
localNamespace setVariable ["isInDangerZone", true];

_vehicle = objectParent player;

if (!(isNull _vehicle) and { cameraOn == _vehicle } and { cameraView == "EXTERNAL" }) then {
    _vehicle switchCamera "INTERNAL";
};
  • On deactivation:
localNamespace setVariable ["isInDangerZone", false];

Somewhere on client side:

_vehicle addEventHandler [
    "OpticsSwitch",
    {
        params ["_unit"];

        if (_unit != player) exitWith { };

        _isInDangerZone = localNamespace getVariable ["isInDangerZone", false];

        if (_isInDangerZone and { cameraView == "EXTERNAL" }) then {
            (objectParent _unit) switchCamera "INTERNAL";
        };
    }
];
rain storm
#

im trying to make a helicopter pickup scene but it just doesnt work, im trying to do it with waypoints,

i have my ai squad that has a guard near the landing zone so they'll wait till the heli lands and then they have a get in waypoint aswell onto the helicopter, and the my helictoper has a land and a load waypoint and i synced the get in waypoint to the load waypoint but the ai squad just doesnt get into the helicopter... anyone knows why?

turbid olive
ashen marsh
#

Why not? You can use any namespace.

turbid olive
ashen marsh
#

More important thing is that local namespace vars are protected from being overwritten by value broadcasting over network.

ashen marsh
bold holly
#

I swear to god there was a way to sync multiple things without having to right click on the origin and "sync to" every time

#

Or am I wrong

turbid olive
bold holly
#

i see, thank you

oak thicket
#

is there a way to have a repeatable trigger but not having to go out of it and then back in?

#

(for example: a sound plays from the trigger but loops instead of just playing once) ?

ashen marsh
#
  • On act.:
_scriptHandle = [] spawn {
    while { true } do {
        // play sound
    };
};

thisTrigger setVariable ["playSoundScriptHandle", _scriptHandle];
  • On deact.:
_scriptHandle = thisTrigger getVariable ["playSoundScriptHandle", scriptNull];

terminate _scriptHandle;

thisTrigger setVariable ["playSoundScriptHandle", nil];
oak thicket
#

this is for a costum sound you put ingame no? and not from the sound options in the trigger itself?

(sorry btw im very new to this)

ashen marsh
#

The first.

small patrol
#

Unfortunately such cannot be really blocked easily

oak panther
#

Hello have problem with extract PBO i don't know make.

wanton patrol
#

Does anyone knows what is the CBA_O_InvisibleTargetAir for? Is in the CBA mod

lethal pulsar
wanton patrol
#

@lethal pulsar Thank you

sharp lily
ashen marsh
#

OK, then:

  • Trigger condition:
_vehicle = objectParent player;

!(isNull _vehicle) and { _vehicle inArea thisTrigger } and { cameraOn == _vehicle } and { cameraView == "EXTERNAL" }
  • On activation:
(objectParent player) switchCamera "INTERNAL";
versed nimbus
#

anyone know why i cant shoot like this plz

#

everything freeze cant shoot cant reload cant move nothing

small patrol
#

Such turret does not support to rotate/fire upside down

zenith jay
#

How do I get this

paper yarrow
zenith jay
paper yarrow
#

Its in the POLPOX's Base Functions mod IIRC

zenith jay
#

alr thanks

#

Do you per chance now the "Int" Command to make a Visual-Only Flash in your rifle without the weapon actually firing

paper yarrow
#

No idea

ashen marsh
#

Check if the trigger is activated at all.

thick raptor
#

hey there, was wondering if anyone could help me out, im getting a circular addon dependency error in arma 3 and have no clue what to do. ive reinstalled the game, tried disabling each mod to see what if one was causing it, verified files, reinstalled mods, all that stuff. i have the zip with the lastest crash report if need be. thanks in advance :)

small patrol
sharp lily
# ashen marsh Check if the trigger is activated at all.

It is, You can see camera is changed on specific place, but its working more like "secondary click" \ "zoom in", its because me, as a driver, have head outside of the hatch. If I would be hidden under the hatch, inside the tank, command wil work perfectly. Function "Turn Out" is problem here, it won't let us change camera to "internal", I also tried switchcam "gunner"etc. "Turn Out" makes it impossible notlikemeow

ashen marsh
#

This is sad.

sharp lily
#

If we don't have any command forcing player get back in, function "Turn In", then I will have to block 3rd person as a whole. Thanks for help guys anyway 🫶

sharp lily
#

salute Thank You

clear ridge
#

what script or method do y’all recommend for ai spawning? main thing I’m trying to do here is spawn counter attacks, and just full attacks for smth like maybe defense missions. something mixed too, such as with vehicles and infantry. i’m mostly struggling in getting grander missions, such as for example something id want is like a fob defense as we drive up to a fob (in sog of course), and some helicopters fly over and an attack begins

slow glen
#

guys where i can buy premium ? i cant use editor

ashen marsh
#

There is no premium for the game.

turbid olive
lethal pulsar
little bobcat
small patrol
#

Is it possible to detect if a unit has Edit Loadout'd inventory in Eden workspace not ingame?

#

Before you ask saved3DENInventory is not a thing there

#
(getUnitLoadout _unit isEqualTo getUnitLoadout typeOf _unit))```might be a stupid workaround
small patrol
#

...Or, maybe not. This condition is false if they had a randomized goggle

plain gale
#

Isn't there a variable saved to the unit when the loadout is changed via eden?

small patrol
#

allVariables says really nothing

plain gale
#

hmm

lavish robin
# clear ridge what script or method do y’all recommend for ai spawning? main thing I’m trying ...

Was scrolling and noticed this. Its one of those things that you can do a multitude of ways.

  • Scripting - write a loop that spawns groups at set locations (markers, objects or world coords) and set it to run every X minutes. The best part of scripting you can tweak it to death and really customize it. If you use this method, make sure you have a condition that ends the spawning (such as a wave count). Also make sure you have a killswitch, some variable thats checked every run that if it returns true, it just exits. One of the biggest risks with this method is run away spawns which will cause a crash eventually.

  • Triggers + Show / Hide module - This is eden friendly and better if you're a visual person IMO. Basically, create all the groups you want to take part in the attack in eden. Use the show hide module and set it to hide to hide each group or add them to a layer and hide the whole layer. Note, to hide them you'll need to sync them to the module unless you're using the layer. Next, place a second show hide module and set this one to show. Place a trigger which you'll use to 'show' a wave and sync it to the show hide module set to show. Finally decide the trigger condition, this is what will fire off the wave. You can use radio alpha, bravo etc which requires someone to hit the button which is good for gameplay balance. You could also do it when people arrive in an area or something more advanced by checking if the group ahead is all dead.

You can also mix and match e.g. have a trigger that runs every X minutes if a condition is true and spawns a group of AI

Hope that helps, sorry its an essay!

plain gale
#

True if changed, false if not

small patrol
#

That seems only work ingame

clear ridge
plain gale
plain gale
clear ridge
#

With spawning, I found information on spawning individual units in squads, but I didn’t find anything or much abt spawning groups as a whole, so already set squads, or vehicles, or vehicles transporting infantry

lavish robin
#

it does require a group to be set up ofc but again, scripting you can create your own groups on the fly, just a bit more work
Id suggest get the logic down first though with vanilla stuff, path of least resistance etc etc

small patrol
magic osprey
#

How can I solve this error? I remove the object in the error code from the mission map. It gives the same error as another object. Do I need to delete the entire map?

slow jewel
#

@magic osprey well it seems as tho you had some mod in the mission that had that Object in the mod so, now you must go into the mission.sqm file and remove the line thats calls for this object

#

or just put that object back in the mission

#

or replace the object with this "CamoNet_OPFOR_open_F"

#

Land_CamoNet_East is from a mod i do believe

quasi torrent
#

what does BI mean by this

prisma oyster
#

"you played over 10k hours, you owe us more game money!"

little bobcat
quasi torrent
terse tapir
#

sorry for the stupid question but how do i make it so that my players don't shoot background npcs in the head within a certain area? can you make them invincible somehow within a certain area

quasi torrent
#

but if u ran ace I think there is a function in the wiki of it

sharp lily
#

Not sure how it will behave on dedicated, but for now looks great blobcloseenjoy Now I'm filtering this command via if (player == akula1_1) but I guess it would be better to use "if driver, gunner" etc. Any idea maybe ? Thanks

misty pulsar
#

Anyone know what happend to the Advanced Developer Tools Mod?

prisma oyster
misty pulsar
#

sad to hear that

turbid olive
turbid olive
plain gale
sharp lily
# turbid olive nice idea you got there, gonna borrow it lol

Sure, but careful, if you want to use "ace_viewrestriction" module as blocker, there is a little trick. Set addon like this, and then put

acex_viewrestriction_modeSelectiveFoot = 0; acex_viewrestriction_modeSelectiveLand = 0;

into initPlayerLocal to unblock. When players enters the zone, only then use:

acex_viewrestriction_modeSelectiveLand = 1; (with the rest of code to change camera view back inside. After that, player wont be able to get 3rd person back)

HF

clear ridge
#

oh wait this is much simpler than i thought

#

now to have like wave spawning due to trying to do a defense mission, i assume i make the spawn trigger repeatable and on countdown

#

and then for example i make a “kill trigger” that deletes the spawn trigger?

#

final thing, i apologize for asking so much, do not worry as ive been using the wiki but im just a little bad with all this, but is this something better to be used in like a file in the mission folder, or just put that in the trigger

#

or like, why would i want to do one over the other?

lavish robin
# clear ridge now to have like wave spawning due to trying to do a defense mission, i assume i...

I think this is the time where you think about what you want, if you're just after a time between waves, all good. I would, for now at least, use triggers as its probably easier to get started but if you're more comfortable with files in the mission you can do that to. But you've still to consider where you want enemies to spawn to

I'm going to assume we want one group, spawning every minute the players are in a particular trigger

The way I would approach this is something like

  • Place trigger to handle players entering an area that will set some variable to true
    -- set to activated by player
    -- activation: playersPresent = true
    -- do not make it repeatable, first player in will fire off the rest of the logic

  • Place second trigger that will handle spawning
    -- Condition: playerPresent == true && killswitchOn == false (note, == means equal to, in this case, 'does playersPresent equal true and does killswitch equal false?')
    -- Set the trigger to run every X minutes or X seconds (set it to a short time for testing, that way, if you're second group spawns 5 secs later you know its working)
    -- Activation: do your spawn group logic here, for now take the trigger as your spawn location, you can also add a waypoint here if you want them to run towards players
    -- Set to server only, I think group spawning is global which means you might see one group for every player which is risky

  • Place a third trigger that will be the killswitch
    -- Make this fire on radio Alpha, something under your control
    -- Activation: killswitch = true

This is a bit rough and ready and written off the top of my head so may need tweaking, may be a simpler way to do it. One thing im not 100% on is if you need to declare the variables first. I think otherwise, the checks may not work but I can't test at the moment
Finally, make sure you test each aspect including the killswitch

#

shouldnt take too much to expand this out to multiple groups from multiple locations if needed

clear ridge
#

I shall try this out and see what happens, thank you!

#

If this all works fine, then maybe I’ll go test this out with transport vehicles and infantry

#

That seems pretty finicky though, from what I saw

lavish robin
# clear ridge If this all works fine, then maybe I’ll go test this out with transport vehicles...

can do but might lead to some lag / stuttering if all groups are coming in at the same time
yeah theres different way with vehicles to. You can spawn a group, spawn a vehicle and pass the vehicles position as the destination for a getin waypoint then have a second waypoint to the players
if you're after a vehicle with crew you can use the createVehicleCrew command , bit simpler
you can also do something more complex where you spawn a vic, get its crew seats and passengers then create both if you want
if I'm getting into this level detail, I prefer using different function files to handle the different parts of the logic, id move away from triggers at that stage but you dont have to
what matters initially is that it works and doesn't break anything

clear ridge
#

since itd need to get the squad, drop them off, fly away and disappear

lavish robin
#

I'll metion it again though incase, there are mods and scripts that solve these problems already if you find you need something to work now whilst you learn for later

clear ridge
#

And like for example have an APC spawn in too, can be inferred as the infantry was dropped off beforehand

clear ridge
lavish robin
clear ridge
#

i see

blissful flume
#

Is there a way to make custom compositions retain a non-vanilla callsign when they are placed in Eden? I've tried using a simple setGroupId[""]; in the composition init for each group, but that only seems to run if they are placed during runtime by a Zeus.

Ex: I create a platoon template and name the squads Team A/Team B/Team C/Weapons Team, copy the callsigns into the composition inits as setGroupId["Team A"] etc, and then save the composition.

Delete the units and place them again using the custom composition. Their callsign is no Alpha 1-1 to Alpha 1-4. Run game. The callsigns remain Alpha 1-1 etc. when viewed by Zeus.

Delete them as Zeus. Place the composition again. The init runs properly the names are A/B/C/Weapons. neither object nor composition editing nor conditional expressions seem to deliver the desired results.

Edit: (allGroups select (count allGroups - 1)) setGroupIdGlobal ["Arma"]; in the composition init works. I'll edit this again if I find a less ridiculous way than modifying the last unit in the server list.

small patrol
blissful flume
small patrol
#

I doubt you clicked and inspected the right part. A group can have an init, this is a fact

blissful flume
#

That's extremely likely. Care to explain how?

#

This button opens a composition editor, as does the box above the unit. I've tried double click and attributes, as well as syncing a module to the group icon. No dice so far from anything.

Wherever the button is; it's pretty unobtrusive.

small patrol
#

Double click the square (or diamond, depends on the side) and there should be a Group's attribute

blissful flume
#

I figured that was the right way. Unfortunately my copy doesn't seem to be doing it. Can mods break the editor that way?

Let me get a picture, because I'm 99% sure I'm doing what you're saying, but I could be wrong.

small patrol
#

"my copy"?

blissful flume
small patrol
#

Yes, this is the attribute

blissful flume
small patrol
#

I think the "Composition" mention in Eden is slightly wrong, but that is the init

blissful flume
small patrol
#

You can use this as the group in that context

#

Should

#

Unless Zeus does something wonky with it

blissful flume
#

Yeah that's what I thought. It was the first thing I tried, but it just doesn't seem to execute.

I spawn into the mission, swap to Zeus, and look at the callsign, and it's still 'Test'.

#

If I delete the car and copy it from my custom compositions list with this in the init, it renames itself to 'Arma' like it's supposed to.

small patrol
#

Hm then what about hint "hey its working" to confirm that init is working in Zeus

blissful flume
#

I'll try that.

#

It's definitely running, and it hasn't popped up any errors.

small patrol
#

Then try hint str this

blissful flume
#

Ah. Okay thanks. One moment.

#

Huh. It says 'R Arma' Maybe Zeus just isn't updating it on the HUD?

small patrol
#

Likely that is the case then

#

Plot twist: you've done it already

blissful flume
#

I really just want to preserve callsigns for the sake of the people who are going to be using my composition. I went and specced out a full battalion into maneuver units like a crazy person, and I want to have labels for all the elements so that I can save them piecemeal into a folder for my friends' story missions.

Is there a better way to do that, or do I just need to make Zeus refresh?

#

Mousing over a squad with 3-4 specific fireteams and a named hero unit or two just feels better when it shows the correct names instead of Alpha 1-(1-4), and they've appreciated it as Zeus when I've done it manually on my own maps.

small patrol
#

I actually have no idea more than that, I barely have Zeus experience

blissful flume
#

I really wish there was just a checkbox or something "Try to maintain callsigns" when you go to save compositions. If there is, I haven't found it, so I figure making them snap to the right ones on mission start is the next best thing.

small patrol
#

I mean it is done already. In this case Zeus is the faulty

blissful flume
# small patrol I mean it is done already. In this case Zeus is the faulty

That's fair. I suppose this is a separate question.

I know that last time I did Arma, there was no way to make compositions have the same callsign when you saved and loaded them in a different scenario. Has there been any non-scripting workaround between then and now?

It'd be really nice to have our named squadmates and the units with history retain some sort of label so that they could be readily distinguished by people making new scenarios.

small patrol
#

So you want to take them "Arma 1-1" "Arma 1-2" if you put multiple but same compositions

blissful flume
#

Editted to be less spammy. Apologies. I spent too long last night working on this.

Here's the gist of what I want to do. This squad loads up into these trucks. If I save the loaded trucks as a composition and someone drops them into their scenario, there's really no way for them to tell how these units are supposed to move without pulling them out of the trucks and looking at each guy individually. If I have them labelled CC/RFL-1/RFL-2/LMG/RPG/DMR then it's fairly apparent right off the bat, and if I have them all labeled as First_Squad-[Role] then there is no conflict between the callsigns from having multiple platoons copied over the course of a mission. I don't mind making a different version for every platoon, since composition files are fairly lightweight and I'm willing to spend the time renaming each group.

As it stands, if there are already 11 groups in the mission when someone places them, then they show up as Alpha 2-4 through Alpha 4-1, and that doesn't really tell the Zeus anything about how to use them, which can overwhelm them and result in machinegunners or snipers rushing a bunker while their infantry element sets up for long range fire or other such chaos.

I’ve already gone and made a whole ‘regiment’ (About 1,500 soldiers… I may have a problem.) to give my friends a rotating list of units to call in. I like that solution because it also helps put the size of units in context operationally. Hardest part of mission creation to me is figuring out what seems like a ‘reasonable’ amount of vehicles or support troops or ammunition to give to a unit. Another fringe benefit is that I’ve been able (at a cost of probably too much time and effort) to personalize every unit; so some squads react faster, some might have an extra weapon issued from company; some might just have personal or worldbuilding items on a soldier or two for better immersion. A different helmet here and a different gun there and a high pitched voice or unique face on a platoon leader. About 500 of these guys have something or other tweaked.

#

Having fixed callsigns for specific units that don't necessarily conform to a 4:1 squad>platoon>company structure also makes it a lot easier to have historically accurate units from armies that didn't use that structure, or fictional armies that are less regularly organized like the one shown. Some armies have had 3 squads to a platoon or 2 platoons to a company, and vanilla names. don't really cover that very well.

Edit again: I've continued tinkering, and figured out that the issue is Eden editor doesn't even read a unit's callsign when it places it. If you delete a unit and undo, it will reset the callsign to vanilla. If you copy a unit, delete, then paste, it will reset the callsign to vanilla. If you delete everything else on the map, export to SQF, change the callsigns of all the units that are left and copy them in, it gives them vanilla callsigns. If you manually edit a composition file to have callsigns, it will ignore them and place the unit with default callsigns. Eden does not preserve user created callsigns in any interaction.

light briar
#

Is the Callsign field on an editor-placed group broken? It looks like the generated custom attribute is not working right?

plain gale
#

Afaik there was an issue with the call sign

light briar
#

I know that it is reset whenever you copy and so on, but the basic manual definition on the attributes was working before. Not only for the list of entities in Eden I mean.

turbid olive
blissful flume
# light briar I know that it is reset whenever you copy and so on, but the basic manual defini...

I think this is the case? I've been able to rename these groups in the composition editor as you can see, and it retains those names when I test the scenario. The trouble is that I can't find a way of exporting the group without them resetting. The closest I can think of is to save a nonbinarized mission file and manually text edit the whole group in, which seems prohibitively complex without writing a tool for it.

Which I suppose I could do, but it's a lot of work that I don't think most people using my stuff are going to want to repeat. I'm actually surprised this hasn't come up more, given how hard renaming individual units is (99% of my units here are type 'rifleman' or 'crewman', with stats tweaked in ACE and loadouts saved in Arsenal, so the groups are really the only way a Zeus or editor has of knowing what they are besides context.)

plain gale
#

So what exactly doesn't work? Exporting to sqf or copying an entity?

blissful flume
# plain gale So what exactly doesn't work? Exporting to sqf or copying an entity?

Exporting to sqf and copying entities both copy the unit correctly except for the callsign, which is reset to Alpha 1-1 format. I'm looking for a way to preserve something that will identify the groups when someone else wants to use them. IE I want Zeus/editors to see at a glance that mortar teams are mortar teams, gun crews are gun crews, etc.

light briar
plain gale
#

It's probably because call signs are auto generated.

What about having a comment entity next to the entity.

light briar
#

It was working before.

#

I launch a MP.... the group is Alpha 1-1

blissful flume
#

Exactly my problem. I'm also not that advanced on the editor yet, so I'm gonna have to look how to even use comments and display varname. If I could set something in init to affect how Zeus sees them, and use varname as a tooltip for people copying the units in editor, that would be plenty. It doesn't need to be polished, just functional! ^.^

light briar
#

Checking if it works better with CBA

light briar
#

This is now working only for the "Entities" list in Eden. Nowhere else.

#

When using CBA, the CustomAttribute differs a bit:

#

But still broken.

dire cypress
#

would be cool to see it fixed, would also simplify unit setups for people who use the ctab mod

plain gale
blissful flume
light briar
#

I don't know Zeus, sorry.

light briar
dire cypress
light briar
#

Okay, have to test it 😅

light briar
#

Got it.

#

Just add the @CALLSIGN on the first unit of the group.

snow yew
#

hi, can anyone help me i am not able to see my test faction in eden editor

#

my paths and pbo are all correct

#

and i am loading addon my using steam launch option and my folder structure is @example -> Addons -> test mod

#

pls help or dm

fossil urchin
blissful flume
onyx scarab
#

I'm trying to make a compound for some of Webknight's Zombies, so that the players have to enter the zombies and deal with them in close quarters. Problem is, they're walking straight through that gate there. Is there any way to force them to stay within the compound's perimeter?

I don't want them to be unable to move, because they're melee centric enemies and that would defeat the purpose of having them.

fallow schooner
desert nebula
#

Hi there! I’m currently working on a escort convoy mission in the editor, but the enemy AI (OPFOR Takistani Militalia) doesn’t shoot at the BLUFOR US Army M1220 MRAP (rhs). Is there any way to fix this?

(Sorry, I’m not very good at English.)

keen jolt
#

you can use commands such as doSuppressiveFire to make them shoot blindly if that's what you want

ashen marsh
#

Probably because it is forbidden by difficulty settings, no?

sick sinew
#

Ah yes, MOAB on helicopter

gaunt frost
#

Within the editor im trying to get a plan to drop its bombs on a target im using the varrable drop (array) how do i use it?

#

I am also using the do suppresive fire

vestal perch
#

there may be invisible path objects laid down to give AI easier pathing

#

those are basically buildings with no visible model

#

when AI is on a building path it will walk through other things (clipping safeguard)

#

thats one possibility

#

another is that the gate object is not made right and just cant block AI

#

try swap it to another piece of wall just to see if AI behaves the same

clear ridge
#

bit of a basic question

#

but how do yall handle ai placement in ai settings?

#

thing i struggle with is lets say i place every single ai, it may become static-y (gotta do stay on position so they can stay in their spots, they do leave it once in combat to do whatever they're ordered) and for me, as i play through it, predictable since i placed every single one and there is no dynamic part to the ai

#

however if i place patrolling ai, they dont really utilize the urban setting a lot

#

i cant also just plop down an ai squad that sits there since the players will find the ai just sitting there in formation

#

they can be easily killed

turbid olive
#

it's arma

slow jewel
#

theres a lot of ways to setup ai in a mission and i mean lots, in my missions the ai flank you and rush you and Attack you head on and sometimes hide and Ambush you woohoo Arma 3 hell yeah

#

maybe cuz of my massive testing of ai over the years they seem to do as i would in a fight

#

i made so many diff Ai patrol Scripts for diff reasons , and for diff missions to get the effect i wanted

#

and i set the skill for ai also , for each mission as needed

clear ridge
#

i cant really seem to figure out stuff with them. just never have a good option w it seems

clear ridge
onyx garnet
#

anyone else having issues with the debug console after arma 2.20?

#

or the config viewer

small patrol
#

Describe it

slow jewel
#

@clear ridge what do you want to make the ai do in the citys what is your goal, let me know what you want the ai to do in any case and i can help you, BTW there's many ai setup systems out there, EOS system: and LV Scripts: witch i love really, i had to completely change a lot of them scripts to get the effect i wanted, and i also learned a lot about how to make ai Scripts from them over the years, oh 1 more script that i use is the, SHK_buildingpos.sqf i also had to change some to fit my needs

#

i think ai in the citys is the easyest way to set them up, only thing is sometimes i had to put death triggers under some of the house's, cuz ai stupidly fall under houses sometimes, this does take some time to get used to doing, but to me its fun: also if you want ai to hold pos where they are just put doStop this; in the init of that ai

slow jewel
rapid pollen
#

idk, maybe it should be published as a bug, but with last update I cant use eden editor... We need a new DLC to buy?

#

this button do nothing on clicking

prisma oyster
rapid pollen
#

ok, thanks

#

all files successfully checked...

runic cloud
#

restart steam

clear ridge
#

Maybe this is related to the skill (I had it set it to 0.5)

#

But for example, we just keep on fighting one at a time

#

We never had whole ai squad actions against the player in the city, we kinda just shoot 1-2, another 1-2 pop up, etc

#

If I had like the entire squad acting on the players, just only 8 ai, it would make things actually pretty intense and get what I’m looking for

#

But I’m just, not

clear ridge
turbid olive
clear ridge
#

I see

#

maybe atp i gotta turn the skill up

radiant shuttle
#

For city fights I've found that using triggers, guarded-by waypoints, and larger groups helps

#

Groups don't talk in vanilla, so having some way for other units to react can help it feel better

#

E.g., have a guarded trigger on the side of the city you expect the players to approach from, with a fire team that has a guard waypoint. Once that team is defeated, another squad with a guard waypoint will move to the trigger to try to take it

#

You can place multiple guarded triggers, and the AI with guard waypoints will prioritize them in the order placed. It can create some dynamic movement of units responding to players

#

You can also use a "detected by" trigger to make all the enemy ai execute a seek and destroy waypoint against the player's current position

#

Or you can combine them to have some assault and reserve elements

#

Finally, having larger groups means that the AI will actually talk within a group, and execute flanks and suppression

terse tapir
#

how do i change this?

radiant shuttle
terse tapir
#

i managed to get it working before but cant anymore

radiant shuttle
#

Huh, yeah I don't know then

turbid olive
terse tapir
small patrol
#

Make a Mod so create a new unit class

queen token
#

Ive had a probloem with my server, its a persistent mission and im trying to add the support moduels. they work when you join and the game starts, but after the game has started, if you rejoin or another player joins, they show/work

radiant shuttle
#

A lot of stuff in Arma is initialized on mission start, and clients that join don't have access unless it's properly localized

queen token
#

Thank you! ill look into it

radiant shuttle
clear ridge
#

so wait do i sync all of the squads to the trigger with the guard waypoint

#

but only one squad goes to it?

#

also, for squads im making stationary

#

like not placing in a specific position or patrolling

radiant shuttle
clear ridge
#

im just placing a squad down, in formation, should i place a waypoint like sentry down for them, or no? or should i even have stationary squads like that

radiant shuttle
clear ridge
#

would you recommend doing so however?

radiant shuttle
#

Also, units with a guard waypoint and no place to guard will attack units that are detected by the same side

radiant shuttle
#

I don't usually give static squads a waypoint though

clear ridge
#

Afaik its like a combat mode of hold waypoint, may be wrong though

radiant shuttle
clear ridge
#

So it's basically waiting until further orders

radiant shuttle
radiant shuttle
clear ridge
#

I see. May just put no waypoint for these squads though

#

I hope those enemy squads will be able to see the player with that, since I have them further out

#

Hiding in some forest areas

#

I think I'm too worried about the AI fighting from specific positions

#

Like in treelines from far away that they wont really spot the players from

#

So I gotta just do this in areas where I think they're going to be in

terse tapir
#

how do you hide these waypoints?

turbid olive
queen token
#

@radiant shuttle still a little thin in understanding the way to do it. But i found some scripting. Is there a sqf for triggering the support moduel for a JIP

turbid olive
#

onPlayerRespawn.sqf should do it

hearty cosmos
#

I want to play an ogv video that goes full screen for all players once a trigger is activated. But i'm getting some issues. No matter what i do i keep getting errors.

#

is it even possible to do playMovie?

turbid olive
#

couldn't find playMovie in biki

hearty cosmos
#

it isnt?

#

bro i swear i thought it was a real thing, but nvm then

turbid olive
hearty cosmos
#

tbh i dont even remember

#

i started working on this mission a couple days ago

#

i just noticed that this wasnt working until now

hearty cosmos
#

Could be, thanks

#

since there is playSound i assumed there is also a playMovie or PlayVideo script

tight pilot
#

Anyone else having an issue where the mpmissions folder just doesnt exist in your other profiles folder with the new update? Trying to export the mission im making and it says it is in game but the folder simply refuses to be where it usually is i even made one manually with the proper name and nothing happened

drifting pasture
#

Hello, I was wondering if there was a way to find the files for the default gamemodes and make it able to modify them. Specifically, I would like to modify the Warlords gamemode for the MACVSOG DLC to have a wider assortment of vehicles. There was a post asking a similar question to this on the forums but the forums are down. Is there any way to do this?

rain mesa
#

does anyone know what size a jpg needs to be so it shows up on TVs in editor? When I put the image name in the texture and load in its just a whtie screen

slow jewel
#

@drifting pasture yes you can find all the game modes in the Addons folder in your Arma 3 game folder

#

its a bitch to go thoo all that stuff but you can find if you really want to

#

one day i unpacked like 30 pbo files and still did not find what i was looking for so well you know

small patrol
#

That's mainly just about it. You may need to restart your game because the "wrong" texture may be cached into the session

rain mesa
#

I have it at 1024 x 1024

#

oh okay

#

so restart my game after I set it to 1024 x 1024?

small patrol
#

If you have right texture

rain mesa
#

Its a picture I downloaded and I have in the mission folder

small patrol
#

Also if you have an error message that also matters

#

What filepath you use and which file name you have, how do you apply the texture, they are also important

rain mesa
#

No error message, it just turns the screen white.

#

Thats what confuses me

small patrol
#

You answered one out of four questions

rain mesa
#

I apply it by typing the picture name with the .jpg at the bottom texture slot in the editor. I typed it in there as brief1.jpg

#

which is what the picture is named

#

in the mission folder

small patrol
#

And can I have the brief1.jpg too

rain mesa
#

yes should I DM it to you?

small patrol
#

Post it

rain mesa
#

I am unable to for some reason

small patrol
#

Because you didn't verified yourself

rain mesa
#

oh

small patrol
#

Maybe because bit depth is the issue

rain mesa
#

Is that something I could fix or is it a image issue

#

I admit I do know know what bit depth is

small patrol
#

...Excuse me

#

This image is a png

#

But just with jpg extension

rain mesa
#

Oh.. I fear maybe I downloaded the Picture improperly then.. is there a way to change it over to jpg?

small patrol
#

Just save it as a jpg

rain mesa
#

I thought I did

#

One second

#

when I try to save it I try to change it over to a jpg and it is saved that way

#

but thats what I did

small patrol
#

I don't know which software you use but clearly irfanview detects it as a PNG and warned me about it

rain mesa
#

okay let me see if I can figure something out

#

at least I have a source of the error

#

I appreciate it!

#

Ope a image converter worked as I converted it into a true jpg

#

thank u master polpox and I love your animate/screenshot taking mods salute

quick hedge
#

Hi, has anyone solved the problem with any radar in Arma 3? Normally, whenever it detects an enemy, it turns white. How would I set it to mark enemy vehicles in red?

drifting pasture
radiant shuttle
quick hedge
small apex
#

Where does one find the Eden Editor mission directory on Mac? A poor friend of mine hates himself enough to to take a crack at mission content on a mac....

vestal bolt
#

Hi, is it possible to hide the map name in the server info, loading screen, etc.? Basically, I don't want players to know which map they will be playing on

dry dawn
#

Does anyone here have a suggestion on how I best make a mission in a similar style as Arma 2s "Warfare" gamemode? But instead of players only being on 1 side, i want players on both sides. So basically a commander on each side, supported by a fireteam of players, and the rest is AI controlled by the commanders. While also having the objectives and similar money system?

lavish robin
# dry dawn Does anyone here have a suggestion on how I best make a mission in a similar sty...

Mods, its a massive undertaking to do yourself. I'd look into the Alive mod. It'll function as your commanders and order AI around. It'll take some setting up to get what you want and it probably wont do exactly what you want but it'll get you close. Id then look for cash or shop mod for the rest. I'm not familiar with the gamemode so not sure if this is a big swing and a miss info wise lol

Edit: Maybe warlords is what you're after?

dry dawn
# lavish robin Mods, its a massive undertaking to do yourself. I'd look into the Alive mod. It'...

Uh, To keep it simple: Basically 2 factions duking it out over an entire map with strongpoints and a depot within cities to capture. Most areas will be neutral or independent controlled until either red or blue takes it over.

Controlling more cities/objectives will earn you more per "tick". You win the mode either by timer(score), or destroying the enemy HQ. There's a commander on each side being able to send units using the high command system and transfer units recently bought to the squads. The money system is basically. "Kill to earn money", say 25$ for killing a rifleman etc. and when you have a couple of towns under your belt, they also run supply trucks. With this money, you're able to build defensive structures and buy weapons and units.

So basically the warfare gamemode in Arma 2, but i want to have the ability for both players and AI on both sides to make it more interesting. You cant do that in Arma 2 to my recollection.

lavish robin
#

Thats almost warlords minus the trucks driving about https://community.bistudio.com/wiki/Arma_3:_MP_Warlords
What im not sure on is if you could somehow hook into the resources and write some custom thing that says "If Salad hits this trigger, give him X 'supplies', if he hits this second one, convert it to cash. Never looked to see if theres a function you call

#

whatever you do is gunna require some sort of work

dawn lotus
#

I'm making a custom Hold Action icon, anyone know what size the icon should be?

plain gale
#

Unpack one of the icons provided by BI and copy it's layout ("a3\ui_f\data\igui\cfg\holdactions\holdaction_requestleadership_ca.paa")

dawn lotus
#

Alright, thanks.

turbid olive
#

can someone test something for me?
Spawn an AI F/A-181 with a Loiter waypoint in a fixed height and radius, in careless mode.
Result: The aircraft keeps getting higher and higher lol it doesn't respect the loiter altitude

slow jewel
#

mayby the pilot has a bag of weed on the F/A-181 he he

#
aircraftName  flyInHeight 150;
turbid olive
#

?

slow jewel
#

can you use that in the waypoint ?

turbid olive
#

seems like you couldn't really understand what I asked nor how loiter waypoint works, so don't bother it

#

did you test it for me?

slow jewel
#

well i never use waypoints so i guess you are right

turbid olive
#

well then don't fill the chat if you're nothing going to help

slow jewel
#

fill the chat

#

its just 1 line

#

i was thinking if it was a scripted waypoint you could use that

turbid olive
# slow jewel i was thinking if it was a scripted waypoint you could use that

Loiter waypoint has its own altitude and radius, I can select/script them with commands, and commands like flyInHeight and** flyInHeightASL** doesn't overwrite the loiter altitude. Seems like this aircraft in particular can't respect the loiter altitude. I tested it with other aircrafts and they stay in the same altitude (that selected for loitering)

slow jewel
#

what i do sometimes is, i put a marker out there and spawn the aircraft, then just have the aircraft fly around the marker by script

#

i always found waypoints to be kinda funny

turbid olive
slow jewel
#

oh i see ok

#

so thats only aircraft that don't do what you want is the F/A-181

turbid olive
#

he does loiter the waypoint, but it just doesn't stay in the altitude, and keeps getting higher... 5 minutes later you find him 5km above the loiter altitude

slow jewel
#

is the F/A-181 from a mod or is that vanilla

turbid olive
#

vanilla

#

nato jet

slow jewel
#

oh man hmmmm that funny wounder why

#

if its vanilla it should work

turbid olive
#

can't you test it out for me?

slow jewel
#

ill try let me see what i can come up with

small patrol
#

Just in case, does setWaypointLoiterAltitude help with it?

turbid olive
#

that's what I'm already using

#

the waypoint is created by script

small patrol
#

Okay, I wasn't sure you are using Eden placed or scripted one

slow jewel
#

can we see your scripted waypoint script

turbid olive
small patrol
#

As far I've tested, airplane's altitude order is not really respected by AIs . Even though haven't checked with loiter, my recent test tells they don't even respect it like a bit but somehow depends on the plane's initial altitude
#arma3_feedback_tracker message

#

Like when I spawn it in 100m, they try to stay around 100, when 50, 50... IIRC

turbid olive
small patrol
#

🤔

#

That should be something I wasn't aware

turbid olive
#

I mean, if you order them to get at 1000m, they stay between 900-1100, normal altitude fluctuation

#

but something happens with the F/A-181

#

in loiter waypoint, to be exactly

small patrol
#

You mean you can't repro it with Gryphon or Shikra?

turbid olive
#

during my tests no, but I can double check it

#

I did tests with F/A-181 and A-164 more than those others aircrafts

#

A-164 works fine

slow jewel
#

could it be that the prams line at the top should be```sqf
params [
["_plane", objNull, [objNull]],
["_loiterPos", [0,0,0], [[], [0,0,0]]],
["_loiterRadius", PIG_CAS_LoiterMinRadius, [0]],
["_loiterAltitude", PIG_CAS_LoiterAltitude, [0]]
];

turbid olive
turbid olive
#

@small patrol idk if you can see those Watch from ADT. The loiter altitude is 1500m, and I used (getPosATL var) # 2 to watch it.

  1. A-164
  2. Gryphon
  3. Shikra
  4. F/A-181

The first three are okay, maintaining the same altitude
But look at F/A-181's altitude...

small patrol
#

That's... so bizzare

slow jewel
#

wow holy

#

wounder what causing that

#

does it do it if its just a waypoint in the editer and not scripted

turbid olive
# small patrol That's... so bizzare
{deleteWaypoint _x} forEachReversed (wayPoints(group(driver cas3)));
cas3 flyInHeightASL [300,300,300]```
If I remove the loiter wp and call the command `flyInHeightASL`. He does obey and maintain the altitude (~300m) forever
slow jewel
#

hmmmmm i see

hidden crow
#

i have just come back to arma 3 exile and i used to use the 3den editor i think you needed 3den. m3 eden and exiled to use it but i cannot find them so cant alter my server as there is no sqf exporter

slow jewel
#

i: you: need: my: what are you saying

turbid olive
#

@small patrol
Going back to the F/A-181 case. So... it seems like the jet respect the loiter altitude if the loiter's radius is above 2100, literally. If I put 2101, it will respect the altitude blobdoggoshruggoogly

radiant shuttle
#

This thread got me like

#

Fascinating bug tbh 😅

radiant shuttle
#

Side note, I've been playing around with Supports and the planes love to fly in super low if you don't have the loiter at a decent altitude

#

I also think the loiter waypoint doesn't play well with support providers, because they don't return to it. Might try Cycle and see if that works better

hoary niche
#

Can someone help me? when i click y i dont see zeus

radiant shuttle
hoary niche
#

i repaired that now

#

it's working

turbid olive
#

But the main problem was the airplane getting higher in altitude while loitering, but it's just a matter of making the radius a little bigger, which is fine

radiant shuttle
#

Weird

turbid olive
#

It's really bizzare

radiant shuttle
#

Maybe at a smaller radius they fly slower and use a higher AOA to compensate for low airspeed? Could be overcompensating with the F/A-181?

turbid olive
#

another thing that I've noticed, testing with FIR airplanes, is that, they actually have a minimum radius for loitering, Idk if it's something hardcoded in some config or script or what, but they ignore if the loiter's radius is too small

#

I mean, they follow the loiter waypoint in a bigger radius and don't respond (don't change the path) if the radius is smaller

gentle vapor
#

Ok so im making a mission where you land in a heli and get into a few trucks and a car but neither me or the ai can get into the trucks and the car

radiant shuttle
gentle vapor
radiant shuttle
#

Okay, so you're supposed to be transported somewhere?

turbid olive
#

Are they in the same side?

radiant shuttle
#

That was my next question

gentle vapor
radiant shuttle
#

Have your units done anything that would make them be considered unfriendly? Like destroying buildings or killing civilians?

#

Always got a ask with Arma lol

gentle vapor
turbid olive
gentle vapor
turbid olive
#

you can check vehicle lock in the entities' attributes in editor

gentle vapor
gentle vapor
gentle vapor
turbid olive
#

if no one else helps you with that here, when I got the time I will try to write a script for you just to get you started

#

because I actually never did a script for that case, that might be interesting

gentle vapor
turbid olive
gentle vapor
turbid olive
#

start somewhere, start simple

turbid olive
gentle vapor
gentle vapor
turbid olive
#

he has a lot a useful scripts and tips

gentle vapor
radiant shuttle
#

@gentle vapor you may not need to script after all

#

Based on the third bullet, if you place the get in waypoint and sync it with a transport load waypoint for the vehicles, they should board any available space

#

Just make sure the transports are both driven by units in the same group.

gentle vapor
radiant shuttle
#

So the trucks should wait until everyone boards and then move out

radiant shuttle
#

I tried this and had issues with getting into the trucks

#

will try again later

gentle vapor
ebon forge
#

Heyo, does anyone know a way to make the circles transparent when using the "sector" module for the "Sector control" gamemode? I want to keep the markers but hide the circles that show the radius of the obj

ebon forge
#

or is there any way to edit the sector control markers once the game has started

granite basin
#

did i fuck up

#

ibought arma 3 but its dead cant find any servers ot play in is there another gamei was supposed ot buy...

plain gale
#

Wrong channel, but there are a lot of servers. Check your filter in the browser. If that doesn't help go #arma3_troubleshooting

visual wadi
#

How do i make a trigger only activates after a previous trigger has been activated (ie: go back to the infil location to trigger an exfil heli to go there, a waypoint trigger to be exact)?

edit: Nevermind, found another convenient place for an exfil area

half socket
#

how do i set up a trigger to spawn an unit after another unit hit a trigger?

plain gale
#

_this && otherTriggerWasActivated

otherTriggerWasActivated is set to true in the first trigger

ashen marsh
plain gale
#

That's even better. I should work more with triggers (...not)

storm robin
#

hey guys how do i make a task be assigned and then another task completed whenever blufor takes control over a town

buoyant bear
#

Howdy, wanna quickly ask for your opinion with something. How big of an impact you think the Interval on triggers have for server performance>
I am currently thinking of pumping it from the default 0.5 to 1s
Wondering if that helps if I have quite a few triggers within OP

Ty for help, or any additional feedback if you got time

plain gale
#

Depends on the code in the triggers.

#

Just set them to a reasonable value

radiant shuttle
agile ruin
#

Heeey

velvet atlas
#

how much of a proformance cost does a trigger actually have?

#

like just one without anything in the activation part

final hill
#

Not much by its own but add lots of triggers, scripts, AI groups, explosions, hi texture gear/vic mods and it'll add up

radiant shuttle
#

if you ask the game to do more, it will have to do more

#

Triggers don't have an enormous cost and are pretty necessary for advanced mission making. Just don't go crazy and you'll be fine

storm robin
#

when i publish a scenario from eden editor and add an image what size(px), file size, and file type does it need to buy

distant dove
#

Hi, I have a question. How can I make ai pilot enter a plane using waypoints? I tried to use "get in viecle" command but ai would just run around and than stand behind planes wing. When I use "get in" command he runs around and then tries to get into the plane but is stuck standing in front of the ladder.

distant dove
#

no, it was in vanilla game

turbid olive
#

afaik, get in wp should be attached to the vehicle to work

#

or you can call it "snap into" the vehicle when you place them in editor

ebon forge
#

Nvm just checked the mission, ignore me

rigid sorrel
#

Hello guys. How do I set a priority on objects that are on the same level please?
Here is what I mean :
I have light asphalt and short grass, I would like the light asphalt to be on top of the short grass but I can't manage to do it, grass is always taking "priority" on the asphalt

plain gale
#

What if you manually set its z value ?

#

If the grass is at 0, set the asphalt at 0.02.

#

Of course if it's some decal then that will not work

brittle summit
#

I need a lot of help

#

I guess not a lot but someone who is experienced with making zues missions

lyric rose
brittle summit
#

Sorry I’m trying to make a vanilla zues defend game mode where zues attacks defenders yada yada and I can’t for the life of me figure it out

#

I’ve tried looking things up and I give up honestly cause all of them have mods or just arnt useful

turbid olive
#

so... what is the problem?

lavish robin
#

A script is not the basis for a mission. What do you actually have and need? And how have you found yourself with a deadline for something you dont know how to do? Not really a helpful learning environment surely

tawdry sinew
#

Guys what mods should I get to make it easier to create custom scenarios? I primarily want to do AI vs AI stuff for fun

lavish robin
# runic needle I sent u dm

Can you answer the questions i asked here. I may not be able to help depending on what you want so best to let others look to

runic needle
#

The story thing

#

I have deadline, but my main problem is that i chose wrong holiday and i now dont have time to start working, the deadline is 12th of June and i have time only 7 days before the mission and i dont think that i can make it that fast so i tryna find someone who can start work that i will finish then

tawdry sinew
#

June 2026? xd

plain gale
tawdry sinew
#

Thanks!

#

How can I give civilians more dynamic behavior? Such as make them travel from "city" to "city" or wander around, flee from danger, etc. Does anyone know?

lavish robin
#

Waypoints with cycles? Lots of manual setup though. Theres some mods that do ambient civilians

#

Or scripts

tawdry sinew
#

Such as these or ?

lavish robin
#

That will work but might not be as feature heavy as you need

tawdry sinew
#

I think this is fine, thank you.

tawdry sinew
#

How can I make a group of entities from one team capture the base of another team? I've placed a "base" for "OPFOR" inside a city, and it generates random enemies around the city that guards it, but how can I make the opponent team from outside enter the city with the objective of capturing the base?

lavish robin
#

If its AI, use a trigger thats set to "captured by X". Then give your attacking group(s) a waypoint to that trigger location

#

Oh trigger needs to be an area one e.g. actually have a size, not just 0

tawdry sinew
#

I'm assuming the trigger activation should be something like this?

#

The entities that enter the city are BLUFOR

#

The trigger is inside the city

lavish robin
#

👍

lavish robin
tawdry sinew
#

What about assigning objectives to "systems", so BLUFOR base generated units would automatically have the objective to capture OPFOR base and vice versa?

#

I'm using the BLUFOR and OPFOR Site systems right now

lavish robin
#

Do you want 2 sides constantly fighting? Or something where each side has a set number of groups? Also do you want this to happen automatically? Because atm im thinking scripts but you could use zeus (gamemaster mode)

tawdry sinew
#

I would essentially like a simulation where two sides with unlimited resources but limited on capacity, constantly fight each other in random ways (nothing hardcoded like manually setting waypoints etc). They should spawn, utilize the resources around them (either randomly generated or manually placed by me) and then figure out a way to capture the opponent's base.

#

That's my long term goal at least

lavish robin
#

Ok yeah so itll be scripts im pretty sure. Is that something you think you can manage or learn?

#

Because its either scripts or mods for that i think

tawdry sinew
#

I don't mind either, but was hoping for existing tools, perhaps mods in this case

#

I have 3den enhanced

#

but that's it

lavish robin
#

Probably quicker than learning scripting tbf. Im not too familiar with eden enhanced to say if it solves your problem tbh
I can look later on when im home though maybe

tawdry sinew
#

That would be lovely. I'll look into something called "Alive" meanwhile as someone mentioned on Reddit

lavish robin
#

Just had another thought, theres a game mode called Warlords that might suit your needs
Alive is good to, might be more setup but theyll have demo missions

tawdry sinew
#

These?

lavish robin
ashen estuary
#

Why can’t I do I add MG-42 belt into my ammo

slow jewel
#

ummmmmmm

#

yeah why can't you

gentle vapor
#

hey im having problems with waypoints i think but the waypoint is on the other side of the road and the truck just gets stuck(kinda drives around) its insane

lavish robin
#

what type waypoint? how far away is the truck from the waypoint? headless client? any ai mods? any scripts running on the waypoint? usually vehicles have a larger completion radius so it should be completing a little further than its intended destination

clear ridge
gentle vapor
#

its a move waypoint and about 20 meters from the last waypoint and no ai mods

clear ridge
#

If you see in the scripting channel

lavish robin
#

no probs, will admit I did not check there, glad you got it sorted

Soviet - try changing the completion radius as a test and then try moving the waypoint 100m down the road. If it works with it smaller, hooray! if it works further down the road the try spacing them about a bit more

vital falcon
#

so, whenever i host a server from eden editor all my mission settings transfer just fine but once i transfer the mpmission .pbo to the dedicated server those settings dont apply. does anybody have any idea whats wrong?

vital falcon
#

The setting I’m targeting specifically is that ace advanced fatigue is disabled but I still have stamina

turbid olive
#

save it, and maybe restart the server after that

brittle summit
lavish robin
#

Theres a ton of info on making a mission that can get you started. A simple zeus mission would be a new scenario in the editor, place down a player, place down a game master, sync to player, done. Are you struggling with a particular part? What exactly are you trying to achieve and are not able to?

brittle summit
dull yoke
#

Question, is there any way to apply ai modules automatically or easier? (in zeus)

turbid olive
brittle summit
#

Very little

#

I made a stupid mini game once on stratis air strip

turbid olive
#

if this is a BIS gamemode, it should have modules in the editor for that, I really don't know

#

but I suggest that you start simple

#

make a simple zeus coop mission

#

learn new stuffs

#

that can indirectly help you in your future projects

worn iron
#

bit of a noob question, but how would i make AI join my squad if i enter a trigger? I want to make a mission where I start off with a squad, and there's a second group of soldiers I have to rescue from a building, and once I enter the same room that they're hiding in, they join my squad as commandable soldiers

ruby edge
#

Im looking for a mod that let me control ship objects that you can spawn in

vivid vector
#

Have you looked on the workshop?

drifting ginkgo
#

I'm making a small campaign for my friends. I have a mission where they need to retrieve secret documents, etc. and then i want that thing when they complete the mission it gives them 3 new one (SAM site, kill target, destroy target). I know how to make those destroye mission types, but i just cant figure it out whats the problem with my setup. How can i sync one mission to another to pop up after completion?

lavish robin
#

I think you can have a trigger that waits for docs to be picked up, then when true, sets another variable to true which gives them the other 3 missions. Could use tasks for it

drifting ginkgo
#

well, i figured it out (the mission assigning after completion) but the second mission is always visible on the map

lavish robin
#

whats your task setup for that look like?

drifting ginkgo
#

what do you mean?

lavish robin
#

so ive sync'd a trigger to the create task module, the task isn't visible until players enter the trigger

#

the trigger should be watching for if players have the intel or whatever your condition of choice is

#

before trigger

drifting ginkgo
#

thank you 🙏

lavish robin
#

no probs

drifting ginkgo
#

is it normal if it assigns only one mission at a time?

#

like, they both show up at the map but only one gets assigned

tough sedge
#

How do i open a file I have been working on in the editor?

lavish robin
#

Top left > scenario > open

near plume
#

Hello I have been creating a warlords game to play with friends and I want to add custom items to the Asset list for purchase in game. I would also like to continue to use the default assets, I just want to add more aircraft and drones. I have seen the example syntax to add to the description.ext on bohemia website but I can't get it to work

lavish robin
#

can we get some more info

  • what are you trying to add?
  • is it the greyed out stuff or is it stuff thats not showing?
  • do you have a cost for your asset? does it require an airfield or something?
    Ive only ever made a handful of warlords missions and never with custom assets so im just thinking of what could've been missed based on a quick scan of the docs
near plume
#

I want to add UAV drones to each teams aircraft menu. The greyed out stuff is already in the default warlords game I just couldn't afford to buy it with CP when I took the screenshot so it's showing grey The asset has a cost and requires an airfield; I am using the syntax from the bohemia website in my description.ext file

#

When I load the mission I get this error:

fossil urchin
#

Post your whole config, if that (in pic) is full, there is missing closing bracket's

near plume
#

That's all I have so far I wanted to test each item individually first so I know I can get it working. I am new to the arma 3 editor so I'm not sure where closing brackets would go. I just copied the format from bohemia website. I have the asset list in the warlords init set to A3default and MyWLAssetList, is it possible to use 2 asset lists like this?

turbid olive
plain gale
#

If you want multiple assets lists the format would be ["List1", "List2"] but I am not sure that's possible at all. You need to try that.

wraith saddle
#

Hello!
I'm trying to make a mission where my players respawn inside a building I placed down, and ive realized that I have no idea how to do this because the respawn module always places them outside of the building or on the roof. How do I fix this?

lavish robin
#

I think that might be an arma-ism? Ive seen it happen with some buildings but not with others. Could test it with something like a hangar that has a much higher ceiling to confirm? also make sure its in the biggest room in the building?

As a dirty workaround, could put the spawn point down in a trigger area then set the player position to an object in the building when its triggered so they're 'teleported' inside

#

or, place down playable units and take respawnOnStart out of your description.ext, think that spawns people where the units are

near plume
#

Thank you guys for the help I was able to get both of my asset lists to work and added drones to my mission!!

wild quest
#

Im trying to make AI in arma move to a waypoint while being shot at. What script do I put in them?

lavish robin
open pier
#

why does this happen, my character spawns in the corner of the map and dies instantly

open pier
#

didnt fix the issue with spawning in the corner of the map

turbid olive
#

what spawning option do you have?

open pier
turbid olive
open pier
#

modules

turbid olive
#

did you put respawnOnStart = 0 in the file description.ext?

open pier
#

honestly i couldnt find description.ext

turbid olive
turbid olive
open pier
#

ight, i will try

#

it works but only to spawn in, if i die and respawn the same thing happens

#

it fixed itself, but i cant select spawn point

turbid olive
open pier
#

i also cant force respawn

turbid olive
open pier
#

ight

turbid olive
# open pier ight

put respawnButton = 1; in your description.ext and check if the respawn buttons works after that (reload your mission). Don't forget to add ; after the last code line

open pier
#

i can respawn but it doesnt find my spawnpoints

#

i changed to markers

turbid olive
open pier
harsh wyvern
#

Hello!

I'm looking for a module or mod of some kind that I can sync an single AI Heli/Jet unit to so that when the vehicle is disabled or destroyed it will respawn within a X amount of time.

turbid olive
harsh wyvern
# turbid olive search for respawn module in the editor itself

Right there is a module to spawn AI; however, I don't have as much control over it.

For instance, I tried syncing helicopter pilots and a Blackfoot in addition to editing the parameters of the module itself: limiting the group size to 2, and vehicle size to 1.

But the AI and the helicopter never spawn.

I remember years ago, I had a module where I could sync the AI in a vehicle (Jet, Heli, or Tank etc.) and it would respawn in the position after a X amount of time once the vehicle was disabled or destroyed. Pulling my hair out because I can't find it in the workshop...

turbid olive
harsh wyvern
# turbid olive I really don't know what you want to achieve, but seems like a simple vehicle re...

Not quiet. I want something a bit more advanced than that. I want to respawn specific Helicopters and Jets with their AI crew.

The only AI respawn module I see is:

"Spawn AI". Are we talking about the same module? It's a weighted spawn module between Inf., Mot., Mech., and Arm.. I can set the weight between these from 1-10, limit the # vehicles/units in each group spawn, I can limit the # of units spawned, and I can blacklist groups. That great! The problem is, I can't control "Heli or Jet spawns w/ AI INSIDE" using this vanilla module.

turbid olive
turbid olive
brisk fog
#

How do I disable arma's default weather system in my scenario? I want my overcast and fog to be fixed, but on dedicated server the mission starts off with no fog, eventually reaches the desired fog, and then the overcast+fog changes itself as time progresses.

The forceWeatherChange wiki mentions a "Manual Control" setting in the "intel section", but I can't find either of those, just Manual Override checkboxes for Rain, Lightning, Waves, and Wind.

turbid olive
brisk fog
#

yup, the fog start and forecast already match each other:

brisk fog
#

hmm, seems like a workaround is editing the mission.sqm to crank up the time until next weather change by multiple ingame days:

#

it resets to one ingame hour after using the zeus weather module, but good enough blobdoggoshruggoogly

turbid olive
ionic herald
#

guys how can I set AI char names?
I fill the "NAME" line in the attributes tab, but once the scenario launches, my AI squad members have some randomized names in the bottom squad bar...

quick forum
#

Has anyone had an issue where attaching props to a game logic seems to shift their position upwards about 10 minutes when attached then scaled but only dedicated servers?

#

which has been mysteriously solved by placing said game logic actually on the floor GG

surreal belfry
fossil urchin
# quick forum Has anyone had an issue where attaching props to a game logic seems to shift the...

maybe this?
Changing the direction of the object (e.g. using setDir, setVectorDir, etc.) will reset the object back to its original size (probably because the engine normalises the directions, thus the scale in the transformation matrix becomes 1),
so those commands should be run before resizing the object.
and ->

_localSimpleObject setObjectScale 0.1; // once is enough as long as it is not moved

so if your object moves, you will counter some unexpected behaviour

maiden marsh
#

Is it possible for me to take the Western Sahara scenario mission "Extraction" and customize it in editor?

small patrol
#

No

#

We don't intend to release it anyhow

surreal belfry
# quick forum Has anyone had an issue where attaching props to a game logic seems to shift the...

What you can do is to position and rotate the logic object first, then attach the prop to it. The prop will then copy the rotation and position of the logic. You may try to scale the object after these commands.

_logic setPosATL _yourPos; //Or place it manually in Eden.
_logic setDir _yourDir;
_logic setVectorUp _yourVectorUp;
_prop attachTo [_logic, _yourRelativePos];

I assume you may encounter issues in the case of multiplayer and late-joining players, who may not have the object automatically re-scaled on their local machines.

https://community.bistudio.com/wiki/setObjectScale#Examples

sinful zenith
quick forum
#

Guys I love the help, the message directly after says I fixed it by just putting the game logic on the ground

#

Also just use BIS_fnc_attachToRelative :)

boreal patrol
#

Does anyone know how to make a custom chat channel in game that only allows certain people to see and chat in it?

modern parcel
#

if i have 3 trucks of 12 man infantry squads and 1 mrap with the plt lead in it and i want them to travel in a convoy should i group everything together or keep the groups separate

modern parcel
#

why do the ai jus decide to jump out of the trucks at spawn

floral bloom
#

Hi, is there an EDEN mod or other solution that doesn't require scripting in all sorts of text files, such as init.sqf, description.ext?

plain gale
#

You can use the scenario attribute.

#

But that still requires writing scripts.

#

What exactly do you wanna do?

fossil urchin
#

Just let r3vo know, he will add that to 3den enchanted 😁

plain gale
#

I haven't managed to enchant it yet, but I am working on it.

floral bloom
quick forum
#

I dont think there is a proper scriptless way of doing that, but you can do it through triggers rather than files

woeful pike
#

Hey guys, does anyone know what is the best way to use scripts/triggers/functions to make a two-person Mk6 Mortar Team defend their own position using the mortar? Trying to setup a defensive mortar team for a base composition I'm building

vernal arrow
# modern parcel if i have 3 trucks of 12 man infantry squads and 1 mrap with the plt lead in it ...

I wish I remembered his handle so I could tag him, but someone was just working on a convoy script and got it working it sounded like. It was a couple weeks ago. You can script the ai or use 3den for them to not disembark until a certain point in the mission. Also, I would ungroup the drivers and maybe set them to careless until you reach maybe a certain point where you want them to be able to avoid/engage enemy

modern parcel
vernal arrow
#

You can try it out. Im interested if you figure out a good way. Like I said, I’d ungroup the drivers from the rest of the ai, and set them to careless, as the commanders, etc. can call out enemy and make them travel off road. Maybe change their max speed to all the same as well, but not necessarily. I havnt messed with working convoys too much. What your saying you want to do sounds easy enough

fast jacinth
#

How do i setup one of my server slots to have zeus when they are loaded into the game

#

looked up every video and it doesnt work

fossil urchin
fast jacinth
turbid olive
fast jacinth
#

okay one sec

#

also i’ve changed the difficulty and other stuff like disabling the crosshair and it doesn’t want to save it to my server

#

and i’m making sure im updating my mpmissions

turbid olive
#

and how are you updating the mission into the mpmission folder? steps

#

have you checked with another stuff, like adding another slot, to see if your mission is updating?

fast jacinth
#

I figured it out, the mod zeus enhanced was interfering with the zeus game master

trail matrix
#

Lost a mod that gave me a "Sector" module that had the option of hiding/showing objects/units based on the perimeter of the module, and repeatable. Anyone have a clue what I'm referencing? Been searching for a while and no dice unfortunately.

trail matrix
#

It was Eden 2.0 lol

#

For what it's worth this has been a "problem" for me for like three months, can't believe it was that simple

#

It's honestly way handier than the show/hide module + triggers, like much much handier. 1 stop shop for that whole operation

turbid olive
trail matrix
#

This is basically show/hide + trigger in one module

#

You set a perimeter, connect units or layers to it, you can make it repeatable, and it's perimeter dependant

#

Very handy

#

I never got very good with scripting and this was something that I used to glue together a ton of single player scenarios

uncut nova
#

I spawned this KA-50 and it doesn't show up at all in Zeus or even 3DEN. Also, the only way to spawn it is from the Virtual Garage or from the console. I can't find it anywhere in the search bar for 3DEN. I checked BLUFOR, REDFOR, etc and it just doesnt appear at all in the editor. Could it be a problem from me or is the mod not built to be shown in the editor? This also happens with other modded vehicles. Thanks

turbid olive
uncut nova
uncut nova
turbid olive
uncut nova
turbid olive
#

what mod is this?

uncut nova
#

Ka-50 "Black Shark" by Mayess

#

its not only this mod too, other armored vehicles have the same issue

uncut nova
#

i dont know the exact name, i can look for it though

#

i can only spawn it from Virtual Garage and it doesnt appear anywhere else

turbid olive
uncut nova
# turbid olive

for me it was not there for some reason, but i fixed it, i was typing KA-50 instead of Ka50, my mistake, thank you

turbid olive
#

really? notlikemeow

turbid olive
uncut nova
turbid olive
uncut nova
#

no

turbid olive
#

so...

#

well, glad that it's solved

uncut nova
#

thank you, my mistake

grave yarrow
#

does anyone else also having this?

#

Origin and mesh were aligned when I first made the mission but for some reason sometimes it just messes like this

#

like I was able to put this on the table with no issues but when I relaunch the mission or play it somehow either origin point or the mesh just moves

barren mural
#

I'm tryna make a custom faction w custom soldiers and vehicle and other stuff so then I could start a simulation vs oppfor can someone help

lavish robin
granite notch
#

Looking back at the Vidda Legacy Mod, does anyone know where I can find some of these airport props used on the runway seen in this image?

whole rampart
devout laurel
#

My editor mysteriously stopped working.

#

Please help

lavish robin
#

going need way more info than stopped working
are you running modded? have you tried without mods?

devout laurel
#

Send me a reply

devout laurel
#

Yeah the mods stopped working. I don

#

't care about the default game really

#

I was into the ww2 mod and the vietnam one. official.

#

Expansion

lavish robin
devout laurel
#

I don't know what that means.

#

I played the game for 6 hours, then the editor stopped working it seems.

lavish robin
# devout laurel 't care about the default game really

that was in reply to someone else so dw

doesnt matter whether you care or not tbh, its more about proving if its your game or the mods that are causing problems
does it break consistently? what do you do to reproduce it?

#

how does it 'not work'?

devout laurel
#

The list in the lefthand side can't be pressed. It's dull colored indicating it can't be used...

#

For example when I launch the ww2 expansion, the US army appears to be missing

#

Theres only SS and Wermacht

#

It was working fine

#

Then I started playing cs2 really competetively and didn't touch Arma 3 again. Went back in and theres problems.

#

I reinstalled the game and its the same problem

#

I need help. Want it running again. That's the goal

#

My custom missions disappeared.

#

I'm a huge Arma fan...

#

I'm willing to work on the problem. I'd like to play it again.

lavish robin
#

ok, slow your roll

devout laurel
#

The expansions are under DLC

#

Here, i'm gonna try and launch Spearhead 1944

#

This is different. It's not longer working and this is what changed

lavish robin
#

left is grey because theres nothing placed, place any unit and the left menu will be usable
the right side looks fine, US units are under the independent section (the green square)

devout laurel
#

Oh

#

Why did my missions disappear?

#

Now the Germans speak german...

#

.maybe before is was glitched...

#

Thanks. Maybe nothings wrong

lavish robin
#

no problem, it looks ok
with regards to your mission, you need to make sure you save it - then you can go into the top left and open it again when you want to play or make changes

devout laurel
#

I have another question @lavish robin

How do I get the weapon to float around, like arma 1? Is that a feature in arma 3?

#

Oh i got it

surreal belfry
# granite notch Looking back at the Vidda Legacy Mod, does anyone know where I can find some of ...

Most of the structures, I think, are from the base Arma 3 (Altis, Stratis, Malden), maybe Tanoa or Livonia, like the hangars on the left, the red striped poles, the radar, the blue buildings on the right and the green walls. But those small lights and decals on the runway are probably specific to the mod and not exposed for use in the Eden editor. Just search inside the airport and industrial folders of the mentioned islands via the assets tab on the right side of the editor.

crude blaze
#

Hey guys, not sure if this is the correct channel but i got a question for ace medical. I´d like to make the system as simple as possible as i have a few newbies on their first mission with ace. They will be quite overwhelmed anyway. My idea was to allow the PAK anytime, but i cant find a setting to allow the pak even if the target isn´t stable (basically i would like a system like vanilla, where medics can heal anytime). Any idea how i can get there?

buoyant bear
#

Howdy, Howdy.
Got question since you might know more about SOG modules. The Terrain Tunnel Entrance module at the official SOG map. How can you use it so it does not flick to night when entering?
I am thinking of hand placing the units & scripting tp there but wanna save time wiht the module when setting up OP.

lavish robin
crude blaze
lavish robin
#

yeah i think I've only seen it with a stitch kit where you can stitch people that aren't stable, never see anyone be able to PAK anyone that isn't stable though

crude blaze
#

Yeah google didnt turn up with anything usefull either. Thanks for the time invested. I guess it´s gotta be a tough crash course for my fellow gamers 😄

ashen zenith
#

Is There Anyway To make a Plane Drop Some Crates Out at a Certain Position Via Airdrop?

crude blaze
#

yep

#

give me a sec

#

sorry mate, the script i wrote has a lot of mission specific variables. Didn´t remember correctly. And it drops vehicles not crates. my bad.

granite notch
#

So I'm not sure if you noticed but the aircraft keeps drifting or sliding across the terrain and I'm not doing anything, does anyone know how to fix this?

lavish robin
dark gust
#

Is there some way to use triggers/ just use the eden enhanced and ace to create medevac vehicles and units that dispatch to wounded units, load them into the ground or air vehicle, then move back to a medical base?

#

I should add that i want ai to do this for wounded player or ai units

lavish robin
#

I think it might complicated to do with triggers if you can. I'd simplify it by having several triggers that are medevac points - when a player enters, dispatch the ambulance to that trigger. Upon arriving, 'hoover up' any players that are ace unconscious then drive back, heal, then move back to evac point

#

i think it'd require some scripting knowledge regardless

dark gust
#

How would I go about getting the injured units into the ambulance?

lavish robin
#

I would do a waypoint script that says "find me all the unconscious players in a radius and move them into an empty seat that isn't the driver"
probz need to do something a bit more robust like count the number of casualties vs number of available seats then work out if you need to make an extra trip but that could come later

#

get it working with one casualty first

vestal perch
#

looks like one of the super big ones

#

those suffer from coordinate precision issues due to the size

#

so I would guess its that

final hill
turbid olive
#

killing them all

#

find their hideouts

granite notch
# vestal perch what map is it?

The map is called PMC Hormuz Province - Iran and yea it's one of the really big maps, is there no fix to this, I've played on South Asia map and never experienced this before and thats a large map as well

astral vector
#

Who wants to create a Appcalypse Scenario with me? DM me please.

zealous salmon
#

Hey guys is there anyone here that enjoys curating operations?

grand trout
#

I made a Sandbox mission for me and my friends. How do I make it so that only Admin can go into Zeus? As in, a player becoming Zeus, not a reserved Zeus slot.

velvet compass
#

Anyone know of a way to place fake/prop explosives in editor? I was hoping for the explosive model without the actual explosion or mine detector part

velvet compass
#

disabling simulation still seemed to make mine detectors beep

lavish robin
proven grove
#

Yes, put #adminLogged in the zeus module

honest mason
#

does anyone know a way to more conveniently create ACE arsenal selections? Having to do things in this mini window is driving me crazy

plain gale
#

You can use the 3den Enhanced Inventory editor and export the stuff as ACE Arsenal Code

ashen lagoon
#

is there any way to clip through the ground and into mountains with 3den?

ashen lagoon
lavish robin
ashen lagoon
lavish robin
#

what for

#

I dont think there is? Ive seen ACE do it but i think they attach stuff at like Z -100 or something

#

in which case, you wont be able to move

#

but what are you trying to achieve?

proven grove
#

You can make an object a simple object, makes it treated basically like a map object

ashen lagoon
lavish robin
#

ive done this in the past through a teleport - place an 'entrance' and either have a trigger or an actual object with an add action that teleports you to an interior you build somewhere else on the map

#

alternatively, use deformer to build a hole and then cover it back up with rocks etc

signal reef
#

Hey everyone!

My friend and I play Antistasi Ultimate together on a locally hosted server (we use the “Host Server” option in the Arma 3 menu). I’m trying to customize our starting base a bit, like adding some furniture and small props for immersion.

I tried placing objects using the mod Echo's Sandbox Everywhere, which lets me use Zeus in any mission. It works during the session, but the objects disappear after restarting the server.

Then I tried using Eden Editor, but when I save the mission from there, it creates a totally separate mission file, not the actual Antistasi Ultimate map we’re playing on.

So my question is:
Is there a proper way to edit or customize the actual Antistasi Ultimate mission map (like placing furniture at HQ) and have it persist across server restarts?

Any advice or guidance would be super appreciated. Thanks in advance!

dark gust
#

Is there a way to force ai to stay in a vehicle?

keen gate
signal reef
keen gate
signal reef
turbid olive
#

you should ask this in their discord (antistasi)

signal reef
signal reef
rotund eagle
#

Hello,. I wonder if anyone can help me. I've tried googling this and found various answers but none of them appear to work or are confusing. Essentially, I am creating a SP mission. I have a cycle waypoint setup for a patrol. At some of the waypoints I have Radio Chatter sounds which play. However I as the player won't be there at those points and so I only want them to play locally/within a specific radius, otherwise it breaks the immersion, etc.

my questions are:

  1. What do I need to put in the trigger after I've selected the sound from the drop-down, in order for it to only play within the vicinity of the waypoint? (I've tried also doing it with a trigger and it still plays out for me regardless of where I am on the map)

  2. Is there a way to find the full list of sounds which the game picks up (vanilla, modded, etc) so I can get the full file names?

Thank you in advance!

keen gate
# rotund eagle Hello,. I wonder if anyone can help me. I've tried googling this and found vario...

Setting up custom sounds in your mission. Single and multiplayer compatible.

Mission Download Link For Sample Mission
https://drive.google.com/file/d/1Il6Xi6W42CFJRt7Hy9MGRv03_8PzOigv/view?usp=sharing

Please like, share and subscribe! Remember to hit that bell icon to be notified of new content which is posted weekly!

Questions or comments...

▶ Play video
rotund eagle
keen gate
rotund eagle
#

I'm having a look now - Is this purely custom sounds or is it sounds already picked up by the game in either vanilla or mods? There are some RHS radio chatters I want to use, so I don't have the individual sound files to-hand as they're already loaded into the game, if that makes sense.

keen gate
rotund eagle
#

thanks, I'll take a look and revert if I have any further questions

#

Okay so the video seems to refer to sounds that I would import into the game world.

The game already has the sounds I want to use (vanilla and mods I’ve loaded). I only want to use these existing sounds to play with a radius/vicinity of whomever is nearby.

Is there not a single line I can add to the waypoint or a trigger that indicates the sound name, and then only plays it within, say, 10 meters of the point?

keen gate
#

It should give you Idea where to look.
About rhs music location, you might need to google or extract pbo file and find where its located.

rotund eagle
#

I have got Playsound3D working without any other coding required so if I can identify sound file paths I’m good to go

keen gate
#

I have checked now

#

all works after I extracted Radio pbo in rhs

#

"@RHSAFRF\addons\rhs_s_radio.pbo\rc\rus_rc_35.ogg"

#

I tested in local host now, should work in MP too.

#

C:\Program Files (x86)\Steam\steamapps\common\Arma 3!Workshop@RHSAFRF\addons\rhs_s_radio\rc

rotund eagle
#

Thank you, so would I need to manually find the sound files by searching around the many pbo files I have across my mods? Is there not a way to browser all sounds that the game can currently load/“see”?

keen gate
rotund eagle
#

I have the file names as when you hover over the sound names on triggers and waypoints they show. But there is no extension, and there is no filepath available. I couldn’t find a mod that offers it (not in the editor, anyway)

sudden veldt
#

How can I setup a squad in a static position at the start of a scenario, then give them a trigger which activates a move waypoint? I roughly know how to do the last part, but I can't figure out how to keep them stationary till that trigger goes off.

rotund eagle
#

I imagine this will be a manual “pbo manager search for file” job

rotund eagle
keen gate
rotund eagle
keen gate
rotund eagle
rotund eagle
#

I’d send a screengrab but its not allowing me

keen gate
rotund eagle
#

Cheers. Will add you now

rotund eagle
keen gate
# sudden veldt How can I setup a squad in a static position at the start of a scenario, then gi...

You should be able to find usefull info here. just check his playlist.
https://www.youtube.com/watch?v=wek5CTTQFvc&list=PLBm1dGchyyAaayguh8tdKuMB03cx3QTcL&index=2

Setting up custom sounds in your mission. Single and multiplayer compatible.

Mission Download Link For Sample Mission
https://drive.google.com/file/d/1Il6Xi6W42CFJRt7Hy9MGRv03_8PzOigv/view?usp=sharing

Please like, share and subscribe! Remember to hit that bell icon to be notified of new content which is posted weekly!

Questions or comments...

▶ Play video
rotund eagle
#

Hi all - So the fix which I'm using is as follows:

  1. Add the following to the activation of a trigger or a waypoint, specifcally for modded sounds.

playSound3D ['rhsafrf\addons\rhs_s_radio\rc\rus_rc_02.wss', RT, false, getposasl RT, 2, 1, 50, 0, false]

https://community.bistudio.com/wiki/playSound3D This explains what each element is, and 'RT' is what I've called the AI soldier who will be the 'source' of the sound... i.e. as he moves the sound will follow him ... and it will only be audible to me as a player if I'm within 50ft/meters of the them.

Strangely, if I use the exact string above and instead of ' I put " then vanilla sounds work absolutely fine. Bit of a quirk, but then I may have done something wrong anyway...

In order to find the file path of an sound effect really easily, I used the mod: Sound Board 2.0 as Zeus, allowed it to find all sounds in the game. Once it has, you can browse to the one you like and it auto completes the full playsound3d string which you can then customise as per above!

Special thanks to @keen gate for helping me with this and taking me through some steps, really supportive!

astral vector
#

Who’s tryna create some scenarios?

prisma oyster
#

Scenario creators, usually

sudden veldt
#

I know I've seen an Orbital strike support option, does anyone know where I could find it? Looking for a Star Wars esque Orbital barrage, and if possible a way to make a task to capture a target too, if at all possible.

harsh rune
#

how do i fix it where can I spawn units using zeus on 3den editor it wont let me put units in

fossil urchin
sudden veldt
#

If I want an objective to capture a VIP, I can do this with ACE capture, then have a trigger that fires on that unit ID's presence at an extract point, right?

sudden veldt
#

And if I wanted to have a task that requires charges be set at a certain point, how would I setup the trigger code to sense the presence of the charges?

fossil urchin
sudden veldt
#

How about forcing a helicopter to land and stay landed? I want it to disembark troops for security, but it's the extraction helo, so I want it to stay on the ground for the end of the mission. I tried adding a timer to the land waypoint, but it still takes back off after unloading like half of the troops it's supposed to offload

sudden veldt
#

I might need some help with the exact coding on the inArea deal, I haven't used it yet, but it's perfect that I can use it for both those objectives

sudden veldt
#

I am using modded charges, so unsure if that's affecting it

fossil urchin
fossil urchin
sudden veldt
#

It's not liking it, I'll try with standard charges, see if that works

sudden veldt
#

and yeah, no joy with default demo blocks

#

I'm also having trouble parsing the command to repurpose it to check for the VIP

fossil urchin
#

Now i need open arma and test out correct syntax

sudden veldt
#

I appreciate the help. I'm headed to bed for now, but I'll check replies when I get up, give it a shot either when I wake up or after owrk tomorrow, depending

fossil urchin
#

normal c4 charge

#

so you can get if your "charge" is detected in allMines,

allMines apply {typeOf _x}

If it return empty array, we need check something else rather allMines command

#

or from inventoy and arm charge

{typeof _x == "DemoCharge_Remote_Ammo"} count (allMines inAreaArray trigger1) >= 1
snow quiver
#

From this I take it that I shoudn't start work on custom attributes yet? I lookedat it the first week when it went onto dev branch, but seemed way more trouble than it's worth.

slow jewel
#

that looks cool @fossil urchin

sudden veldt
fossil urchin
#

Change trigger1 to thisTrigger,
Or name your trigger variable to trigger1

#

And you don't need apply part, it was just debug for which is correct class name for your charge

#

If you open console and debug with

allmines apply {typeOf _x}

On the watch list you will get correct type of your charge

fossil urchin
#

If you are in SP mode,
Deploy your charge,
Then press esc and you can add to watchlist below console code allMines apply {typeOf _x}
And you should see type of your deployed charge.
Then add in condition of trigger,

{typeof _x == "your_charge_type"} count (allMines inAreaArray thisTrigger) > 0
sudden veldt
sudden veldt
#

Can I set the end trigger to rely on two triggers somehow? I expect so, I just don't know how I'd add the second trigger variable

sudden veldt
#

I'm also struggleing still to get a helo to land and stay landed without the pilots disembarking. It wants to land, offload like half the units I want it to before it takes back off anf hovers

turbid olive
#

and to unload half of the units you can use the same logic for the count command that Prisoner sent here, plus some command to make units get out

sudden veldt
#

I do want them ALL to unload, I gave them all Get Out waypoints, it's just the helo not staying landed that is the problem as some will still dismebark as it's taking back off

#

Do I try and put this code into the land waypoint, or into a trigger at the location I want or something?

#

Or the invisible helipad I supose, that works as the position to land at at least

quaint sorrel
#

Custom attributes are working, but there's a problem with saving that custom attribute.

#

If you do not touch it, it won't save, not even the default value

#

Checkboxstate control disables all the other attributes in that category, so you would think it also disables the saving of that attributes (so it won't be applied) but it's not working that way

#

little problems like this

#

But if you have a plan doing some addon, I think it's safe to start it. You will be amazed how awesome 3DEN is

woven crystal
fossil urchin
#

Doest work.
SystemChat doest show up even condition is true (checked with allmines count..)

woven crystal
# fossil urchin

Anybody, not any player - as the mine is not a player, but an object.

#

And remove the this && part, as that's no longer relevant

fossil urchin
woven crystal
#

What happens if this is set as condition?
( thisList findIf {typeOf _x == "DemoCharge_Remote_Ammo" } > 0 )

fossil urchin
#

Tested that earlier, doest work.

woven crystal
#

Ooh, this:

( thisList findIf {typeOf _x == "DemoCharge_Remote_Ammo" } >= 0 ) had to be >= 0 because it returns -1 if it can't find it, but will return the index otherwise (which might be 0)

fossil urchin
#

noup, doenst work.

#

ThisList just not return objects
thisList
Defines an array of objects that have been detected by the trigger (same as what is returned by the list command).
->
https://community.bistudio.com/wiki/list

-->

list trigger1
//[B Alpha 1-1:1 (prisoner)]
allMissionObjects "" inAreaArray trigger1 select {typeOf _x == "DemoCharge_Remote_Ammo"}
//[163977: c4_charge_small.p3d DemoCharge_Remote_Ammo,163991: c4_charge_small.p3d DemoCharge_Remote_Ammo]
sudden veldt
#

_LAAT landAt [Evac, "Land"];

#

That's the code I got to not throw an error at me, put into the OnActivation field of the trigger

#

Unless it's grumpy it has a land waypoint AND the land command in the trigger

#

Of course removing the land waypoint didn't even let it take off when the trigger fired

#

Tried swapping land for move, it landed in the area fine, but still won't stay grounded

#

I even tried changing it to _LAAT landAt [Evac, "GetIn", 500]; and still it doesn't stay grounded long

sudden veldt
#

I'm also now trying to futz with the typeOf to get the name of a deployed turret so I can check a trigger area for one, but I can't imagine what I'd put instead of allMines

#

Well allTurrets would have been just too easy, so of course that doesn't work

fossil urchin
sudden veldt
#

Pretty much, I included some folded turrets that are in the backpack slot, I want a task that checks for the deployed version of the turret in a trigger area. I thought I'd be able to adapt that mine code since they are similarly deployable items that I assume don't have the same name when deployed as in inventory

#

in this instance, 3AS Heavy Repeater

sudden veldt
#

Okay so I switched the LAAT type I used and now it's landing fine which is weird, but okay. It might be worth it since it's the light version, but I don't know how to make it use those spotlamps, and it does cut the engines on landing, which I'd prefer it didn't

dry dawn
#

Anyone know any mods that adds debris sound effects? Like dirt falling/raining on top of you after an explosion nearby, or building destruction sounds kind of thing

dim kindle
#

Hello, is there any mod you can recommend for me? You can DM me.

turbid olive
dim kindle
terse anvil
#

Hey everyone, anyone have any tips for an amphibious vehicle convoy or mod suggestions? Damn things keep going all over the place so I cant get a proper beach landing setup.

wispy marsh
#

i may be on the wrong channel here for support but is there a character rig available here? because im making myself my own uniform and gear to port to arma 3 and i cant seem to find any good resources online.

lethal pulsar
# wispy marsh i may be on the wrong channel here for support but is there a character rig avai...

ArmaRig is the only one I know of: https://www.moddb.com/games/arma-3/downloads/armarig
There's the Arma 3 samples as well, but I don't think there's a rigged sample
The sample ArmaMan is probably still useful
You'll probably want one of the blender addons as well https://github.com/AlwarrenSidh/ArmAToolbox or https://extensions.blender.org/add-ons/arma3objectbuilder/
There was another rtm tool around, don't remember what it was called

(Would have been a better question for #arma3_animation or #arma3_model)