mirror of
https://github.com/emagi/eq2emu
synced 2026-08-12 18:23:04 -04:00
1,012 B
1,012 B
Function: QuestStepIsComplete(player, quest_id, step_id)
Description: Returns if the Player has completed the step_id in the specified quest_id.
Parameters:
player(Spawn) - Spawn object representingplayer.quest_id(uint32) - Integer valuequest_id.step_id(uint32) - Integer valuestep_id.
Returns: None.
Example:
-- From ItemScripts/aboarfiendhoof.lua
function examined(Item, Player)
if not HasQuest(Player, LoreAndLegendBoarfiend) and not HasCompletedQuest(Player, LoreAndLegendBoarfiend) then
OfferQuest(nil, Player, LoreAndLegendBoarfiend)
elseif not QuestStepIsComplete(Player, LoreAndLegendBoarfiend, 4) then
conversation = CreateConversation()
AddConversationOption(conversation, "Begin to study...", "Step_Complete")
AddConversationOption(conversation, "No, put away", "CloseItemConversation")
StartDialogConversation(conversation, 2, Item, Player, "This item can be used to learn the secrets of the boarfiend. Do you wish to study it?")
end