Arma 3
[COOP 1-10] Altis Fortress
This topic has been locked
Dr. Diesel Submarine  [developer] 14 Jan, 2015 @ 4:18am
How to add custom objects
Hello everyone!

In this topic I will explain how to add YOUR objects into build menu.
For example you can add objects from addons.

You must be either server admin or logged in admin (if dedicated)
Press ESC and put this into debug console :

FS_FORTIFICATIONS pushBack "New_object_class"
FS_OTHERSTUFF pushBack "New_object_class"


...after that hit the "Global execution" button. Now every connected player will be able to choose this object from Build menu (binded on Right ALT).

Please use FS_FORTIFICATIONS array only for adding fortifications and buildings and use FS_OTHERSTUFF array for everything else.

There is also alternate commands which do the same

FS_FORTIFICATIONS = FS_FORTIFICATIONS + ["New_class1", "New_class2"]
FS_OTHERSTUFF = FS_OTHERSTUFF + ["New_class1", "New_class2"]

Last edited by Dr. Diesel Submarine; 14 Jan, 2015 @ 8:26pm