mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 20:27:47 +00:00
16 lines
217 B
Lua
16 lines
217 B
Lua
![]() |
require ("global")
|
||
|
|
||
|
--[[
|
||
|
|
||
|
JournalCommand Script
|
||
|
|
||
|
Fired when you try to abandon a quest
|
||
|
|
||
|
--]]
|
||
|
|
||
|
function onEventStarted(player, command, triggerName, questId)
|
||
|
|
||
|
player:AbandonQuest(questId);
|
||
|
player:EndEvent();
|
||
|
|
||
|
end
|