mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
94f3b301e0
* Add grave digging * Update fnc_placeInBodyBagOrGrave.sqf * Update fnc_placeInBodyBagOrGrave.sqf * Update fnc_placeInBodyBagOrGrave.sqf * Update addons/medical_treatment/functions/fnc_placeInBodyBag.sqf Co-authored-by: BrettMayson <brett@mayson.io> * Add setting to enable/disable * improvements - fix flipped bool in fnc_canDigGrave - improve fnc_placeInBodyBagOrGrave.sqf by splitting out some checks and item assignment into separate bodybag and grave functions * fix typo in variable * Apply suggestions from code review Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * add to XEH_PREP and fix event for non-local patient * Add interaction to check name on headstone * Update addons/medical_treatment/XEH_postInit.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Simplify Setting * Apply suggestions from code review Co-authored-by: jonpas <jonpas33@gmail.com> * Update addons/medical_treatment/stringtable.xml Co-authored-by: jonpas <jonpas33@gmail.com> * Make placeInBodyBagOrGrave more generic and use any grave class * Update addons/medical_treatment/functions/fnc_placeInGrave.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update medical-treatment-framework.md * Update docs/wiki/framework/medical-treatment-framework.md Co-authored-by: jonpas <jonpas33@gmail.com> * update docs * Update addons/medical_treatment/functions/fnc_placeInBodyBagOrGrave.sqf * Update addons/medical_treatment/functions/fnc_placeInGrave.sqf * fix includes --------- Co-authored-by: BrettMayson <brett@mayson.io> Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com> Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
73 lines
1.7 KiB
Markdown
73 lines
1.7 KiB
Markdown
---
|
|
layout: wiki
|
|
title: Medical Treatment Framework
|
|
description: Explains extending the treatment system for developers.
|
|
group: framework
|
|
order: 5
|
|
parent: wiki
|
|
mod: ace
|
|
version:
|
|
major: 3
|
|
minor: 14
|
|
patch: 2
|
|
---
|
|
|
|
## 1. Config Values
|
|
|
|
### 1.1 Vehicle Patient Seats
|
|
|
|
Defines the seats that will be prioritized when loading patients into vehicles. Uses `moveInCargo` indexes.
|
|
|
|
```cpp
|
|
class CfgVehicles {
|
|
class MyCar {
|
|
ace_medical_treatment_patientSeats[] = {3,4};
|
|
};
|
|
};
|
|
```
|
|
|
|
### 1.2 Patient Reverse Fill
|
|
|
|
When no patient seats are available, by default patients will be filled from the highest cargo index to the lowest.
|
|
This can be changed to fill from the lowest to the highest.
|
|
|
|
```cpp
|
|
class CfgVehicles {
|
|
class MyCar {
|
|
ace_medical_treatment_patientReverseFill = 0;
|
|
};
|
|
};
|
|
```
|
|
### 1.3 Treatment Items
|
|
|
|
Items in `CfgWeapons` with `ACE_isMedicalItem` property will be added to the ACE Medical category in the ACE Arsenal.
|
|
```cpp
|
|
class CfgWeapons {
|
|
class MyMedicalItem {
|
|
ACE_isMedicalItem = 1;
|
|
};
|
|
};
|
|
```
|
|
Required items in `ACE_Medical_Treatment_Actions` will also be added as a fallback.
|
|
```cpp
|
|
class ACE_Medical_Treatment_Actions {
|
|
class MyCustomTreatment {
|
|
items[] = {"MyMedicalItem"};
|
|
};
|
|
};
|
|
```
|
|
|
|
## 2. Mission Variables
|
|
|
|
### 2.1 Grave Digging Object Configuration
|
|
|
|
The object created when digging a grave can be modified by setting the `ace_medical_treatment_graveClassname` variable.
|
|
```sqf
|
|
ace_medical_treatment_graveClassname = "Land_Grave_11_F"; // classname, e.g. unmarked gravel (no headstone OR check actions)
|
|
```
|
|
|
|
The object's rotation can also be modified, if necessary.
|
|
```sqf
|
|
ace_medical_treatment_graveRotation = 0; // rotation angle (will depend on model classname)
|
|
```
|