another ?
Posted: Mon Mar 25, 2019 6:09 pm
this item questsdisplay pages on screen with response
in one section on live if you read that page you get an offer quest
if you then accept the quest the next page is displayed, if you decline the quest the book is closed
so in the above is there a way to wait for a response? from the offer quest?
in one section on live if you read that page you get an offer quest
if you then accept the quest the next page is displayed, if you decline the quest the book is closed
Code: Select all
function ReadStory1(Item, Player)
offerquest (Item, Player,474)
-- if accepted then
conversation = CreateConversation()
AddConversationOption(conversation, "Continue Story 1","ContStory1")
AddConversationOption(conversation, "Close")
StartDialogConversation(conversation, 2, Item, Player, " ")
end