修复开场任务

This commit is contained in:
flswld
2023-03-04 20:14:26 +08:00
parent 266889df36
commit ca616cb08d
17 changed files with 342 additions and 189 deletions

View File

@@ -8,6 +8,18 @@ const (
QUEST_STATE_FAILED = 4
)
const (
QUEST_LOGIC_TYPE_NONE = 0
QUEST_LOGIC_TYPE_AND = 1
QUEST_LOGIC_TYPE_OR = 2
QUEST_LOGIC_TYPE_NOT = 3
QUEST_LOGIC_TYPE_A_AND_ETCOR = 4
QUEST_LOGIC_TYPE_A_AND_B_AND_ETCOR = 5
QUEST_LOGIC_TYPE_A_OR_ETCAND = 6
QUEST_LOGIC_TYPE_A_OR_B_OR_ETCAND = 7
QUEST_LOGIC_TYPE_A_AND_B_OR_ETCAND = 8
)
const (
QUEST_ACCEPT_COND_TYPE_NONE = 0
QUEST_ACCEPT_COND_TYPE_STATE_EQUAL = 1