-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from tuntematonjr/1.6.0
1.6.0
- Loading branch information
Showing
30 changed files
with
927 additions
and
310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Author: [Tuntematon] | ||
* [Description] | ||
* | ||
* Arguments: | ||
* 0: The first argument <STRING> | ||
* 1: The second argument <OBJECT> | ||
* 2: Multiple input types <STRING|ARRAY|CODE> | ||
* 3: Optional input <BOOL> (default: true) | ||
* 4: Optional input with multiple types <CODE|STRING> (default: {true}) | ||
* 5: Not mandatory input <STRING> (default: nil) | ||
* | ||
* Return Value: | ||
* The return value <BOOL> | ||
* | ||
* Example: | ||
* ["something", player] call Tun_Respawn_fnc_briefingNotes | ||
*/ | ||
#include "script_component.hpp" | ||
|
||
private _text = "<font face='PuristaBold' size='30'>MSP settings</font><br/>"; | ||
|
||
_text = format ["%1<br/>- Tickets can be checked from MSP: %2",_text, GVAR(allowCheckTicketsMSP)]; | ||
|
||
_text = format ["%1<br/><br/><font face='PuristaBold' size='17'>Report enemies</font><br/>",_text]; | ||
_text = format ["%1<br/>- Report enemies: %2",_text, GVAR(report_enemies)]; | ||
if (GVAR(report_enemies)) then { | ||
_text = format ["%1<br/>- Report enemies interval: %2",_text, GVAR(report_enemies_interval)]; | ||
_text = format ["%1<br/> -%2",_text, "STR_Tun_MSP_CBA_tooltip_report_enemies_interval" call BIS_fnc_localize]; | ||
|
||
_text = format ["%1<br/>- Report enemies range: %2",_text, GVAR(report_enemies_range)]; | ||
_text = format ["%1<br/> -%2",_text, "STR_Tun_MSP_CBA_tooltip_report_enemies_range" call BIS_fnc_localize]; | ||
}; | ||
|
||
_text = format ["%1<br/><br/><font face='PuristaBold' size='17'>Contested settings</font><br/>",_text]; | ||
_text = format ["%1<br/>- Contested check interval: %2",_text, GVAR(contested_check_interval)]; | ||
_text = format ["%1<br/> -%2",_text, "STR_Tun_MSP_CBA_tooltip_contested_check_interval" call BIS_fnc_localize]; | ||
|
||
_text = format ["%1<br/>- Contested range max: %2",_text, GVAR(contested_radius_max)]; | ||
_text = format ["%1<br/> -%2",_text, "STR_Tun_MSP_CBA_tooltip_contested_max" call BIS_fnc_localize]; | ||
|
||
_text = format ["%1<br/>- Contested range min: %2",_text, GVAR(contested_radius_min)]; | ||
_text = format ["%1<br/> -%2",_text, "STR_Tun_MSP_CBA_tooltip_contested_min" call BIS_fnc_localize]; | ||
|
||
_text = format ["%1<br/><br/><font color='#4F4F4F' size='11'>Powered By TuntematonEngine v%2.%3.%4</font>", _text, MAJOR, MINOR, PATCHLVL]; | ||
|
||
player createDiaryRecord ["Diary",["Respawn info",_text]]; | ||
player createDiarySubject ["Respawn info","Tun - Respawn info"]; | ||
player createDiaryRecord ["Respawn info",["Tun - Respawn info",_text]]; |
Oops, something went wrong.