Haha, yes, I just realized I hadn't accounted for multiplying a 'count' variable, but that loopindex will sure come in handy. Those simple mistakes are painful.
Thanks for having a look. I also realized the sources of my other problems.
Develop games in your browser. Powerful, performant & highly capable.
I'm making a mockup for an RPG. Currently I have a Slider to select how many players are in a party (just for testing). I have the slider set a Global Variable to the Slider's Value. Then, when I load the Layout that should spawn the players, I have
On Start of Layout > Unimportant stuff Repeat GlobalVariable times > Create Player at 750, (350 + (GlobalVariable * 150))[/code:3g058gpb] That should mean that if I set my slider to 4, it would spawn 4 players, each with lower and lower y coords. However It seems to only spawn the last one. My set up is a bit more complex than that, and I am getting other problems, but I'll leave those out unless someone thinks the problem lies elsewhere.