Skip to content

Commit 9b6a37e

Browse files
authored
Merge pull request #154 from ArmaOverthrow/fix-silenthint
fix beeping sound during player job
2 parents 255a8fd + 6d40c8c commit 9b6a37e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

addons/overthrow_main/missions/kill.sqf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ _params = [0,_numtokill];
2222
params ["_p","_faction","_factionName"];
2323
_p params ["_start","_target"];
2424
_numkills = (player getVariable ["BLUkills",0]) - _start;
25-
hint format["Kills: %1/%2",_numkills,_target];
25+
hintSilent format["Kills: %1/%2",_numkills,_target];
2626
(_numkills >= _target)
2727
},{
2828
//No cleanup required

addons/overthrow_main/missions/recon.sqf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ _title = format["%1 Recon",_destinationName];
6767
};
6868
}foreach(allunits);
6969
_need = round(_count * 0.5);
70-
hint format["Military spotted: %1",_known];
70+
hintSilent format["Military spotted: %1",_known];
7171
(_known >= _need) or _need <= 0
7272
};
7373
false

addons/overthrow_main/missions/tutorial/tut_CRIM.sqf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,6 @@ while {sleep 0.5; !_done} do {
8282
if(_num >= _total) then {
8383
_done = true;
8484
};
85-
hint format["Kills: %1/%2",_num,_total];
85+
hintSilent format["Kills: %1/%2",_num,_total];
8686
};
8787
};

addons/overthrow_main/missions/tutorial/tut_NATO.sqf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ while {sleep 0.5; !_done} do {
7777
if(_num >= _total) then {
7878
_done = true;
7979
};
80-
hint format["Kills: %1/%2",_num,_total];
80+
hintSilent format["Kills: %1/%2",_num,_total];
8181
};
8282
};
8383
[player,250] call OT_fnc_rewardMoney;

0 commit comments

Comments
 (0)