Posted: . At: 10:06 AM. This was 5 years ago. Post ID: 13145
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.


How to spawn items in Arma 3 that are not available in EDEN.


Spawning items in Arma 3 can be annoying if they are set to scope = 1; and are not available in the editor to place. But if you know the classname, they can be placed easily.

Use this code to spawn them. Run this in the debug console in EDEN editor.

create3DENEntity ["Object", "Land_Communication_anchor_F", screenToWorld [0.5,0.5]];

This will spawn the object at the cursor location. Then just move it around as normal, just as you would with any other item.

The end result, spawning an object in EDEN editor that is otherwise not available.
The end result, spawning an object in EDEN editor that is otherwise not available.

This is a very nice Arma 3 trick, this makes it easier to make a mission, and extra objects are desired.

Use this command to get a list of all selected objects in the editor.

(get3DENSelected "object");

This is the output I got with the tower selected.

[78aa643580# 1781171: communication_f.p3d,790290e080# 1781172: communication_anchor_f.p3d,77bf6ed600# 1781173: communication_anchor_f.p3d,78a9014100# 1781174: communication_anchor_f.p3d,7917a7eb00# 1781175: communication_anchor_f.p3d]

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.