mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00
10 lines
193 B
Lua
10 lines
193 B
Lua
|
required_rank = GM_RANK_DEBUG
|
||
|
command_sender = "[gil] "
|
||
|
|
||
|
function onCommand(args, player)
|
||
|
local amount = args[1]
|
||
|
|
||
|
player:add_gil(amount)
|
||
|
printf(player, "Added %s gil.", amount)
|
||
|
end
|