I have three variables:
X, Y, and Z
They're all three constants.
The first two are also game_variables.
I want to make a couple for loops to iterate from the value of X by increments of Z, and base the stopping point on the number of party members one has. The outcome must be this,
X becomes a variable in game.
all the variables found in the iteration also must become an in game variable.
That done, I want to do the same thing with Y.
Let's say X = 1, Y = 2 and Z = 2 and there were 4 party members.
In that situation, the X-based variables found in the iteration process should be: 1, 3, 5 and 7
In the Y situation, they would be 2, 4, 6 and 8.