Added Advanced Repair
This commit is contained in:
parent
ab3550ba59
commit
500823861f
Binary file not shown.
@ -493,11 +493,19 @@ class CfgInteractionMenus
|
||||
};
|
||||
|
||||
// Repairs a vehicle to 100%. Requires Duckttape
|
||||
class Repair: ExileAbstractAction
|
||||
/*class Repair: ExileAbstractAction
|
||||
{
|
||||
title = "Repair";
|
||||
condition = "true";
|
||||
action = "['RepairVehicle', _this select 0] call ExileClient_action_execute";
|
||||
};*/
|
||||
|
||||
//Bones Custom Vehicle Repair
|
||||
class Repair: ExileAbstractAction
|
||||
{
|
||||
title = "Repair/Salvage";
|
||||
condition = "true";
|
||||
action = "_this call Bones_fnc_salvageAndRepairMenuCar";
|
||||
};
|
||||
|
||||
// Hot-wires a vehicle
|
||||
@ -582,11 +590,19 @@ class CfgInteractionMenus
|
||||
};
|
||||
|
||||
// Repairs a vehicle to 100%. Requires Duckttape
|
||||
class Repair: ExileAbstractAction
|
||||
/*class Repair: ExileAbstractAction
|
||||
{
|
||||
title = "Repair";
|
||||
condition = "true";
|
||||
action = "['RepairVehicle', _this select 0] call ExileClient_action_execute";
|
||||
};*/
|
||||
|
||||
// Bones Custom Air Repairs
|
||||
class Repair: ExileAbstractAction
|
||||
{
|
||||
title = "Repair/Salvage";
|
||||
condition = "true";
|
||||
action = "_this call Bones_fnc_salvageAndRepairMenuHelo";
|
||||
};
|
||||
|
||||
// Flips a vehicle so the player doesnt have to call an admin
|
||||
|
@ -0,0 +1,499 @@
|
||||
private ["_partsNeeded","_itemsNeeded","_partsToActOn","_partToActOn","_brokenParts","_repairableParts","_salvageableParts","_itemAction","_equippedMagazines","_vehicle","_action","_usedArray","_missingArray","_duration","_progress","_sleepDuration","_startTime","_label"];
|
||||
|
||||
_partsNeeded = [];
|
||||
_itemsNeeded = [];
|
||||
_partsToActOn = [];
|
||||
_partToActOn = [];
|
||||
_repairableParts =[];
|
||||
_salvageableParts =[];
|
||||
_equippedMagazines = magazines player;
|
||||
_vehicle = _this select 1;
|
||||
_action = _this select 0;
|
||||
_usedArray = [];
|
||||
_missingArray = [];
|
||||
|
||||
if (ExileClientActionDelayShown) exitWith { false };
|
||||
ExileClientActionDelayShown = true;
|
||||
ExileClientActionDelayAbort = false;
|
||||
|
||||
//Check if repairable
|
||||
if (!local _vehicle) exitwith
|
||||
{
|
||||
["InfoTitleAndText", ["Salvage/Repair Info", "Get in driver seat first"]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
ExileClientActionDelayShown = false;
|
||||
ExileClientActionDelayAbort = false;
|
||||
};
|
||||
if (ExileClientPlayerIsInCombat) exitWith
|
||||
{
|
||||
["ErrorTitleOnly", ["You are in combat!"]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
ExileClientActionDelayShown = false;
|
||||
ExileClientActionDelayAbort = false;
|
||||
};
|
||||
if (vehicle player isEqualTo _vehicle) exitWith
|
||||
{
|
||||
["ErrorTitleOnly", ["Are you serious?"]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
ExileClientActionDelayShown = false;
|
||||
ExileClientActionDelayAbort = false;
|
||||
};
|
||||
if (ExilePlayerInSafezone) exitWith
|
||||
{
|
||||
["ErrorTitleOnly", ["Leave Safezone First!"]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
ExileClientActionDelayShown = false;
|
||||
ExileClientActionDelayAbort = false;
|
||||
};
|
||||
|
||||
//Get the attributes for the type of repair
|
||||
if (_action == 'repairHeloHull') then
|
||||
{
|
||||
_partsToActOn = ["HitHull","HitBatteries","HitGlass1","HitGlass2","HitGlass3","HitGlass4","HitGlass5","HitRGlass","HitLGlass","HitMissiles","HitLight","HitHydraulics","HitTransmission","HitAvionics","HitGear","HitFuel","HitHStabilizerL1","HitHStabilizerR1","HitVStabilizer1","HitTail","HitPitotTube","HitStaticPort","HitStarter1","HitStarter2","HitStarter3","HitWinch"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalBoard","Metal Board"],
|
||||
["Exile_Item_DuctTape","Duct Tape"],
|
||||
["Exile_Item_MetalScrews","Metal Screws"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Screwdriver","ScrewDriver"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 20;
|
||||
};
|
||||
|
||||
if (_action == 'repairMainRotor') then
|
||||
{
|
||||
_partsToActOn = ["HitHRotor"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalBoard","Metal Board"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Wrench","Wrench"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 10;
|
||||
};
|
||||
|
||||
if (_action == 'salvageMainRotor') then
|
||||
{
|
||||
_partsToActOn = ["HitHRotor"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalBoard","Metal Board"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Wrench","Wrench"]
|
||||
];
|
||||
_itemAction = 1;
|
||||
_duration = 10;
|
||||
};
|
||||
if (_action == 'repairTailRotor') then
|
||||
{
|
||||
_partsToActOn = ["HitVRotor"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalBoard","Metal Board"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Wrench","Wrench"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 10;
|
||||
};
|
||||
|
||||
if (_action == 'salvageTailRotor') then
|
||||
{
|
||||
_partsToActOn = ["HitVRotor"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalBoard","Metal Board"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Wrench","Wrench"]
|
||||
];
|
||||
_itemAction = 1;
|
||||
_duration = 10;
|
||||
};
|
||||
|
||||
if (_action == 'repairEngine') then
|
||||
{
|
||||
_partsToActOn = ["HitEngine","HitEngine2","HitEngine3"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalWire","Metal Wire"],
|
||||
["Exile_Item_JunkMetal","Junk Metal"],
|
||||
["Exile_Item_OilCanister","Oil Canister"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Foolbox","Foolbox"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 20;
|
||||
};
|
||||
|
||||
if (_action == 'salvageEngine') then
|
||||
{
|
||||
_partsToActOn = ["HitEngine","HitEngine2","HitEngine3"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalWire","Metal Wire"],
|
||||
["Exile_Item_JunkMetal","Junk Metal"],
|
||||
["Exile_Item_OilCanister","Oil Canister"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Foolbox","Foolbox"]
|
||||
];
|
||||
_itemAction = 1;
|
||||
_duration = 20;
|
||||
};
|
||||
|
||||
if (_action == 'repairAllHelo') then
|
||||
{
|
||||
_partsToActOn = ["HitEngine","HitEngine2","HitEngine3","HitVRotor","HitHRotor","HitHull","HitBatteries","HitGlass1","HitGlass2","HitGlass3","HitGlass4","HitGlass5","HitRGlass","HitLGlass","HitMissiles","HitLight","HitHydraulics","HitTransmission","HitAvionics","HitGear","HitFuel","HitHStabilizerL1","HitHStabilizerR1","HitVStabilizer1","HitTail","HitPitotTube","HitStaticPort","HitStarter1","HitStarter2","HitStarter3","HitWinch"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalBoard","Metal Board"],
|
||||
["Exile_Item_MetalWire","Metal Wire"],
|
||||
["Exile_Item_JunkMetal","Junk Metal"],
|
||||
["Exile_Item_OilCanister","Oil Canister"],
|
||||
["Exile_Item_MetalBoard","Metal Board"],
|
||||
["Exile_Item_DuctTape","Duct Tape"],
|
||||
["Exile_Item_MetalScrews","Metal Screws"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Foolbox","Foolbox"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 60;
|
||||
};
|
||||
|
||||
if (_action == 'repairCarHull') then
|
||||
{
|
||||
_partsToActOn = ["HitBody","HitGlass1","HitGlass2","HitGlass3","HitGlass4","HitGlass5","HitGlass6","HitGlass7","HitGlass8","HitRGlass","HitLGlass","HitFuel"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalBoard","Metal Board"],
|
||||
["Exile_Item_DuctTape","Duct Tape"],
|
||||
["Exile_Item_MetalScrews","Metal Screws"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Screwdriver","ScrewDriver"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 20;
|
||||
};
|
||||
|
||||
if (_action == 'repairWheel') then
|
||||
{
|
||||
_vehicleClass = typeOf cursortarget;
|
||||
if (_vehicleClass == "Exile_Car_HEMMT")then
|
||||
{
|
||||
_partsToActOn = ["HitLF2Wheel","HitLFWheel","HitRFWheel","HitRF2Wheel","HitLMWheel","HitLBWheel","HitRMWheel","HitRBWheel"];
|
||||
}
|
||||
else
|
||||
{
|
||||
if (_vehicleClass == "Exile_Car_Zamak" || _vehicleClass == "Exile_Car_Tempest" || _vehicleClass == "Exile_Car_Ural_Open_Worker" || _vehicleClass == "Exile_Car_Ural_Open_Blue" || _vehicleClass == "Exile_Car_Ural_Open_Military" || _vehicleClass == "Exile_Car_Ural_Open_Yellow" || _vehicleClass == "Exile_Car_Ural_Covered_Worker" || _vehicleClass == "Exile_Car_Ural_Covered_Blue" || _vehicleClass == "Exile_Car_Ural_Covered_Military" || _vehicleClass == "Exile_Car_Ural_Covered_Yellow" || _vehicleClass == "Exile_Car_V3S_Open" || _vehicleClass == "Exile_Car_V3S_Covered") then
|
||||
{
|
||||
_partsToActOn = ["HitLF2Wheel","HitLFWheel","HitRFWheel","HitRF2Wheel","HitLMWheel","HitRMWheel"];
|
||||
}
|
||||
else
|
||||
{
|
||||
_partsToActOn = ["HitLF2Wheel","HitLFWheel","HitRFWheel","HitRF2Wheel"];
|
||||
};
|
||||
};
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_CarWheel","Car Wheel"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Wrench","Wrench"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 10;
|
||||
};
|
||||
|
||||
if (_action == 'salvageWheel') then
|
||||
{
|
||||
_vehicleClass = typeOf cursortarget;
|
||||
if (_vehicleClass == "Exile_Car_HEMMT")then
|
||||
{
|
||||
_partsToActOn = ["HitLF2Wheel","HitLFWheel","HitRFWheel","HitRF2Wheel","HitLMWheel","HitLBWheel","HitRMWheel","HitRBWheel"];
|
||||
}
|
||||
else
|
||||
{
|
||||
if (_vehicleClass == "Exile_Car_Zamak" || _vehicleClass == "Exile_Car_Tempest" || _vehicleClass == "Exile_Car_Ural_Open_Worker" || _vehicleClass == "Exile_Car_Ural_Open_Blue" || _vehicleClass == "Exile_Car_Ural_Open_Military" || _vehicleClass == "Exile_Car_Ural_Open_Yellow" || _vehicleClass == "Exile_Car_Ural_Covered_Worker" || _vehicleClass == "Exile_Car_Ural_Covered_Blue" || _vehicleClass == "Exile_Car_Ural_Covered_Military" || _vehicleClass == "Exile_Car_Ural_Covered_Yellow" || _vehicleClass == "Exile_Car_V3S_Open" || _vehicleClass == "Exile_Car_V3S_Covered") then
|
||||
{
|
||||
_partsToActOn = ["HitLF2Wheel","HitLFWheel","HitRFWheel","HitRF2Wheel","HitLMWheel","HitRMWheel"];
|
||||
}
|
||||
else
|
||||
{
|
||||
_partsToActOn = ["HitLF2Wheel","HitLFWheel","HitRFWheel","HitRF2Wheel"];
|
||||
};
|
||||
};
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_CarWheel","Car Wheel"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Wrench","Wrench"]
|
||||
];
|
||||
_itemAction = 1;
|
||||
_duration = 10;
|
||||
};
|
||||
|
||||
if (_action == 'repairCarEngine') then
|
||||
{
|
||||
_partsToActOn = ["HitEngine"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalWire","Metal Wire"],
|
||||
["Exile_Item_JunkMetal","Junk Metal"],
|
||||
["Exile_Item_OilCanister","Oil Canister"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Foolbox","Foolbox"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 20;
|
||||
};
|
||||
|
||||
if (_action == 'salvageCarEngine') then
|
||||
{
|
||||
_partsToActOn = ["HitEngine"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalWire","Metal Wire"],
|
||||
["Exile_Item_JunkMetal","Junk Metal"],
|
||||
["Exile_Item_OilCanister","Oil Canister"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Foolbox","Foolbox"]
|
||||
];
|
||||
_itemAction = 1;
|
||||
_duration = 20;
|
||||
};
|
||||
|
||||
if (_action == 'repairAllCar') then
|
||||
{
|
||||
_partsToActOn = ["HitEngine","HitEngine2","HitEngine3","HitLF2Wheel","HitLFWheel","HitRFWheel","HitRF2Wheel","HitLMWheel","HitLBWheel","HitRMWheel","HitRBWheel","HitBody","HitGlass1","HitGlass2","HitGlass3","HitGlass4","HitGlass5","HitGlass6","HitGlass7","HitGlass8","HitRGlass","HitLGlass","HitFuel"];
|
||||
_partsNeeded =
|
||||
[
|
||||
["Exile_Item_MetalBoard","Metal Board"],
|
||||
["Exile_Item_MetalWire","Metal Wire"],
|
||||
["Exile_Item_JunkMetal","Junk Metal"],
|
||||
["Exile_Item_OilCanister","Oil Canister"],
|
||||
["Exile_Item_MetalBoard","Metal Board"],
|
||||
["Exile_Item_DuctTape","Duct Tape"],
|
||||
["Exile_Item_MetalScrews","Metal Screws"]
|
||||
];
|
||||
_itemsNeeded =
|
||||
[
|
||||
["Exile_Item_Foolbox","Foolbox"]
|
||||
];
|
||||
_itemAction = 0;
|
||||
_duration = 60;
|
||||
};
|
||||
|
||||
//find all repairable and salvageable parts
|
||||
|
||||
{
|
||||
if ((_vehicle getHitPointDamage _x) > 0) then
|
||||
{
|
||||
_repairableParts pushBack _x;
|
||||
};
|
||||
}forEach _partsToActOn;
|
||||
|
||||
{
|
||||
if ((_vehicle getHitPointDamage _x) < .2) then
|
||||
{
|
||||
_salvageableParts pushBack _x;
|
||||
};
|
||||
}forEach _partsToActOn;
|
||||
|
||||
//Check for all required tools and parts
|
||||
|
||||
if (_itemAction == 0) then
|
||||
{
|
||||
{
|
||||
_currentItem = _x select 0;
|
||||
if (_currentItem in _equippedMagazines) then
|
||||
{
|
||||
_usedArray pushback (_x select 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
_missingArray pushback (_x select 1);
|
||||
};
|
||||
}forEach _partsNeeded;
|
||||
};
|
||||
|
||||
{
|
||||
_currentItem = _x select 0;
|
||||
if (_currentItem in _equippedMagazines) then
|
||||
{
|
||||
_usedArray pushback (_x select 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
_missingArray pushback (_x select 1);
|
||||
};
|
||||
}forEach _itemsNeeded;
|
||||
|
||||
//Check if there is anything to salvage/repair
|
||||
if ((_itemAction == 1) && (_salvageableParts isEqualto [])) exitwith
|
||||
{
|
||||
["ErrorTitleAndText", ["Salvage/Repair Info", "The items you are trying to salvage are all broken!"]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
ExileClientActionDelayShown = false;
|
||||
ExileClientActionDelayAbort = false;
|
||||
};
|
||||
if ((_itemAction == 0) && (_repairableParts isEqualto [])) exitwith
|
||||
{
|
||||
["ErrorTitleAndText", ["Salvage/Repair Info", "The items you are trying to repair are all fine!"]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
ExileClientActionDelayShown = false;
|
||||
ExileClientActionDelayAbort = false;
|
||||
};
|
||||
|
||||
_temp1 = count _missingArray;
|
||||
if !(_temp1 == 0) exitwith
|
||||
{
|
||||
["ErrorTitleAndText", ["Missing Items!", format ["You are missing the following items : %1, %2, %3, %4. Aborted!",(_missingArray select 0), (_missingArray select 1),(_missingArray select 2),(_missingArray select 3)]]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
ExileClientActionDelayShown = false;
|
||||
ExileClientActionDelayAbort = false;
|
||||
};
|
||||
|
||||
//Repair-Salvage the parts listed
|
||||
if (_action == 'repairHeloHull' || _action == 'repairAllHelo' || _action == 'repairEngine' || _action == 'repairCarEngine' || _action == 'salvageEngine' || _action == 'salvageCarEngine' || _action == 'repairAllCar' || _action == 'repairCarHull') then
|
||||
{
|
||||
if(_itemAction == 0) then
|
||||
{
|
||||
_partToActOn = _repairableParts;
|
||||
}
|
||||
else
|
||||
{
|
||||
_partToActOn = _salvageableParts;
|
||||
};
|
||||
}
|
||||
else
|
||||
{
|
||||
if(_itemAction == 0) then
|
||||
{
|
||||
_partToActOn pushback (_repairableParts select 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
_partToActOn pushback (_salvageableParts select 0);
|
||||
};
|
||||
};
|
||||
_animation = "Exile_Acts_RepairVehicle01_Animation01";
|
||||
disableSerialization;
|
||||
("ExileActionProgressLayer" call BIS_fnc_rscLayer) cutRsc ["RscExileActionProgress", "PLAIN", 1, false];
|
||||
|
||||
_keyDownHandle = (findDisplay 46) displayAddEventHandler ["KeyDown","_this call ExileClient_action_event_onKeyDown"];
|
||||
_mouseButtonDownHandle = (findDisplay 46) displayAddEventHandler ["MouseButtonDown","_this call ExileClient_action_event_onMouseButtonDown"];
|
||||
|
||||
player switchMove _animation;
|
||||
["switchMoveRequest", [netId player, _animation]] call ExileClient_system_network_send;
|
||||
|
||||
_startTime = diag_tickTime;
|
||||
_sleepDuration = _duration / 100;
|
||||
_progress = 0;
|
||||
|
||||
_display = uiNamespace getVariable "RscExileActionProgress";
|
||||
_label = _display displayCtrl 4002;
|
||||
_label ctrlSetText "0%";
|
||||
_progressBarBackground = _display displayCtrl 4001;
|
||||
_progressBarMaxSize = ctrlPosition _progressBarBackground;
|
||||
_progressBar = _display displayCtrl 4000;
|
||||
_progressBar ctrlSetPosition [_progressBarMaxSize select 0, _progressBarMaxSize select 1, 0, _progressBarMaxSize select 3];
|
||||
_progressBar ctrlSetBackgroundColor [0, 0.78, 0.93, 1];
|
||||
_progressBar ctrlCommit 0;
|
||||
_progressBar ctrlSetPosition _progressBarMaxSize;
|
||||
_progressBar ctrlCommit _duration;
|
||||
|
||||
try
|
||||
{
|
||||
while {_progress < 1} do
|
||||
{
|
||||
if (ExileClientActionDelayAbort) then
|
||||
{
|
||||
throw 1;
|
||||
};
|
||||
|
||||
uiSleep _sleepDuration;
|
||||
_progress = ((diag_tickTime - _startTime) / _duration) min 1;
|
||||
_label ctrlSetText format["%1%2", round (_progress * 100), "%"];
|
||||
};
|
||||
throw 0;
|
||||
}
|
||||
catch
|
||||
{
|
||||
_progressBarColor = [];
|
||||
switch (_exception) do
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
_progressBarColor = [0.7, 0.93, 0, 1];
|
||||
if(_action == 'repairAllHelo' || _action == 'repairAllCar') then
|
||||
{
|
||||
_vehicle setdamage 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
{
|
||||
_vehicle setHitPointDamage [_x,_itemAction];
|
||||
}forEach _partToActOn;
|
||||
};
|
||||
if (_itemAction == 0) then
|
||||
{
|
||||
{
|
||||
_tempItem = _x select 0;
|
||||
player removeItem _tempItem;
|
||||
}forEach _partsNeeded;
|
||||
}
|
||||
else
|
||||
{
|
||||
{
|
||||
_tempPart = _x select 0;
|
||||
_itemCount = {_x == _tempPart} count (Magazines player);
|
||||
player addItem _tempPart select 0;
|
||||
_tempcount = {_x == _tempPart} count (Magazines player);
|
||||
if(_itemCount == _tempcount) then
|
||||
{
|
||||
_holder = createVehicle ["GroundWeaponHolder", position player, [], 0, "CAN_COLLIDE"];
|
||||
_holder addItemCargoGlobal [_tempPart, 1];
|
||||
["InfoTitleAndText",["Repair/Salvage Info", format["You have no space, %1 placed on the ground!",_x select 1]]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
};
|
||||
}forEach _partsNeeded;
|
||||
};
|
||||
["InfoTitleAndText",["Repair/Salvage Info", "You have completed the action!"]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
};
|
||||
case 1:
|
||||
{
|
||||
["InfoTitleAndText",["Repair/Salvage Info", "Do not move while repairing or salvaging!"]] call ExileClient_gui_toaster_addTemplateToast;
|
||||
_progressBarColor = [0.82, 0.82, 0.82, 1];
|
||||
};
|
||||
};
|
||||
player switchMove "";
|
||||
["switchMoveRequest", [netId player, ""]] call ExileClient_system_network_send;
|
||||
_progressBar ctrlSetBackgroundColor _progressBarColor;
|
||||
_progressBar ctrlSetPosition _progressBarMaxSize;
|
||||
_progressBar ctrlCommit 0;
|
||||
};
|
||||
|
||||
("ExileActionProgressLayer" call BIS_fnc_rscLayer) cutFadeOut 2;
|
||||
(findDisplay 46) displayRemoveEventHandler ["KeyDown", _keyDownHandle];
|
||||
(findDisplay 46) displayRemoveEventHandler ["MouseButtonDown", _mouseButtonDownHandle];
|
||||
ExileClientActionDelayShown = false;
|
||||
ExileClientActionDelayAbort = false;
|
@ -0,0 +1,18 @@
|
||||
ASL_Show_Repair_Options_Menu_Array =
|
||||
[
|
||||
["Repair Menu",false],
|
||||
["Repair Body",[0],"",-5,[["expression","['repairCarHull'] Call salvage_setup"]],"1","1"],
|
||||
["Repair Wheel",[0],"",-5,[["expression","['repairWheel'] Call salvage_setup"]],"1","1"],
|
||||
["Repair Engine",[0],"",-5,[["expression","['repairCarEngine'] Call salvage_setup"]],"1","1"],
|
||||
["Repair All",[0],"",-5,[["expression","['repairAllCar'] Call salvage_setup"]],"1","1"],
|
||||
["Salvage Wheel",[0],"",-5,[["expression","['salvageWheel'] Call salvage_setup"]],"1","1"],
|
||||
["Salvage Engine",[0],"",-5,[["expression","['salvageCarEngine'] Call salvage_setup"]],"1","1"]
|
||||
];
|
||||
showCommandingMenu "";
|
||||
showCommandingMenu "#USER:ASL_Show_Repair_Options_Menu_Array";
|
||||
|
||||
salvage_setup = {
|
||||
_vehicle = cursorObject;
|
||||
_action = _this select 0;
|
||||
[_action,_vehicle] execVM 'Custom\advancedRepair\Bones_fnc_salvageAndRepair.sqf';
|
||||
};
|
@ -0,0 +1,20 @@
|
||||
ASL_Show_Repair_Options_Menu_Array =
|
||||
[
|
||||
["Repair Menu",false],
|
||||
["Repair Hull",[0],"",-5,[["expression","['repairHeloHull'] Call salvage_setup"]],"1","1"],
|
||||
["Repair Main Rotor",[0],"",-5,[["expression","['repairMainRotor'] Call salvage_setup"]],"1","1"],
|
||||
["Repair Tail Rotor",[0],"",-5,[["expression","['repairTailRotor'] Call salvage_setup"]],"1","1"],
|
||||
["Repair Engine",[0],"",-5,[["expression","['repairEngine'] Call salvage_setup"]],"1","1"],
|
||||
["Repair All",[0],"",-5,[["expression","['repairAllHelo'] Call salvage_setup"]],"1","1"],
|
||||
["Salvage Main Rotor",[0],"",-5,[["expression","['salvageMainRotor'] Call salvage_setup"]],"1","1"],
|
||||
["Salvage Tail Rotor",[0],"",-5,[["expression","['salvageTailRotor'] Call salvage_setup"]],"1","1"],
|
||||
["Salvage Engine",[0],"",-5,[["expression","['salvageEngine'] Call salvage_setup"]],"1","1"]
|
||||
];
|
||||
showCommandingMenu "";
|
||||
showCommandingMenu "#USER:ASL_Show_Repair_Options_Menu_Array";
|
||||
|
||||
salvage_setup = {
|
||||
_vehicle = cursorObject;
|
||||
_action = _this select 0;
|
||||
[_action,_vehicle] execVM 'Custom\advancedRepair\Bones_fnc_salvageAndRepair.sqf';
|
||||
};
|
File diff suppressed because it is too large
Load Diff
@ -5,8 +5,8 @@
|
||||
// Server Settings - Modify at will
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
author = "Exile Mod Team";
|
||||
onLoadName = "Exile Mod";
|
||||
onLoadMission= "www.exilemod.com";
|
||||
onLoadName = "Z's Exile Mod";
|
||||
onLoadMission= "Try to say alive :)";
|
||||
loadScreen = "exile_assets\texture\mod\logo.paa";
|
||||
disableChannels[] = {0, 2};
|
||||
OnLoadIntro = "";
|
||||
@ -61,7 +61,7 @@ showHUD[] =
|
||||
true, // Vehicle radar
|
||||
true, // Vehicle compass
|
||||
true, // Tank direction indicator
|
||||
false, // Commanding menu
|
||||
true, // Commanding menu
|
||||
false, // Group Bar
|
||||
true, // HUD Weapon Cursors
|
||||
true // Squad Radar
|
||||
@ -69,6 +69,7 @@ showHUD[] =
|
||||
|
||||
#include "config.cpp"
|
||||
|
||||
//infiSTAR
|
||||
#include "CfgRemoteExec.hpp"
|
||||
#include "infiSTAR_defines.hpp"
|
||||
#include "infiSTAR_AdminMenu.hpp"
|
||||
|
@ -20,4 +20,9 @@ if (hasInterface) then {
|
||||
};
|
||||
|
||||
//Exile Revive
|
||||
[] execVM "Custom\EnigmaRevive\init.sqf";
|
||||
[] execVM "Custom\EnigmaRevive\init.sqf";
|
||||
|
||||
if (!hasInterface || isServer) {
|
||||
Bones_fnc_salvageAndRepairMenuHelo = compileFinal preprocessFileLineNumbers "Custom\advancedRepair\Bones_fnc_salvageAndRepairMenuHelo.sqf";
|
||||
Bones_fnc_salvageAndRepairMenuCar = compileFinal preprocessFileLineNumbers "Custom\advancedRepair\Bones_fnc_salvageAndRepairMenuCar.sqf";
|
||||
};
|
Loading…
Reference in New Issue
Block a user