1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-09 15:37:45 +00:00
kawari/resources/scripts/commands/debug/CompleteAllQuests.lua
Joshua Goins 927c093915 Send your completed quests list
We aren't going to be adding quests ever or anytime soon, so all you
can do right now is force every quest to unlock with the aptly named
!completeallquests.
2025-07-01 19:51:33 -04:00

6 lines
141 B
Lua

required_rank = GM_RANK_DEBUG
command_sender = "[completeallquests] "
function onCommand(args, player)
player:complete_all_quests()
end