From 4e7e2c4ed295869e9814334f5b51b263ce471c75 Mon Sep 17 00:00:00 2001 From: Skaronator Date: Tue, 10 Dec 2013 16:10:35 +0100 Subject: [PATCH] Change Var (Easier to Spot Hackers) --- SQF/dayz_code/actions/player_loadCrate.sqf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/SQF/dayz_code/actions/player_loadCrate.sqf b/SQF/dayz_code/actions/player_loadCrate.sqf index 9cc129816..6d1875edd 100644 --- a/SQF/dayz_code/actions/player_loadCrate.sqf +++ b/SQF/dayz_code/actions/player_loadCrate.sqf @@ -1,4 +1,4 @@ -private ["_dir","_classname","_box","_location","_item","_config","_create_raw","_create","_qty","_type","_hasCrate","_hasTool"]; +private ["_dir","_classname","_b0x1337","_location","_item","_config","_create_raw","_create","_qty","_type","_hasCrate","_hasTool"]; if(DZE_ActionInProgress) exitWith { cutText [(localize "str_epoch_player_75") , "PLAIN DOWN"]; }; DZE_ActionInProgress = true; @@ -40,23 +40,23 @@ player addMagazine "bulk_empty"; player playActionNow "Medic"; sleep 6; -_box = createVehicle [_classname, _location, [], 0, "CAN_COLLIDE"]; -_box setDir _dir; +_b0x1337 = createVehicle [_classname, _location, [], 0, "CAN_COLLIDE"]; +_b0x1337 setDir _dir; // Fill box with Items from config. if(_type == "magazine") then { - _box addMagazineCargoGlobal [_create,_qty]; + _b0x1337 addMagazineCargoGlobal [_create,_qty]; }; if(_type == "weapon") then { - _box addWeaponCargoGlobal [_create,_qty]; + _b0x1337 addWeaponCargoGlobal [_create,_qty]; }; if(_type == "backpack") then { - _box addBackpackCargoGlobal [_create,_qty]; + _b0x1337 addBackpackCargoGlobal [_create,_qty]; }; -player reveal _box; +player reveal _b0x1337; -player action ["Gear", _box]; +player action ["Gear", _b0x1337]; cutText [(localize "str_epoch_player_78"), "PLAIN DOWN"];