Actions

GMCP Data

From Iron Realms Nexus Client Documentation

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This sample code is called in the default onGMCP function in Reflexes. The onGMCP function is run every time the game receives a GMCP message from the server. This script has been added to that function.

Here is the GMCP message received from the server to the Nexus client.

Char.Vitals { "hp": "818", "maxhp": "818", "mp": "986", "maxmp": "986", "nl": "58", "bal": "1", "eq": "1", "leftarm": "1", "rightarm": "1", "health": "1", "herb": "1", "salve": "1", "toadstool": "1", "pipe": "1", "tree": "1", "focus": "1", "purge": "1", "essence": "2000", "faith": "0", "health_reserve": "3", "mana_reserve": "34", "leftwield": "0", "leftwield_name": "", "rightwield": "0", "rightwield_name": "", "string": "H:818/818 M:986/986 NL:58/100 ", "charstats": [ "Level: 14 (58.10%)" ] }


Here is the code added to the onGMCP function. It finds the current health and mana of the character, as well as what items it has wielded in its left and right hands. It displays this data to the client window (see image below) and then sets the data to a client variable (see image below).

if (args.gmcp_method == "Char.Vitals") 
{
   health= args.gmcp_args.hp;
   mana = args.gmcp_args.mp;
   left = args.gmcp_args.leftwield;
   right = args.gmcp_args.rightwield;
   
   client.print("Health: " + health + " Mana: " + mana + " Left: " + left + " Right: " + right);
   client.set_variable('current-health', health);
   client.set_variable('current-mana', mana);
   client.set_variable('wielded-right', right);
   client.set_variable('wielded-left', left);
};

Here is a screenshot of the function in the reflexes settings window.


Here is a screenshot of the main output window displaying the information.


Here is a screenshot of the data in the Variables settings window.