mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00
9 lines
197 B
Lua
9 lines
197 B
Lua
required_rank = GM_RANK_DEBUG
|
|
command_sender = "[item] "
|
|
|
|
function onCommand(args, player)
|
|
local id = args[1]
|
|
|
|
player:add_item(id)
|
|
printf(player, "Added %s to your inventory.", id)
|
|
end
|