Jump to content

frostey007

Member
  • Content Count

    1
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About frostey007

  • Rank
    Newbie
  1. I cannot find the Vehicle Init file to add this line. Might someone help me apply this output into my code veh = [_this, 10, 0, 0, TRUE, FALSE] execVM "vehicle.sqf" I am thinking i have to place it within this code: /*********************************************************** ASSIGN DAMAGE HANDLER TO A UNIT - Function set_EH - unit call set_EH; ************************************************************/ private["_unit","_eh1","_eh2","_dir","_location"]; _unit = _this; _dir = getdir _this; _location = getPosATL _this; //Assign event handlers _eh1 = _unit addeventhandler ["HandleDamage",{ _this call vehicle_handleDamage } ]; _eh2 = _unit addeventhandler ["Killed",{ _this call vehicle_handleKilled } ]; //diag_log format ["set EH %1 for vehicle:%2", _eh1, typeOf _unit ]; if (isServer) then { _eh3 = _unit addEventHandler ["GetOut", {[(_this select 0),"all"] call server_updateObject;}]; _eh4 = _unit addEventHandler ["GetIn", {[(_this select 0),"all"] call server_updateObject;}]; _eh5 = _unit addEventHandler ["Killed",{ _this call vehicle_handleKilled } ]; _eh6 = _unit addeventhandler ["HandleDamage",{ _this call vehicle_handleDamage } ]; veh = [_this, 10, 0, 0, TRUE, FALSE] execVM "vehicle.sqf" }; ---------- Post added at 11:44 ---------- Previous post was at 11:40 ---------- where do i put within my code veh = [_this, 10, 0, 0, TRUE, FALSE] execVM "vehicle.sqf" ---------- Post added at 13:35 ---------- Previous post was at 11:44 ---------- I am using Lingor.. I do not know if this script works for lingor dayz
×