Files
KPLibSumava/kp_liberation.brf_sumava/KP/KPPLM/fnc/fn_showRankData.sqf
Samuele Lorefice 9e023649ac initial files
2025-05-24 16:17:33 +02:00

40 lines
1.0 KiB
Plaintext

/*
KPPLM_fnc_showRankData
File: fn_showRankData.sqf
Author: Wyqer - https://github.com/KillahPotatoes
Date: 2018-08-05
Last Update: 2018-11-10
License: GNU General Public License v3.0 - https://www.gnu.org/licenses/gpl-3.0.html
Description:
Reads the KP Ranks data of the current player and displays it in the player menu dialog.
Parameter(s):
NONE
Returns:
Function reached the end [BOOL]
*/
// Dialog controls
private _dialog = findDisplay 75803;
private _ctrlRank = _dialog displayCtrl 758032;
private _ctrlScore = _dialog displayCtrl 758034;
private _ctrlPlaytime = _dialog displayCtrl 758036;
private _ctrlNoRanks = _dialog displayCtrl 758037;
// Disable no ranks hint
_ctrlNoRanks ctrlShow false;
// Show data in dialog
_ctrlRank ctrlSetText ([] call KPR_fnc_getRankName);
if (KPR_levelSystem) then {
_ctrlScore ctrlSetText str ([] call KPR_fnc_getScore);
} else {
_ctrlScore ctrlSetText (localize "STR_KPPLM_NOLVLSYSTEM");
};
_ctrlPlaytime ctrlSetText ([] call KPR_fnc_getPlaytime);
true