Quantcast
Channel: Help! with 2.0 - Twine Forum
Viewing all articles
Browse latest Browse all 1844

Need help setting (click:) questions to behave to my condition!!

$
0
0
On this passage the reader/player gets the option of 4 questions displayed, each with their own respective answers using the namedhook calls.

What I want is for the reader to select any of the questions displayed until the 4th selected question displays another answer that tells the reader the NPC is no longer interested in answer questions.

So far I've been unsuccessful in my attempts to right a decent condition.


Start of Passage
You [call out]<p1| to figure in the hole.

(click:?p1)[“What is it you want stranger, I’m busy.”

The figure replies, never taking its eyes away from its work.

It continues to dig, but seems responsive. You may ask it [questions]<p2| if you wish.]

(click:?p2)[
[What are you doing?]<cl1|
[That's quite a hole you've dug for yourself...]<cl2|
[Excuse me, do you know where the fog went?!]<cl3|
[Do you know where we are?! How we got here?!]<cl4|
{
(if: $clickcount > 3)[(display: "Aftercallout")]
(elseif: $clickcount < 3)[(click:?cl1)["Isn’t it obvious! These were shattered during transfer, so I’m getting rid of the evidence.]](else:)[(set: $clickcount to it + 1)]
}
{
(if: $clickcount > 3)[(display: "Aftercallout")]
(elseif: $clickcount < 3)[(click:?cl2)["This is nothing. You should see all the other holes I've dug up in this place."]](else:)[(set: $clickcount to it + 1)]
}
{
(if: $clickcount > 3)[(display: "Aftercallout")]
(elseif: $clickcount < 3)[(click:?cl3)["<i>the figure briefly pauses</i>… <i>then continues digging.</i>"]](else:)[(set: $clickcount to it + 1)]
}
{
(if: $clickcount > 3)[(display: "Aftercallout")]
(elseif: $clickcount < 3)[(click:?cl4)["I’m certain I’ve read the answer on a pamphlet somewhere."]](else:)[(set: $clickcount to it + 1)]
}]
End

"Aftercallout" is the is the passage/result text I would like to show up for any 4th question clicked.

Can anyone help? You're my only hope!...sorta

Viewing all articles
Browse latest Browse all 1844

Trending Articles