# I need help with a Boss I'm designing for platformer type game

**URL:** https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207
**Category:** Help
**Tags:** game
**Created:** [January 17, 2025, 7:25pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207 "2025-01-17T19:25:46Z")
**Posts on this page:** 13
**Page:** 1

<div class="post-metadata">

### Author: ![Danny\_Devention](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/danny_devention/32/30134_2.png) [@Danny\_Devention](https://forum.makecode.com/u/Danny_Devention)
#### Post date: [January 17, 2025, 7:25pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/1 "2025-01-17T19:25:46Z")

</div>

I figured out the basic mechanics of how I want it to work but I’m having trouble coding it  
little orange guys are “fliers” big orange guy is actual boss, you need to stomp on the boss 3 times to unalive it but to get it to come down you need to stomp on 2 other “flier” guys first, then it loops 2 more times. I can do the pixel art myself I just need the code that’s all. I made some sketches of the mechanics

 ![Screenshot 2025-01-16 10.44.55 AM](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/f/d/fd0e24ede7d1304448df937bd5b762393bf49dd9.png)  
 ![Screenshot 2025-01-16 10.47.23 AM](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/2/0/206111383c7ba22482dcb000365a409c134252f4.png)  
What i’ve got so far is at level 27  
The boss is labeled “FC1” (Stands for flier captain 1) and the animation is labelled FCFLY just to clear up any confusion  
here’s the link: [Jumpy Platformer DD](https://makecode.com/_FxRab6WVMf24)  
by the way the base code (player, enemies, mechanics) isn’t mine i’m just adding to someone else’s (the new levels, NPCs, diolog and plot is all mine)

ps. system and moderators, I got rid of the thing I put in the code accedentally that you didn’t like from last time I tried to make this post

---

<div class="post-metadata">

### Author: ![top\_hat\_lord](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/top_hat_lord/32/33469_2.png) [@top\_hat\_lord](https://forum.makecode.com/u/top_hat_lord)
#### Post date: [January 20, 2025, 6:41pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/2 "2025-01-20T18:41:20Z")

</div>

good sir, I recommend you use the sprite util extension for this. for the pathfinding, make a invisible a sprite right below the enemy and have them fly down towards it using the sprite util thing. when the boss touches that, place a invisible sprite on the player and have them go diagonally towards that, and when they touch the ground either have them go back up by making a invisible sprite up to another direction, or have it pause on the ground before going directly back up. for the other things, make them a sprite of separate name and slightly different design, and have there be a counter for when they have been killed, that goes up with each death and resets when the boss takes damage. when the counter is high enough, have the boss do the described attack. this should help with the attack.

---

<div class="post-metadata">

### Author: ![Danny\_Devention](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/danny_devention/32/30134_2.png) [@Danny\_Devention](https://forum.makecode.com/u/Danny_Devention)
#### Post date: [January 20, 2025, 7:00pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/3 "2025-01-20T19:00:28Z")

</div>

Actually you know what I’m gonna assemble a team

---

<div class="post-metadata">

### Author: ![randomuser](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/randomuser/32/32505_2.png) [@randomuser](https://forum.makecode.com/u/randomuser)
#### Post date: [January 21, 2025, 5:32pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/4 "2025-01-21T17:32:31Z")

</div>

Hmm… For the fliers my suggestion is on random intervals to have them lower to the ground, and then once they land, set a boolean (true/false) to true. That way if the player overlaps with a flier while that boolean is true, the ‘number of stomps’ counter could go up by 1. At the end of the overlap code handling the stomps, the game should check if that stomp counter is at 2, and spawn the boss!

---

<div class="post-metadata">

### Author: ![fartmaster9591](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/fartmaster9591/32/32580_2.png) [@fartmaster9591](https://forum.makecode.com/u/fartmaster9591)
#### Post date: [January 21, 2025, 5:33pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/5 "2025-01-21T17:33:27Z")

</div>

yo can i help i good at this stuff. trust.

---

<div class="post-metadata">

### Author: ![Danny\_Devention](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/danny_devention/32/30134_2.png) [@Danny\_Devention](https://forum.makecode.com/u/Danny_Devention)
#### Post date: [January 22, 2025, 5:25pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/6 "2025-01-22T17:25:29Z")

</div>

I can’t tell if you mean your working on the current link or if your going to give me directions can you please be more specific? Just wanna make sure so I don’t do something on the current link and see that you’ve made an updated version

---

<div class="post-metadata">

### Author: ![Danny\_Devention](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/danny_devention/32/30134_2.png) [@Danny\_Devention](https://forum.makecode.com/u/Danny_Devention)
#### Post date: [January 22, 2025, 7:01pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/7 "2025-01-22T19:01:00Z")

</div>

@fartmaster9591  
Sorry to ping I needed your attention  
Wanted to make sure you saw previous post

---

<div class="post-metadata">

### Author: ![fartmaster9591](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/fartmaster9591/32/32580_2.png) [@fartmaster9591](https://forum.makecode.com/u/fartmaster9591)
#### Post date: [January 23, 2025, 6:29pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/8 "2025-01-23T18:29:51Z")

</div>

i can inspire you, give ideas and guide. i am goated in this field of work. 👍 trust

---

<div class="post-metadata">

### Author: ![fartmaster9591](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/fartmaster9591/32/32580_2.png) [@fartmaster9591](https://forum.makecode.com/u/fartmaster9591)
#### Post date: [January 23, 2025, 6:43pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/9 "2025-01-23T18:43:22Z")

</div>

> [@Danny\_Devention](#):
>
> Sorry to ping I needed your attention  
> Wanted to make sure you saw previous post

i would have responded instantly, but… uh… it’s hard to explain.

 ![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/2/c/2cc30d0f5b69a4da661d98ff898c9c35c2cf8a0b.png)

---

<div class="post-metadata">

### Author: ![fartmaster9591](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/fartmaster9591/32/32580_2.png) [@fartmaster9591](https://forum.makecode.com/u/fartmaster9591)
#### Post date: [January 24, 2025, 6:05pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/10 "2025-01-24T18:05:44Z")

</div>

working on it now

---

<div class="post-metadata">

### Author: ![fartmaster9591](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/fartmaster9591/32/32580_2.png) [@fartmaster9591](https://forum.makecode.com/u/fartmaster9591)
#### Post date: [January 25, 2025, 8:31pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/11 "2025-01-25T20:31:41Z")

</div>

will be done within a few days

---

<div class="post-metadata">

### Author: ![fartmaster9591](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/fartmaster9591/32/32580_2.png) [@fartmaster9591](https://forum.makecode.com/u/fartmaster9591)
#### Post date: [January 27, 2025, 2:17am UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/12 "2025-01-27T02:17:20Z")

</div>

or months…

---

<div class="post-metadata">

### Author: ![Danny\_Devention](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/danny_devention/32/30134_2.png) [@Danny\_Devention](https://forum.makecode.com/u/Danny_Devention)
#### Post date: [January 27, 2025, 7:17pm UTC](https://forum.makecode.com/t/i-need-help-with-a-boss-im-designing-for-platformer-type-game/33207/13 "2025-01-27T19:17:52Z")

</div>

cool (post must be atleast 5 characters)
