mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-14 16:34:42 +02:00
Renamed QFLAG constants and moved them to quest.lua
This commit is contained in:
parent
16c62a08d8
commit
aef0f2b400
69 changed files with 338 additions and 256 deletions
23
Data/scripts/quest.lua
Normal file
23
Data/scripts/quest.lua
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue