Skip to content

Commit

Permalink
Update changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterHLunaticwraith committed Nov 22, 2019
1 parent 5148cd4 commit 5a5d191
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions .github/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Core
* Added : Loadout recap in diary will now display loadout weight as well as occupied space in vest, uniform, and backpack. As with the rest it is updated everytime inventory is closed.
* Changed : Roster was only added to diary after the briefing phase, now it will be there from the start.
* Tweaked : Briefing roster should now get refresehed every time a new player gets connected.
* Tweaked : Briefing roster should now get refreshed every time a new player gets connected.
* Added some new global variables :
**MRH_allPlayers** = All players minus headless clients.
**MRH_allAlivePlayers** = All players that are considered 'Alive' by milsim tools minus headless clients.
Expand All @@ -15,30 +15,30 @@ The variables are refreshed on all clients and the server :
-Whenever a player's conscious state is changed
-Whenever a player respawns
-Whenever the setRevived function is called on a unit
* You can MRH_fnc_MilsimTools_Core_allPlayers to manually update them on a local machine, the function also returns one of these depending on parameters sent to it, see function header for more.
* You can call MRH_fnc_MilsimTools_Core_allPlayers to manually update them on a local machine, the function also returns one of these depending on parameters sent to it, see function header for more.
* Added :
##### CBA Events
```
"MRH_playerConnected_EH", //same parametres as player connected EH but raised on every client
"MRH_playerDisconnected_EH", //same parametres as player disconnected EH but raised on every client
"MRH_playerOnly_ace_unconscious", // same as ace_uncounsious event, raised globally but only when a player's state changes params ["_unit", "_state"];
"MRH_playerConnected_EH", //same parametres as player connected EH but raised globally
"MRH_playerDisconnected_EH", //same parametres as player disconnected EH but raised globally
"MRH_playerOnly_ace_unconscious", // same as ace_uncounsious event, raised globally but only when a player's state changes (not raised for AIs unlike the ACE3 event its based on) params ["_unit", "_state"];
"MRH_playerKilled", Same as MPKilled
"MRH_playerRespawned_global", // raised globally when a player respawns params ["_unit", "_corpse"];
"MRH_playerWasSetAsRevived" // raised globally when an admin resets "hasDied" condition on a player (via the admin menu or the setRevived function) target player is passed as a parameter.
```

## Radio Chatter
* Changed : Volume of sounds of default radio lowered to 5 . Since arma A3 v1.91.145537 any volume exceeding 5 will not play since the function uses <a href="https://community.bistudio.com/wiki/playSound3D">playSound3D</a> getSoundFile function will automatically reduce returned volume to file if volume is above that.
* Changed : Volume of sounds of default radio lowered to 5 . Since arma A3 v1.91.145537 any volume exceeding 5 will not play since the function uses <a href="https://community.bistudio.com/wiki/playSound3D">playSound3D</a> ,getSoundFile function will automatically reduce returned volume to 5 if volume is above that.

## Heli Taxi :
* Tweaked: Heli taxi now makes use of the core clear waypoints function, should opefully fix some issues when setting a new course
* Tweaked: Heli taxi now makes use of the core clear waypoints function, should hopefully fix some issues when setting a new course

## Soldier tab
* Added : BluFor Tracker on tablet
> Blufor tracker only works when the tablet is connected to an antenna. On the tracker units will only show up if they are equipped with one of the following items:
1. "MRH_SoldierTab", PDA from milsim tools
2. "MRH_BluForTransponder", transponder from MRH Satellite mod
3. "ItemcTab", rugged tabler from CTab mod
3. "ItemcTab", rugged tablet from cTab mod
4. "ItemAndroid", android device from cTab mod
5. "ACE_microDAGR" from ACE3
In addition, units will show on the blufor tracker if they are in a vehicle that's listed by the mod. by default most of vanilla, RHS USAF, RHS AFRF and RHS GREF APCs, Tanks, MRAPS, helicopters, boats and planes are included.
Expand All @@ -56,7 +56,22 @@ Example(s):
["My_item"]call MRH_fnc_MilsimTools_Core_addToBFTenabledList;
[["My_veh1","My_veh2","My_veh3","My_item1","My_item2"]]call MRH_fnc_MilsimTools_Core_addToBFTenabledList;
```
or from an addon, add the property to a cfgVehicles class //not yet implemented for cfgWeapons items

```
mrh_satcom = 1;
```

or list them in
```
class MRH_BFT_enabledClasses
{
class enabledClasses
{
classes[]={};//vehicles or items
};
};
```
* Added : In vehicles with satcom capabilities players can connect their tablet's to the vehicle's satcom system, they can also connect it from outside but distance limitations apply and you will loose the signal when going too far frome a vehicle.
> Addon builders can add the property
```
Expand Down

0 comments on commit 5a5d191

Please sign in to comment.