mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00
16 lines
No EOL
217 B
Lua
16 lines
No EOL
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 |