mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-14 01:17:46 +00:00
9 lines
204 B
Lua
9 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
|