Forgot to add script for quest abandon.

This commit is contained in:
Filip Maj 2017-04-15 16:37:14 -04:00
parent 9a2a79095c
commit 9c2cdf9b5d

View File

@ -0,0 +1,16 @@
require ("global")
--[[
JournalCommand Script
Fired when you try to abandon a quest
--]]
function onEventStarted(player, command, triggerName, questId)
player:AbandonQuest(questId);
player:EndEvent();
end