任务接取、进度、完成状态

This commit is contained in:
flswld
2023-02-21 19:01:04 +08:00
parent 418655dea9
commit 7d21f24dc8
11 changed files with 746 additions and 52 deletions

View File

@@ -0,0 +1,15 @@
package constant
const (
QUEST_STATE_TYPE_ACCEPT uint32 = 1
QUEST_STATE_TYPE_EXEC uint32 = 2
QUEST_STATE_TYPE_FINISH uint32 = 3
)
const (
QUEST_ACCEPT_COND_TYPE_QUEST_STATE_EQ int32 = 1
)
const (
QUEST_FINISH_COND_TYPE_SCENE_TRIGGER = 6
)