1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-06-30 11:47:45 +00:00
kawari/resources/scripts/commands/gm/GiveItem.lua

10 lines
197 B
Lua
Raw Normal View History

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