1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-13 17:07:45 +00:00
kawari/resources/scripts/commands/debug/UnlockContent.lua

8 lines
204 B
Lua

required_rank = GM_RANK_DEBUG
command_sender = "[unlockcontent] "
function onCommand(args, player)
local id = args[1]
player:unlock_content(id)
printf(player, "Content %s unlocked!", id)
end