GXT::get
Jump to navigation
Jump to search
This function is used to get the value of a GXT entry.
Contents
Client-Side Function
JavaScript Syntax
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"