blob: afba8a70de3ae4527323f95b7a0e805f5607196b (
plain)
1
2
3
4
5
6
7
8
9
10
|
untyped
global function NS_SetVersionLabel
void function NS_SetVersionLabel()
{
var mainMenu = GetMenu( "MainMenu" ) //Gets main menu element
var versionLabel = GetElementsByClassname( mainMenu, "nsVersionClass" )[0] //Gets the label from the mainMenu element.
Hud_SetText( versionLabel, "v" + NSGetModInformation( "Northstar.Client" )[0].version ) //Sets the label text (Getting Northstar version from Northstar.Client)
}
|