mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
Hint for Infistar Users
This commit is contained in:
parent
c7da501105
commit
7985003f1f
29
changelog.md
29
changelog.md
@ -95,6 +95,35 @@ All changes for [Arma 3](https://arma3.com/) [Epoch Mod](https://epochmod.com) a
|
||||
- xbow_mag_exp -> small explosion -> Kill
|
||||
- hgun_Pistol_tranq_01
|
||||
- tranq_dart_mag -> Knockout
|
||||
- If you run Infistar lower then v260 (not published for now), you have to change this inside your Infistar files!
|
||||
A3AH:
|
||||
1.
|
||||
Search for:
|
||||
_addCaseHDMG = 0;
|
||||
add a new line behind it with:
|
||||
_addCaseHDMG = player addEventHandler ['HandleDamage',(['CfgEpochClient', 'HandleDamage', ''] call EPOCH_fnc_returnConfigEntryV2)];
|
||||
2.
|
||||
Search for:
|
||||
if(_addCaseHDMG == _roundRandomNumberHDMG)then
|
||||
and change it to:
|
||||
if(_addCaseHDMG == (_roundRandomNumberHDMG+1))then
|
||||
3.
|
||||
Search for:
|
||||
player addEventHandler ['HandleDamage',''];
|
||||
and change it to:
|
||||
player addEventHandler ['HandleDamage',(['CfgEpochClient', 'HandleDamage', ''] call EPOCH_fnc_returnConfigEntryV2)];
|
||||
A3AT:
|
||||
1.
|
||||
Search for:
|
||||
player addEventHandler ['HandleDamage',{}];
|
||||
and replace it with:
|
||||
if (infiSTAR_MOD == 'Epoch') then
|
||||
{
|
||||
player addEventHandler ['HandleDamage',(['CfgEpochClient', 'HandleDamage', ''] call EPOCH_fnc_returnConfigEntryV2)];
|
||||
}
|
||||
else {
|
||||
player addEventHandler ['HandleDamage',{}];
|
||||
};
|
||||
|
||||
## [1.3.1.0] - 2019-03-28
|
||||
### Added
|
||||
|
Loading…
Reference in New Issue
Block a user