mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
4e93b9c72d
Privates Cleanup debug Add repair actions for sub turrets Cleanup Fix Header Error Handling Cleanup setHitpointDamage Fix common ACE_isEngineer to handle scalar or bool Claim and release repair objects (wheel/track) Repair sub-turrets
45 lines
925 B
Plaintext
45 lines
925 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(addRepairActions);
|
|
PREP(addSpareParts);
|
|
PREP(canMiscRepair);
|
|
PREP(canRemove);
|
|
PREP(canRepair);
|
|
PREP(canRepairTrack);
|
|
PREP(canReplaceTrack);
|
|
PREP(canReplaceWheel);
|
|
PREP(doFullRepair);
|
|
PREP(doRemoveTrack);
|
|
PREP(doRemoveWheel);
|
|
PREP(doRepair);
|
|
PREP(doRepairTrack);
|
|
PREP(doReplaceTrack);
|
|
PREP(doReplaceWheel);
|
|
PREP(getClaimObjects);
|
|
PREP(getHitPointString);
|
|
PREP(getPostRepairDamage);
|
|
PREP(getWheelHitPointsWithSelections);
|
|
PREP(hasItems);
|
|
PREP(isEngineer);
|
|
PREP(isInRepairFacility);
|
|
PREP(isNearRepairVehicle);
|
|
PREP(isRepairVehicle);
|
|
PREP(moduleAddSpareParts);
|
|
PREP(moduleAssignEngineer);
|
|
PREP(moduleAssignRepairVehicle);
|
|
PREP(moduleAssignRepairFacility);
|
|
PREP(moduleRepairSettings);
|
|
PREP(normalizeHitPoints);
|
|
PREP(repair);
|
|
PREP(repair_failure);
|
|
PREP(repair_success);
|
|
PREP(setDamage);
|
|
PREP(setHitPointDamage);
|
|
PREP(spawnObject);
|
|
PREP(useItem);
|
|
PREP(useItems);
|
|
|
|
ADDON = true;
|