bayuMIR/Mirserver/Mir200/Envir/Extension/UtilServer/Mon.lua
2026-06-12 00:25:44 +08:00

21 lines
No EOL
283 B
Lua

Mon = {}
Mon.EventCfg = {}
function Mon.setint(mon, key, nValue)
if not isnotnull(mon) then
return
end
SetInt(5, mon, key, nValue)
end
function Mon.getint(mon, key)
if not isnotnull(mon) then
return
end
GetInt(5, mon, key)
end
return Mon