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

16 lines
226 B
Lua
Raw Normal View History

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