u/umapistolaparadjeca

putting youtube videos inside twine?

Part of my game includes looking through an array of videos to find something, but idk how id be able to put youtube links to work on twine? help?

reddit.com
u/umapistolaparadjeca — 5 days ago

random password help.

(set: _one to (random: 0,9))
(set: _two to (random: 0,9))
(set: _three to (random: 0,9))
(set: _four to (random: 0,9))
(set: _five to (random: 0,9))
(set: _six to (random: 0,9))

(set: $password to _one + _two + _three + _four + _five + _six)
(set: $password to (str: $password))

This is the code I did. It works, yes, but its ugly to look at progamming wise. Hwlp?

reddit.com
u/umapistolaparadjeca — 10 days ago

{

|Inventory>[

INVENTORY:

`(if: $player's inventory's length is 0)`

[

Your inventory is empty!

]

(else:)

[

	`(for: each _i, ...$player's inventory)`

		`[`

(print: _i)

]

	`]`

]

        }
reddit.com
u/umapistolaparadjeca — 18 days ago

So by default harlowe content starts not to the absolute right but I wish it didn't have it. I know I can position it with CSS but can I just remove this automatic spacing?

reddit.com
u/umapistolaparadjeca — 22 days ago