To use an item from your inventory, click on it.
(set: $inv to (a:))
[[Next->1]]
(set: $cover to "no")
Check [Inventory]<inv|(click: ?inv)[
$inv]
(click: ?umb)[
You have no use for this here.](click: ?zeb)[
You have no use for this here.](click: ?bas)[
You have no use for this here.]
Check [Inventory]<inv|(click: ?inv)[
$inv]
(click: ?umb)[
You have no use for this here.](click: ?zeb)[
You have no use for this here.](click: ?bas)[
You have no use for this here.]
You found an UMBRELLA.
(set: $inv to it + (a: "[Umbrella]<umb|"))
[[Next->2]]
Check [Inventory]<inv|(click: ?inv)[
$inv]
(click: ?umb)[
You have no use for this here.](click: ?zeb)[
You have no use for this here.](click: ?bas)[
You have no use for this here.]
Look! It's a ZEBRA carrying a BASKETBALL.
(set: $inv to it + (a: " [Zebra]<zeb|", " [Basketball]<bas|"))
[[Next->3]]
Check [Inventory]<inv|(click: ?inv)[
$inv]
(click: ?umb)[
You have no use for this here.](click: ?zeb)[
You have no use for this here.](click: ?bas)[
You have no use for this here.]
The ZEBRA ran away.
(set: $inv to it - (a: " [Zebra]<zeb|"))
[[Next->4]]
Check [Inventory]<inv|(click: ?inv)[
$inv]
(click: ?umb)[
You have no use for this here.](click: ?zeb)[
You have no use for this here.](click: ?bas)[
You have no use for this here.]
Some kids are playing basketball.
[[Next->5]]
Check [Inventory]<inv|(click: ?inv)[
$inv]
(click: ?umb)[
You have no use for this here.](click: ?zeb)[
You have no use for this here.](click: ?bas)[
You play basketball with them.(set: $inv to it - (a: " Basketball"))]
It starts to rain.
[[Next->5.5]]
Check [Inventory]<inv|(click: ?inv)[
$inv]
(click: ?umb)[
You open the umbrella.(set: $cover to "yes")](click: ?zeb)[
You have no use for this here.](click: ?bas)[
You have no use for this here.]
(if: $cover is "yes")[(goto: "6")]
(if: $cover is "no")[(goto: "Rain")]
You get hypothermia and die.
If only you had used your umbrella.
The End.
You stay dry in the rain.
The End.