-
Notifications
You must be signed in to change notification settings - Fork 52
Enumerations
MMOMinion edited this page Sep 28, 2013
·
24 revisions
- 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
PC = 1,
BATTLENPC = 2,
EVENTNPC = 3,
AETHERYTE = 5,
RESOURCENODE = 6,
EVENTOBJECT = 7,
MINIPET = 9,
PET = 2,
PLAYER = 4,
ENEMY = 5,