Jump to content

LoCK0N

Member
  • Posts

    74
  • Joined

  • Last visited

Posts posted by LoCK0N

  1. in your hiveext.ini

    look for 

     

    ;Negative values will disable this feature
    ;0 means that ALL empty placed items will be deleted every server restart
    ;A positive number is how old (in days) a placed empty item must be, in order for it to be deleted
    ;CleanupPlacedAfterDays = -1

     and remove the ; at the start of the line and change the -1 to however many days u want, -1 means they will not clean up
  2. you need to change the check for hacker fix in the server_cleanup.fsm

     

     

    and change  "  if(vehicle _x != _x && !(vehicle _x in _safety) && (isPlayer _x)  && !((typeOf vehicle _x) in DZE_safeVehicle)) then {" \n

     

    to 

     

    " if(vehicle x != _x && !(vehicle _x in PVDZEserverObjectMonitor) && (isPlayer x) && (typeOf vehicle _x) != ""ParachuteWest"" && (vehicle _x getVariable [""Sarge"",0] != 1) && (vehicle _x getVariable [""DZAI"",0] != 1) && (vehicle _x getVariable [""Mission"",0] != 1) && !((typeOf vehicle _x) in DZEsafeVehicle)) then {" \n

  3. is that ones you spawn in game or random ones around the map, if its spawned ones you need to change your server_cleanup.fsm killing a hacker section

     

    i have this line in mine 

     

     

     " if(vehicle x != _x && !(vehicle _x in PVDZEserverObjectMonitor) && (isPlayer x) && (typeOf vehicle _x) != ""ParachuteWest"" && (vehicle _x getVariable [""Sarge"",0] != 1) && (vehicle _x getVariable [""DZAI"",0] != 1) && (vehicle _x getVariable [""Mission"",0] != 1) && !((typeOf vehicle _x) in DZEsafeVehicle)) then {" \n

     

    that should fix it 

  4. gents trying to get an altimeter working with my dayz paraspawn, ive added 

    _nul = [] execVM "custom\altimeter.sqf"; in my is dedicated section in my init.sqf and this is the altimeter.sqf in my custom folder http://pastebin.com/yzLj6eKV

     

    tried to call it in the is server part but i found this http://opendayz.net/threads/halo-jump-on-spawn-tutorial.9344/page-12     post 231 where he just says make the sqf  and call it ??? 

    im stumped plz help cause i did ask about where i set the celing height for the paraspawn but i got no answers 

×
×
  • Create New...