37 lines
1.3 KiB
Lua
Executable file
37 lines
1.3 KiB
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/askeletonobjurgatoryhunger.lua
|
|
Script Author : AussieGlen
|
|
Script Date : 2021.12.29 08:12:21
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local LoreAndLegendSkeleton = 5396
|
|
|
|
function examined(Item, Player)
|
|
local LnLAccept = GetRuleFlagFloat("R_World", "LoreAndLegendAccept")
|
|
if LnLAccept > 0 and not HasQuest(Player, LoreAndLegendSkeleton) and not HasCompletedQuest(Player, LoreAndLegendSkeleton) then
|
|
OfferQuest(nil, Player, LoreAndLegendSkeleton)
|
|
else
|
|
conversation = CreateConversation()
|
|
if HasQuest(Player, LoreAndLegendSkeleton) and GetQuestStepProgress(Player, LoreAndLegendSkeleton, 6)==0 then
|
|
AddConversationOption(conversation, "Begin to study...", "Step_Complete")
|
|
end
|
|
AddConversationOption(conversation, "No, put away", "CloseItemConversation")
|
|
StartDialogConversation(conversation, 2, Item, Player, "This item can be used to learn the secrets of the skeleton. Do you wish to study it?")
|
|
end
|
|
end
|
|
|
|
function Step_Complete(Item, Player)
|
|
if HasItem(Player,2736,1) then
|
|
SetStepComplete(Player, LoreAndLegendSkeleton, 6)
|
|
CloseItemConversation(Item, Player)
|
|
RemoveItem(Player, 2736)
|
|
end
|
|
end
|
|
|
|
|
|
function item_description(Item, Spawn)
|
|
return "You have already examined this item."
|
|
end
|
|
|