DP-S-Script/OfficialProject/设置服务器等级上限/设置服务器等级上限.nut

12 lines
343 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() {
_Dps_SetGameMaxLevel_Logic_();
}