I’m currently coding a game, and I converted it from blocks to Python, and I’m struggling to find the 7 problems. I’ve managed to fix one, but that one was by luck. Any chances on helping me out? I also need help with sprite positioning. I manage to get one sprite, that was goofing up, where I want it to be, but as soon as I added other sprites, the positioning decides to goof up again. The sprite acting up is named “Cade.”
-zapfish
Code - https://arcade.makecode.com/S33497-18279-22508-63669
Hi! I’m not a great coder, but I hope I can help. It looks like all of your problems stem from characterAnimations.loopFrames on line 2233. You never close the function after the 300, which then messes up the on_forever function below it. If Make Code says the function doesn’t exist, you may not have the character animations extension downloaded. Finally, if you have the extension and have closed the function with a parenthesis, you must include a rule to define when to loop those animations.
I hope this helps!