Search results

  1. L

    Admins able to spawn vehicles

    If you start the Server + Client with -showScriptErrors , it will be easier to find out what is going wrong. Sometimes there is only a missing "]",")" or ";" that make you trouble :) take a look in your serverlog (arma2oaserver.rpt) /Leo
  2. L

    Admins able to spawn vehicles

    all mission scripts are running local so the answer is: yes they are exploitable.
  3. L

    Admins able to spawn vehicles

    Hi :) you need to loop the addaction request coz the scripts in 'init.sqf' are called before any player is in the game try out this code in you playercustomactions.sqf: _test_action_id = -1; while {true} do { if (_test_action_id < 0) then { _test_action_id = player addAction...
  4. L

    Admins able to spawn vehicles

    im using the persistant spawn und have no issues with that i think the temp spawns can have issues like no damage handler/self repairing, i wasnt testing this much
  5. L

    Admins able to spawn vehicles

    spawning a useable Veh is easy but its only temporary and has no eventhandlers, spawning a usable Veh that is handled by hive (update damage, position, gear in database) and is using all eventhandlers (killed, damaged, getin/out) is a bit harder to add a veh spawn player action use something...
  6. L

    Vehicle bugs

    hi :) there is no official dayz server that respawn veh's without server restart (far as I know) to fix the part DB update, try this : worked for me fix the auto repair is a bit harder, seems the veh is losing there event handlers when repaired 100% but i couldnt find the reason yet
  7. L

    Bliss 4.0 // DayZ 1.3.7 Vehicle Damage in DB didnt work at all?

    but veh's that will repaired 100% (dam = 0) sometimes have problems to set there damage correctly i think any server admin should decide self
  8. L

    Repair vehicles after "Save" ayan4m1-DayZ-Private-v3.7-18 (DayZ 1.7.3)

    hey there :) try to add vehicle_handleDamage = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\vehicle_handleDamage.sqf"; to your dayz.[mapname]\init.sqf best place is befor progressLoadingScreen 1.0; this fixed the rep bug on my server /Leo
Back
Top