If you were making a game, and everything was working fine except ONE SPECIFIC AREA, LIKE, FOR EXAMPLE, ENEMIES, how would you react? You would be somewhat annoyed, right?
Here is a list of problems:
- Getting enemies to follow you
- Getting enemies to be constantly accelerated downwards
- Getting the attack (spacebar) to ACTUALLY WORK (and flip based on your image)
- Making a fully fledged bossfight
Now, I can’t solve any of these problems, because I SUCK AT CODING!
But you can!
(also, please ignore the poptart at the beginning. WIP)
- Set (sprite) follow (othersprite)
There are some other extensions for smarter following enemies if you need them.
- Set (sprite) [AccelerationY] (1000)
The bigger the last number, the faster they fall
These are the simplest solutions to the first two problems, the other ones are obviously more complicated. The first solution won’t let enemies navigate over/around walls, they just constantly move towards the player/whatever othersprite you put in there. Hope this helps!
Thank you!
Unfortunately,

(still not working)
I see your problem! When you do anything like “set (sprite)” it only effects the most recently created one of that sprite, not all of them. Try putting it inside the for loops right after the code that creates the sprites, so that every sprite is effected!
Thanks!
I solved all of these problems, but now I can’t figure for the life of me how to
A) get the game to acknowledge that the boss’s status bar (EnemyHealth) is 0
B) find a way to flip the image of my sprite when it is attacking facing the other direction
For B), download this:

(example. I just found out about this extension today so expect glitches in my example : P)
1 Like