# Anyone interested in making Nico's Nextbots-like games?

**URL:** https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686
**Category:** Arcade
**Tags:** game
**Created:** [May 15, 2025, 3:48pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686 "2025-05-15T15:48:58Z")
**Posts on this page:** 16
**Page:** 1

<div class="post-metadata">

### Author: ![packy12](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/packy12/32/22398_2.png) [@packy12](https://forum.makecode.com/u/packy12)
#### Post date: [May 15, 2025, 3:48pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/1 "2025-05-15T15:48:58Z")

</div>

And if possible how to add proximity audio to the game

---

<div class="post-metadata">

### Author: ![WoofWoof](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/woofwoof/32/32523_2.png) [@WoofWoof](https://forum.makecode.com/u/WoofWoof)
#### Post date: [May 15, 2025, 8:30pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/2 "2025-05-15T20:30:58Z")

</div>

Proximity audio is actually 100% possible in Makecode! The main issue is that the normal music and sound players themselves don’t support it, so it would have to be a JavaScript project or you would need an extension.

1 sound source would be extremely easy (just change the system volume lol), but if you want multiple sources you would have to either do something fancy by editing the default instruments, like have one version of the instrument that you use for all the sounds playing from one source and another instrument that’s the same but for the other source, and then you update that instrument’s volume with distance.

That _might_ work if you really wanted to use the default music creator, but if you wanted to use something else (like manually playing every sound, or maybe you only want proximity sound effects and not music) then that might be easier, though I believe since notes are loaded into a buffer and then played, you wouldn’t be able to make a single long note change volume over time after you started playing it, so that might make the sounds a little weird if you quickly move away from the source. The general thought is that if you make every sound any volume - you can - then you can make any sound fade with proximity!

