How do I make it so that when the user finishes the 7th prompt and then exits the prompt it continues on the 8th?
Go to this link (there is too much code to paste). Gem Hunt (inspect the page for HTML and css). and go to the quests tab and click on Fred the crafter speed through the obviously correct ones then when you get to “ALright I have unlocked it for you go craft a stoen furnace and come back.” Click ok click it again and you wills ee it restarts I want this to restart on 8 but I have been trying but it does not work.
JAVASCRIPT
function quest2() {
if (stoneAmt >= 25) {
quest2Popup();
const textElement = document.getElementById('text1')
const optionButtonsElement = document.getElementById('option-buttons1')
let state = {}
function startGame() {
state = {}
showTextNode(1)
}
function showTextNode(textNodeIndex) {
const textNode = textNodes.find(textNode => textNode.id === textNodeIndex)
textElement.innerText = textNode.text
while (optionButtonsElement.firstChild) {
optionButtonsElement.removeChild(optionButtonsElement.firstChild)
}
textNode.options.forEach(option => {
if (showOption(option)) {
const button = document.createElement('button')
button.innerText = option.text
button.classList.add('btn')
button.addEventListener('click', () => selectOption(option))
optionButtonsElement.appendChild(button)
}
})
}
function showOption(option) {
return option.requiredState == null || option.requiredState(state)
}
function selectOption(option) {
const nextTextNodeId = option.nextText
if (nextTextNodeId < 0) {
return startGame()
}
if (nextTextNodeId == 50) {
document.getElementById("craftitem").style.display = "block";
quest2Popup();
}
if (nextTextNodeId == 100) {
quest2Popup();
}
state = Object.assign(state, option.setState)
showTextNode(nextTextNodeId)
}
const textNodes = [
{
id: 1,
text: "Anvils are Black \n Handles are Wood \n And crafting is a Joy!",
options: [
{
text: 'Anvils?',
nextText: 2
},
{
text: 'I hate poems',
nextText: 12
}
]
},
{
id: 2,
text: 'You don\'t know anvils?',
options: [
{
text: 'I don\'t',
nextText: 3
}
]
},
{
id: 3,
text: 'They are used for crafting.',
options: [
{
text: 'What is this \'crafting\'',
nextText: 4
},
{
text: 'Ah I know what this is',
nextText: 5
}
]
},
{
id: 4,
text: 'Crafting is the procces of making useful items by using pther items.',
options: [
{
text: 'I get it now',
nextText: 5
}
]
},
{
id: 5,
text: 'Good! \n you look smart maybe I can teach you it.',
options: [
{
text: 'Yes Please',
nextText: 7
},
{
text: 'NO',
nextText: 6
}
]
},
{
id: 6,
text: 'Fine.',
options: [
{
text: 'End',
nextText: 100
}
]
},
{
id: 7,
text: 'ALright I have unlocked it for you go craft a stoen furnace and come back.',
options: [
{
text: 'Ok',
nextText: 50
}
]
},
{
id: 8,
text: 'Thanks! I can find Quartz, emeralds, rubys, and may more!',
options: [
{
text: 'End',
nextText: 0
},
{
text: 'What is "many more?"?',
nextText: 9
}
]
},
{
id: 9,
text: 'As I said before, I can find Quartz, emeralds, rubys.',
options: [
{
text: 'Continue',
nextText: 10
}
]
},
{
id: 10,
text: 'The rest is a secret only if I find it I will tell you.',
options: [
{
text: 'Done',
nextText: 0
}
]
},
{
id: 12,
text: 'Well that hurt my feelings',
options: [
{
text: 'End',
nextText: 100
}
]
}
]
startGame();
}
else {
failQuestspopo();
}
}