Sad Backstory
My current WIP aims to generate a new experience every time it’s played while maintaining quality, interest and, most importantly, entertainment value. I hope to do this by randomly generating the experience, characters, plots, world, etc. and as such, arrays have become a useful tool.
In CS, a simple array can be determined. This example generates and assigns random names to array elements (Character IDs) by incrementing the Array Index and repeating the process until a predetermined amount x is reached. For this setup, the *create CharID# needs to range from CharID1 to CharIDx, and needs to be established from the outset.
*label top
*set gennum + 1
*set gentext "charid" & gennum
*gosub random_name
*set {gentext} name
*if gennum = x
*finish
*else
*goto top
Clearly, this is tedious, but necessary.
It would be optimal if these arrays could be dynamic, where x is not pre-determined, but determined at the beginning of the playthrough itself, where CS would create as many array elements as needed.
So, instead of declaring at startup:
*create charid1 ""
*create charid2 ""
*create charid3 ""
...
*create charidx ""
We would like to say, "This playthrough is going to have 45 characters, so set X to 45 and create 45 distinct variables.
Are there any brilliant insights I might have missed, or does CS simply not allow for dynamic arrays to be created?
The ghostly apparitions we know as *temp may appear in the midst of all chaos, creating new and unique variables, but these ephemeral beings, as is their nature, seem to dissipate into the ether once we shift focus from them, forgotten by the CS engine, forever. (And also, while we could *set {generalvariabletext}, we certainly can’t *temp {generalvariabletext})