If anyone wants more insight into how manually playing sounds works, [here’s a short song I made](https://arcade.makecode.com/S40616-99441-54903-14822) and you can learn from the best by watching the mods create music this way on stream! Unfortunately, I couldn’t find the stream where they explained how it all works (I watched that one live and gave them the idea of playing completely random sounds, which was funny). If you find that stream, please share which one it was! It would be on the Makecode Arcade YouTube channel somewhere.

---

<div class="post-metadata">

### Author: ![BlobDev](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/blobdev/32/25519_2.png) [@BlobDev](https://forum.makecode.com/u/BlobDev)
#### Post date: [May 15, 2025, 8:38pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/3 "2025-05-15T20:38:12Z")

</div>

Ooo nicos-nextbots pretty hard idk

---

<div class="post-metadata">

### Author: ![packy12](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/packy12/32/22398_2.png) [@packy12](https://forum.makecode.com/u/packy12)
#### Post date: [May 15, 2025, 10:17pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/4 "2025-05-15T22:17:22Z")

</div>

Well I’ve kind of already made a game that kinda seems like the game

> **[Maxi's Maniacs](https://arcade.makecode.com/S72359-73281-50993-20918)**
>
> Made with ❤️ in Microsoft MakeCode Arcade.

I used a bit of Cyber’s Nexbot coding knowledge (Unfinished game sorry)

---

<div class="post-metadata">

### Author: ![packy12](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/packy12/32/22398_2.png) [@packy12](https://forum.makecode.com/u/packy12)
#### Post date: [May 15, 2025, 10:17pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/5 "2025-05-15T22:17:29Z")

</div>

And two things  
1.What extension would that be?  
2.Do you have an example of adding proximity audio to a 3D game?

---

<div class="post-metadata">

### Author: ![WoofWoof](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/woofwoof/32/32523_2.png) [@WoofWoof](https://forum.makecode.com/u/WoofWoof)
#### Post date: [May 16, 2025, 2:43am UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/6 "2025-05-16T02:43:40Z")

</div>

1. Someone would have to make one.
2. No, but I can’t imagine it would be that hard to do _ **in JavaScript** _. In blocks there aren’t really so many options for controlling the volume of sounds, unless you use an extension that gives you access to the system menu stuff, which would let you control the overall volume, making single source noises easy.

---

<div class="post-metadata">

### Author: ![zef](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/zef/32/28163_2.png) [@zef](https://forum.makecode.com/u/zef)
#### Post date: [May 16, 2025, 12:09pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/7 "2025-05-16T12:09:14Z")

</div>

actually what about the sprite-utils extension? couldn’t you make audio play when the nextbot is a certain amount of pixels close to you?

---

<div class="post-metadata">

### Author: ![packy12](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/packy12/32/22398_2.png) [@packy12](https://forum.makecode.com/u/packy12)
#### Post date: [May 19, 2025, 1:35am UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/8 "2025-05-19T01:35:56Z")

</div>

Apparently theres like something you cand do in Blocks that you make something sound at a certain range like at x and/or y

---

<div class="post-metadata">

### Author: ![Driftpixel\_studios](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/driftpixel_studios/32/22432_2.png) [@Driftpixel\_studios](https://forum.makecode.com/u/Driftpixel_studios)
#### Post date: [May 19, 2025, 3:08am UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/9 "2025-05-19T03:08:10Z")

</div>

I broke you game. 😁

 ![Screenshot 2025-05-18 8.46.02 PM](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/1/c/1c0e90a7cf16e8ab795c3b1288d7817e3ef4aa78.png)

---

<div class="post-metadata">

### Author: ![packy12](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/packy12/32/22398_2.png) [@packy12](https://forum.makecode.com/u/packy12)
#### Post date: [May 19, 2025, 5:56pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/10 "2025-05-19T17:56:18Z")

</div>

Bruv why

---

<div class="post-metadata">

### Author: ![packy12](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/packy12/32/22398_2.png) [@packy12](https://forum.makecode.com/u/packy12)
#### Post date: [May 19, 2025, 5:56pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/11 "2025-05-19T17:56:29Z")

</div>

I have an idea. To all in this chat or to people to joined, edit my game, make it as good as possible, then send a link in the topic for the game, and I will rate versions. Make it fun, decorative and interesting if wanting to participate. Thanks!

---

<div class="post-metadata">

### Author: ![SHEESH](https://avatars.discourse-cdn.com/v4/letter/s/43a26b/32.png) [@SHEESH](https://forum.makecode.com/u/SHEESH)
#### Post date: [May 19, 2025, 10:14pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/12 "2025-05-19T22:14:28Z")

</div>

YES BOYZZZZZ THATS MY PACKY12 bahahahhaha

---

<div class="post-metadata">

### Author: ![BlobDev](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/blobdev/32/25519_2.png) [@BlobDev](https://forum.makecode.com/u/BlobDev)
#### Post date: [May 19, 2025, 10:24pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/13 "2025-05-19T22:24:51Z")

</div>

Awee a was hoping for an update

---

<div class="post-metadata">

### Author: ![packy12](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/packy12/32/22398_2.png) [@packy12](https://forum.makecode.com/u/packy12)
#### Post date: [May 20, 2025, 3:41am UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/14 "2025-05-20T03:41:49Z")

</div>

Wdym update u want me to make the game better? Finish it off?

---

<div class="post-metadata">

### Author: ![zef](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/zef/32/28163_2.png) [@zef](https://forum.makecode.com/u/zef)
#### Post date: [May 20, 2025, 5:05pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/15 "2025-05-20T17:05:29Z")

</div>

![Screenshot 2025-05-20 11.23.09 AM](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/5/a/5a2e10e79cfa82ad35abb18120d267927a88323c.png)  
found this editing

---

<div class="post-metadata">

### Author: ![packy12](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/packy12/32/22398_2.png) [@packy12](https://forum.makecode.com/u/packy12)
#### Post date: [May 20, 2025, 11:26pm UTC](https://forum.makecode.com/t/anyone-interested-in-making-nicos-nextbots-like-games/36686/16 "2025-05-20T23:26:58Z")

</div>

Yeah ik i had said i used some of Cyber’s Nextbots coding to help me

> [@Cyber's Nextbots!](https://forum.makecode.com/t/cybers-nextbots/16215/1):
>
> Welcome to Cyber’s Nextbots! A trial of survival or death (Please do not take this seriously, your death will only be virtual.)! There are only 3 nextbots: The Puppet, @UnsignedArduino, and @E-EnerG-Gamecentral’s Arcade PC Setup Mouse.

Don’t mind it im going to make one fully made by me
