From 1cd069e2d83e39f8a156ac727260f21376221f92 Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Thu, 1 Dec 2016 10:32:25 -0500 Subject: [PATCH] Uncomment PVDZ_dayzCarBomb Not sure if functional atm, but still in use if ItemCarBomb is script spawned and right clicked (not obtainable by default). My mistake from b6d88b1 --- SQF/dayz_code/init/publicEH.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/init/publicEH.sqf b/SQF/dayz_code/init/publicEH.sqf index 1bd8846a5..68639018d 100644 --- a/SQF/dayz_code/init/publicEH.sqf +++ b/SQF/dayz_code/init/publicEH.sqf @@ -87,7 +87,7 @@ if (isServer) then { "PVDZ_plr_LoginRecord" addPublicVariableEventHandler {_id = (_this select 1) spawn dayz_recordLogin}; "PVDZ_obj_Destroy" addPublicVariableEventHandler {(_this select 1) call server_deleteObj}; "PVDZ_send" addPublicVariableEventHandler {(_this select 1) call server_sendToClient}; - //"PVDZ_dayzCarBomb" addPublicVariableEventHandler {[_this select 1] execVM "\z\addons\dayz_code\actions\detonate_bomb.sqf";}; + "PVDZ_dayzCarBomb" addPublicVariableEventHandler {[_this select 1] execVM "\z\addons\dayz_code\actions\detonate_bomb.sqf";}; //[player,[medical Array]]; "PVDZ_playerMedicalSync" addPublicVariableEventHandler { (_this select 1) call server_medicalSync; ((_this select 1) select 0) setVariable["Medical",((_this select 1) select 1),false]; }; //diag_log format["%1 - %2",((_this select 1) select 0),((_this select 1) select 1)]; };