I've got a custom platform movement thing here, but it seems to freeze the game when I touch the left arrow key. I can't find the problem, so i need some help.
You can't run a Fast loop a negative number of times, and that's what is causing the freeze. When you move left you're setting Alterable Value B to be negative and then running the loop. Instead, when you run the loop for moving left, use:
Start loop "left" Abs(Alterable Value B("Player 1")) times
Succestion use PMO instead of custom fastloop movement, or if you need fastloop movement, take it out of fastloop. Because it is not good to have many fastloops in games.
I have proven new mathematic formula to be true...
Originally Posted by NeoMonkey Succestion use PMO instead of custom fastloop movement, or if you need fastloop movement, take it out of fastloop. Because it is not good to have many fastloops in games.
3 fastloops isn't a lot. From what I know, things start to break when you're pushing something around 1000 fastloops.