Renamed QFLAG constants and moved them to quest.lua

This commit is contained in:
Filip Maj 2022-04-15 12:35:06 -04:00
parent 16c62a08d8
commit aef0f2b400
69 changed files with 338 additions and 256 deletions

23
Data/scripts/quest.lua Normal file
View file

@ -0,0 +1,23 @@
--[[
Special constants used by quest scripts.
]]
-- QUEST FLAGS
QFLAG_OFF = 0;
QFLAG_OFF_HIDE = 1;
QFLAG_TALK = 2;
QFLAG_PUSH = 3;
QFLAG_REWARD = 4;
QFLAG_MAPONLY = 5;
-- SPECIAL SEQUENCE CONSTANTS
SEQ_ACCEPT = 65535;
SEQ_COMPLETE = 65534;
-- NPC LS
NPCLS_GONE = 0;
NPCLS_INACTIVE = 1;
NPCLS_ACTIVE = 2;
NPCLS_ALERT = 3;