GXT::get

From RAGE Multiplayer Wiki
Jump to navigation Jump to search

This function is used to get the value of a GXT entry.

Client-Side Function

C.png C# Js.png JavaScript


JavaScript Syntax
Jslogo.png

mp.game.gxt.get(labelNameOrHash);

Parameters

  • labelNameOrHash: String/Number
    • Name (string) or hash (number) of the GXT entry.

Returns

  • String

Example

Get the value of PM_PAUSE_HDR:

Client-Side
mp.game.gxt.set("PM_PAUSE_HDR", "My Server Name");
mp.gui.chat.push(`Header: ${mp.game.gxt.get("PM_PAUSE_HDR")}`); // "Header: My Server Name"


See Also