Drokz Posted March 26, 2017 Report Share Posted March 26, 2017 Download E3DEN Editor from workshop (https://steamcommunity.com/sharedfiles/filedetails/?id=630702051) and enable it in your Mods. Start the game, open editor and select the Map you want to add buildings at. Place all the stuff you want to add and save your project from time to time. Create a file called buildings.sqf (just an example you can name it as you like). Open it and get back into editor. Click tools and press Save project as SQF. Your map addons are now copied to clipboard. Open the buildings.sqf and insert the code with ctrl+v. Save it and close. Open your mission file (epoch.Altis for example, you need a tool like pbo manager to do that), create a folder named addons if you dont have already, create another one called mapaddons inside of addons folder. Place the buildings.sqf in this folder. Now open your init.sqf or create it in the mission root folder if you dont have one and insert the following code: if (isserver) then { [] execVM "addons\mapaddons\buildings.sqf"; }; Save, repbo and upload. This should add all the stuff you created in the Editor to your map. To add more, you can just create a second one for other map stuff by create a new buildings2.sqf with your other buildings and call them like this if (isserver) then { [] execVM "addons\mapaddons\buildings.sqf"; [] execVM "addons\mapaddons\buildings2.sqf"; }; Or just edit your old project and overwrite the buildings.sqf Hope this helps Link to comment Share on other sites More sharing options...
Drokz Posted March 26, 2017 Author Report Share Posted March 26, 2017 Another method to do it by He-Man can be found here: This method doesnt need E3DEN Link to comment Share on other sites More sharing options...
He-Man Posted March 26, 2017 Report Share Posted March 26, 2017 Then please also link to the original post ;) Drokz 1 Link to comment Share on other sites More sharing options...
Drokz Posted March 26, 2017 Author Report Share Posted March 26, 2017 Sry! Didnt know how to link single posts :) Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now