1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-21 04:07:48 +00:00
project-meteor-server/Data/scripts/commands/JournalCommand.lua

16 lines
No EOL
226 B
Lua

require ("global")
--[[
JournalCommand Script
Fired when you try to abandon a quest
--]]
function onEventStarted(player, command, eventType, eventName, questId)
player:AbandonQuest(questId);
player:EndEvent();
end