添加示例项目

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,11 @@
{
"ProjectName": "是否允许创建缔造者",
"ProjectDescribe": "是否允许创建缔造者.",
"ProjectAuthor": "倾泪寒",
"ProjectVersion": 1.0,
"ProjectConfig": "是否允许创建缔造者_Lenheart.json",
"ProjectFiles": [
"是否允许创建缔造者.nut"
],
"ProjectRunFunc": "_Dps_EnableTheCreationOfCreators_Main_"
}

View File

@@ -0,0 +1,16 @@
function _Dps_EnableTheCreationOfCreators_Logic_()
{
local Config = GlobalConfig.Get("是否允许创建缔造者_Lenheart.json");
Sq_WriteByteArr(S_Ptr("0x81C029F"), Config["是否允许创建"] ? [0xF] : [0xA]);
}
function _Dps_EnableTheCreationOfCreators_Main_()
{
GameManager.OpenCreateJob_CreatorMage();
}
function _Dps_EnableTheCreationOfCreators_Main_Reload_(OldConfig)
{
GameManager.OpenCreateJob_CreatorMage();
}

View File

@@ -0,0 +1,3 @@
{
"是否允许创建": true
}