Skip to content
MMOMinion edited this page Sep 28, 2013 · 24 revisions

Enumerations

  • All enumerations made by us are listed here. Enumerations are pre-defined global variables that can and SHOULD be used everywhere in your lua code for better understanding and to reduce problems that come with patches & updates of the game that change these ingame enumerations.
  • IMPORTANT: THE GLOBAL VARIABLES ARE NOT YET DEFINED IN THE CURRENTLY RUNNING CLOSED BETA TEST!

  • Usage example:
-- the 'd' command is a global command for printing out information into the console
d(FFXIV.JOBS.SUMMONER)  

-- Result: 28 (which is the internal identifier for summoner      

ENTITYTYPE

PC = 1,
BATTLENPC = 2,
EVENTNPC = 3,
AETHERYTE = 5,
RESOURCENODE = 6,
EVENTOBJECT = 7,
MINIPET = 9,

CHARACTERTYPE

PET = 2,
PLAYER = 4,
ENEMY = 5,
Clone this wiki locally