Jump to content
  • 0

Mission PBO init help


SilverWind252

Question

How do I go about adding these too the same line without getting this error? Codes in question

[] execVM "admintools\Activate.sqf"; [] evecVM "custom\buildings\3cities.sqf"; [] evecVM "custom\buildings\balota.sqf"; [] evecVM "custom\buildings\basebor.sqf"; [] evecVM "custom\buildings\basedichina.sqf"; [] evecVM "custom\buildings\basenovy.sqf"; [] evecVM "custom\buildings\GOC_LM_tubf.sqf"; [] evecVM "custom\buildings\GOC_LM_wlcr.sqf"; [] evecVM "custom\buildings\GOC_TE_bash.sqf"; [] evecVM "custom\buildings\GOC_TE_btcc.sqf"; [] evecVM "custom\buildings\GOC_TE_klen.sqf"; [] evecVM "custom\buildings\GOC_TE_neaf.sqf"; [] evecVM "custom\buildings\GOC_TE_Stary.sqf"; [] evecVM "custom\buildings\kamenka.sqf"; [] evecVM "custom\buildings\vybor.sqf"; [] evecVM "custom\buildings\zeleno.sqf";



Error http://pastebin.com/ys3gU7pp

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

How do I go about adding these too the same line without getting this error? Codes in question

[] execVM "admintools\Activate.sqf"; [] evecVM "custom\buildings\3cities.sqf"; [] evecVM "custom\buildings\balota.sqf"; [] evecVM "custom\buildings\basebor.sqf"; [] evecVM "custom\buildings\basedichina.sqf"; [] evecVM "custom\buildings\basenovy.sqf"; [] evecVM "custom\buildings\GOC_LM_tubf.sqf"; [] evecVM "custom\buildings\GOC_LM_wlcr.sqf"; [] evecVM "custom\buildings\GOC_TE_bash.sqf"; [] evecVM "custom\buildings\GOC_TE_btcc.sqf"; [] evecVM "custom\buildings\GOC_TE_klen.sqf"; [] evecVM "custom\buildings\GOC_TE_neaf.sqf"; [] evecVM "custom\buildings\GOC_TE_Stary.sqf"; [] evecVM "custom\buildings\kamenka.sqf"; [] evecVM "custom\buildings\vybor.sqf"; [] evecVM "custom\buildings\zeleno.sqf";

Error http://pastebin.com/ys3gU7pp

 

You can start by changing them all to say execvm instead of evecvm .....

 

Then, make a folder in your server pbo and call it custom.

 

Put all your buildings/area .sqf's into that folder. NOT your admintools one. 

 

At the bottom of your server_functions.sqf, put this : 

 

execVM "\z\addons\dayz_server\custom\3cities.sqf";

execVM "\z\addons\dayz_server\custom\balota.sqf";

execVM "\z\addons\dayz_server\custom\basebor.sqf";

execVM "\z\addons\dayz_server\custom\basedichina.sqf";

execVM "\z\addons\dayz_server\custom\basenovy.sqf";

execVM "\z\addons\dayz_server\custom\GOC_LM_tubf.sqf";

execVM "\z\addons\dayz_server\custom\GOC_LM_wlcr.sqf";

execVM "\z\addons\dayz_server\custom\GOC_TE_bash.sqf";

execVM "\z\addons\dayz_server\custom\GOC_TE_btcc.sqf";

execVM "\z\addons\dayz_server\custom\GOC_TE_klen.sqf";

execVM "\z\addons\dayz_server\custom\GOC_TE_neaf.sqf";

execVM "\z\addons\dayz_server\custom\GOC_TE_Stary.sqf";

execVM "\z\addons\dayz_server\custom\kamenka.sqf";

execVM "\z\addons\dayz_server\custom\vybor.sqf";

execVM "\z\addons\dayz_server\custom\zeleno.sqf";

 

This line : 

[] execVM "admintools\Activate.sqf";

is supposed to go on the bottom of your mission init.sqf.

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
  • Discord

×
×
  • Create New...