Argh.
I've run face first into a brick wall over what was supposed to be one of the simplest and most fundamental aspects of my story.
Can someone explain to me why the following won't work as a script in a link?
%RAND := 1D8
IF %RAND = 1
$PAGETEXT := $PAGETEXT + "blah blah blah"
%EFFECT% := %EFFECT + 1
IF %RAND = 2
THEN
$PAGETEXT := $PAGETEXT + "blah blah blah"
%EFFECT := %EFFECT - 1
...and so on to cover 1 through 8.
I click the link and the page is just blank.
I'm praying it's just something really simple I've overlooked because damn, I'll have to scrap the entire story at this point if this isn't doable. And I'm raging just a teensy weensy bit here because this really did look so straightforward. :/
Hmm.
Okay so further testing reveals that %EFFECT is processing...all eight times at once. Not exactly what I had in mind. Various strategic placements of BEGIN and END had no effect, and the text is still not showing at all.