Files
DP-S_Script/示例项目/设置服务器等级上限/设置服务器等级上限.nut
2026-04-16 16:27:53 +08:00

12 lines
352 B
Plaintext

function _Dps_SetGameMaxLevel_Logic_() {
local Config = GlobalConfig.Get("设置服务器等级上限_Lenheart.json");
GameManager.SetGameMaxLevel(Config["等级上限"]);
}
function _Dps_SetGameMaxLevel_Main_() {
_Dps_SetGameMaxLevel_Logic_();
}
function _Dps_SetGameMaxLevel_Main_Reload(OldConfig) {
_Dps_SetGameMaxLevel_Logic_();
}