2015-05-13 19:05:13 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
|
|
|
* Loads the version info HTML box from main menu
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Display (from onMouseMoving) <DISPLAY>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* onMouseMovingEvent execVM "script_loadMainMenuBox.sqf";
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
if (missionNamespace getVariable [QGVAR(newsLoaded), false]) exitWith {};
|
|
|
|
GVAR(newsLoaded) = true;
|
|
|
|
|
|
|
|
private ["_version"];
|
|
|
|
_version = getText (configFile >> "CfgPatches" >> "ace_main" >> "versionStr");
|
|
|
|
|
|
|
|
((_this select 0) displayCtrl 68) ctrlSetText format ["Installed Version: %1", _version];
|
2015-05-28 08:22:19 +00:00
|
|
|
((_this select 0) displayCtrl 69) htmlLoad "http://ace3mod.com/version.html";
|