Alias; PingType - HWRM/KarosGraveyard GitHub Wiki

Calls to the Ping_ stock functions all expect the type of ping to display to be supplied. These types are just the keys of the templates table found in ui/pings.lua. You may extend or truncate this table as you like, which will effect what strings are valid ping types.

If pings.lua is not modified, the stock values are:

  • "anomaly"
  • "battle"
  • "objective"
  • "damage"
  • "circleandarrows"
  • "objectiveandarrows"
  • "newShip"
  • "hyperspaceIn"
  • "hyperspaceOut"

Examples

-- Creates a new ping at 0,0,0 with the type 'anomaly':
Ping_AddVector("Hi there!", "anomaly", { 0, 0, 0 });

Related Pages