mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
commit
9114395de0
@ -2,7 +2,7 @@
|
||||
|
||||
Below I provide with some examples of how to use HaloParachute
|
||||
|
||||
##Chang settings
|
||||
##Change settings
|
||||
|
||||
Customize settings to allow different scenarios.
|
||||
* Allow vehicle ejection
|
||||
@ -13,4 +13,15 @@ Customize settings to allow different scenarios.
|
||||
```sqf
|
||||
ExAd_HALOPARACHUTE_SAFE_MODE = true;
|
||||
```
|
||||
|
||||
* Enable parachute Detach - makes it possible to detach the parachute
|
||||
```sqf
|
||||
ExAd_HALOPARACHUTE_DETACH_PARACHUTE_MODE = true;
|
||||
```
|
||||
##Change defined notification texts
|
||||
Customizing stringtable.xml allows you to easily change defined texts or add language support.
|
||||
* Change detach message in stringtable.xml.
|
||||
```sqf
|
||||
<Key ID="STR_ExAd_HALOPARACHUTE_INFO_DETACH">
|
||||
<Original>You can eject from parachute with: Alt Shift x</Original>
|
||||
</Key>
|
||||
```
|
@ -37,4 +37,8 @@ if(ExAd_HALOPARACHUTE_SAFE_MODE)then{
|
||||
[ExAd_PARACHUTE_SAFE_THREAD] call ExileClient_system_thread_removeTask;
|
||||
};
|
||||
|
||||
if(ExAd_HALOPARACHUTE_DETACH_PARACHUTE_MODE)then{
|
||||
hint localize "STR_ExAd_HALOPARACHUTE_INFO_DETACH"
|
||||
};
|
||||
|
||||
true
|
Loading…
Reference in New Issue
Block a user