添加示例项目

This commit is contained in:
2026-04-16 16:27:53 +08:00
parent 69a2141804
commit 721fb5a992
192 changed files with 10148 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
function _Dps_AutomaticallyCompleteTasksOnline_Main_() {
Cb_History_MileageSet_Func["_DPS_上线自动完成任务_"] <- function(SUser, Data) {
local Config = GlobalConfig.Get("上线自动完成任务_Lenheart.json");
local QuestArr = Config["需要完成的任务编号"];
foreach(QuestId in QuestArr) {
SUser.ClearQuest_Gm(QuestId);
}
}
}