diff --git a/data/scripts/commands/JournalCommand.lua b/data/scripts/commands/JournalCommand.lua new file mode 100644 index 00000000..8f5c3c8a --- /dev/null +++ b/data/scripts/commands/JournalCommand.lua @@ -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 \ No newline at end of file