You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/changelog.md
+23-8Lines changed: 23 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
## Core
4
4
* 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.
5
5
* Changed : Roster was only added to diary after the briefing phase, now it will be there from the start.
6
-
* Tweaked : Briefing roster should now get refresehed every time a new player gets connected.
6
+
* Tweaked : Briefing roster should now get refreshed every time a new player gets connected.
7
7
* Added some new global variables :
8
8
**MRH_allPlayers** = All players minus headless clients.
9
9
**MRH_allAlivePlayers** = All players that are considered 'Alive' by milsim tools minus headless clients.
@@ -15,30 +15,30 @@ The variables are refreshed on all clients and the server :
15
15
-Whenever a player's conscious state is changed
16
16
-Whenever a player respawns
17
17
-Whenever the setRevived function is called on a unit
18
-
* 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.
18
+
* 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.
19
19
* Added :
20
20
##### CBA Events
21
21
```
22
-
"MRH_playerConnected_EH", //same parametres as player connected EH but raised on every client
23
-
"MRH_playerDisconnected_EH", //same parametres as player disconnected EH but raised on every client
24
-
"MRH_playerOnly_ace_unconscious", // same as ace_uncounsious event, raised globally but only when a player's state changes params ["_unit", "_state"];
22
+
"MRH_playerConnected_EH", //same parametres as player connected EH but raised globally
23
+
"MRH_playerDisconnected_EH", //same parametres as player disconnected EH but raised globally
24
+
"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"];
25
25
"MRH_playerKilled", Same as MPKilled
26
26
"MRH_playerRespawned_global", // raised globally when a player respawns params ["_unit", "_corpse"];
27
27
"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.
28
28
```
29
29
30
30
## Radio Chatter
31
-
* 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 <ahref="https://community.bistudio.com/wiki/playSound3D">playSound3D</a> getSoundFile function will automatically reduce returned volume to file if volume is above that.
31
+
* 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 <ahref="https://community.bistudio.com/wiki/playSound3D">playSound3D</a> ,getSoundFile function will automatically reduce returned volume to 5 if volume is above that.
32
32
33
33
## Heli Taxi :
34
-
* Tweaked: Heli taxi now makes use of the core clear waypoints function, should opefully fix some issues when setting a new course
34
+
* Tweaked: Heli taxi now makes use of the core clear waypoints function, should hopefully fix some issues when setting a new course
35
35
36
36
## Soldier tab
37
37
* Added : BluFor Tracker on tablet
38
38
> 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:
39
39
1. "MRH_SoldierTab", PDA from milsim tools
40
40
2. "MRH_BluForTransponder", transponder from MRH Satellite mod
41
-
3. "ItemcTab", rugged tabler from CTab mod
41
+
3. "ItemcTab", rugged tablet from cTab mod
42
42
4. "ItemAndroid", android device from cTab mod
43
43
5. "ACE_microDAGR" from ACE3
44
44
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.
or from an addon, add the property to a cfgVehicles class //not yet implemented for cfgWeapons items
59
60
61
+
```
62
+
mrh_satcom = 1;
63
+
```
64
+
65
+
or list them in
66
+
```
67
+
class MRH_BFT_enabledClasses
68
+
{
69
+
class enabledClasses
70
+
{
71
+
classes[]={};//vehicles or items
72
+
};
73
+
};
74
+
```
60
75
* 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.
0 commit comments