how can i add scripts to sheep's epoch repack?

InfiSTAR's admin menu has a tutorial on how to install.. just follow it... And the other scripts are just added like [] execVM "name.sqf"; on bottom of init...
 
Under
  1. if (!isNil "dayZ_serverName") then {
  2. [] spawn {
  3. waitUntil {(!isNull Player) and (alive Player) and (player == player)};
  4. waituntil {!(isNull (findDisplay 46))};
  5. 5 cutRsc ["wm_disp","PLAIN"];
  6. ((uiNamespace getVariable "wm_disp") displayCtrl 1) ctrlSetText dayZ_serverName;
  7. };
  8. };
put your ExecVM's
 
Under
  1. if (!isNil "dayZ_serverName") then {
  2. [] spawn {
  3. waitUntil {(!isNull Player) and (alive Player) and (player == player)};
  4. waituntil {!(isNull (findDisplay 46))};
  5. 5 cutRsc ["wm_disp","PLAIN"];
  6. ((uiNamespace getVariable "wm_disp") displayCtrl 1) ctrlSetText dayZ_serverName;
  7. };
  8. };
put your ExecVM's
thanks ^_^
 
Back
Top