mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
86 lines
2.8 KiB
Lua
86 lines
2.8 KiB
Lua
-- Sequence Numbers
|
|
--[[
|
|
The current section of the quest the player is on. Quests are divided into "sequences" with a different
|
|
objective for each one. Depending on the sequence # the journal log will have text appeneded to it.
|
|
Check xtx/quest for valid sequence values.
|
|
]]
|
|
SEQ_000 = 0;
|
|
SEQ_005 = 5;
|
|
SEQ_010 = 10;
|
|
|
|
-- Quest Variables
|
|
--[[
|
|
Locally stored variables, up to the script writer to make them up but use these to track things the player
|
|
has done.
|
|
]]
|
|
local questFlag1 = false;
|
|
local questFlag2 = false;
|
|
local questFlag3 = false;
|
|
local killCounter1 = 0;
|
|
local killCounter2 = 0;
|
|
local killCounter3 = 0;
|
|
|
|
-- Map Markers
|
|
--[[
|
|
A list of markers to show when the player opens the journal and clicks "View Map". References the
|
|
quest_marker sheet.
|
|
]]
|
|
local seq000_Markers = {
|
|
};
|
|
|
|
-- Actors in this quest
|
|
--[[
|
|
A list of actor class ids that the quest will use. Good for adding it to the ENPC list and checking against
|
|
them when events are triggered.
|
|
]]
|
|
NPC_SOMEACTOR = 0;
|
|
|
|
-- Called when a quest is started. Initialize any global variables across all phases here and always start
|
|
-- the first sequence (usually SEQ_000).
|
|
function onStart(player, quest)
|
|
quest::StartSequence(SEQ_000);
|
|
end
|
|
|
|
-- Called when the quest is finished, either from abandonment or completion. Clean up quest items or w.each
|
|
-- here.
|
|
function onFinish(player, quest)
|
|
end
|
|
|
|
-- Called when a sequence starts, either from the quest progressing to the next sequence, or from the
|
|
-- player loading in with an already in progress quest. This class should add all appropriate ENPCs and
|
|
-- configure them to the current quest state (flags, counters, etc).
|
|
function onSequence(player, quest, seqNum)
|
|
end
|
|
|
|
-- Called when an ENPC is talked to; only ENPCs that are currently added to the quest will trigger this.
|
|
function onTalk(player, quest, npc, eventName)
|
|
end
|
|
|
|
-- Called when an ENPC is emoted to; only ENPCs that are currently added to the quest will trigger this.
|
|
function onEmote(player, quest, npc, emote, eventName)
|
|
end
|
|
|
|
|
|
-- Called when an ENPC is pushed; only ENPCs that are currently added to the quest will trigger this.
|
|
function onPush(player, quest, npc, eventName)
|
|
end
|
|
|
|
-- Called when an ENPC is kicked; only ENPCs that are currently added to the quest will trigger this.
|
|
function onNotice(player, quest, npc, eventName)
|
|
end
|
|
|
|
-- Called when the player clicks on an NPC Linkshell. Check the id and send a message if there is one.
|
|
function onNpcLS(player, npcLSId)
|
|
end
|
|
|
|
-- This is called by the RequestQuestJournalCommand to retrieve any extra information about the quest.
|
|
-- Check xtx/quest for valid values.
|
|
function getJournalInformation(player, quest)
|
|
return {};
|
|
end
|
|
|
|
-- This is called by the RequestQuestJournalCommand when map markers are request.
|
|
-- Check quest_marker for valid values. This should return a table of map markers.
|
|
function getJournalMapMarkerList(player, quest)
|
|
return {};
|
|
end |