Jump to content
  • 0

What would make my custom buildings call from 2 locations?


Zombiesgonewild1

Question

10 answers to this question

Recommended Posts

  • 0

 []execVM "buildings\airfield.sqf" is missing a ; at the end of the line.

 

Correct version:

 

 []execVM "buildings\airfield.sqf";

 

I recommend calling it from the server_functions.sqf. (.../@DayZ_Epoch/addons/dayz_server.pbo)

 

Unpack the pbo and go to ../dayz_server/init/server_functions.sqf.

 

Scroll down and add the following line:

 

execVM "your path\name.sqf";

 

Example:

execVM "\z\addons\dayz_server\Maps\neaf.sqf";

Link to comment
Share on other sites

  • 0

assuming you have your custom compiles setup correctly ; 

progressLoadingScreen 0.4;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf";                         //Compile regular functions
progressLoadingScreen 0.5;
call compile preprocessFileLineNumbers "server_traders.sqf";                            //Compile trader configs
call compile preprocessFileLineNumbers "custom\compiles.sqf"; //Compile custom compiles
progressLoadingScreen 1.0;

to

progressLoadingScreen 0.4;
call compile preprocessFileLineNumbers "custom\compiles.sqf"; //Compile custom compiles
progressLoadingScreen 0.5;
call compile preprocessFileLineNumbers "server_traders.sqf";  //Compile trader configs
progressLoadingScreen 1.0;
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...