12 lines
335 B
Lua
12 lines
335 B
Lua
function stat()
|
|
|
|
text = "<br>Server Stat<br>"
|
|
text = text .. "Exp = x" .. get_env("game.exp_rate") .. "<br>"
|
|
text = text .. "Lak = x" .. get_env("game.chaos_drop_rate") .. "<br>"
|
|
text = text .. "Gold = " .. get_env("game.gold_drop_rate") .. "<br>"
|
|
text = text .. "Item = " .. get_env("game.item_drop_rate") ..
|
|
|
|
|
|
dlg_general(text)
|
|
|
|
end |