Nota
⚪ Last updated 2023⚠️ Install Order · 2 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview
🔍 Analysis
- 👍 1.2% endorsement rate — high engagement, a strong quality signal
- 🏆 #266 of 885 fabric mods in this game by downloads
📋 About This Mod
## Nota Port of the NoteBlock API for fabric, play .nbs files as noteblock sounds. This port is not complete replica, some features are missing or unfinished. You can find original spigot plugin (https://www.spigotmc.org/resources/noteblockapi.19287/). This library can be used server-side only or in singleplayer. ## Example <iframe width="560" height="315" src="https://www.youtube.com/embed/RxDdt90eHUg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> ## Development ### Adding to your project To use Nota in your project add the Modrinth repository to your build file and a mod dependency. Replace the `VERSION_TAG` with the latest version, for example `0.1.0+1.19` ```gradle repositories { maven { url "https://api.modrinth.com/maven" content { includeGroup "maven.modrinth" } } } dependencies { modImplementation include("maven.modrinth:nota:VERSION_TAG") } ``` ### How to get .nbs - Download .nbs files, you can simply download a few songs (https://dev.bukkit.org/projects/icjukebox/pages/tracks). - Convert .midi to .nbs with (https://github.com/HielkeMinecraft/OpenNoteBlockStudio/releases). - Create a song in (https://github.com/HielkeMinecraft/OpenNoteBlockStudio/releases) and export it as .nbs file. ### Playing songs Song in .nbs format have to be loaded before you can use it. ```java Song song = NBSDecoder.parse(new File("path/to/song.nbs")); Song song2 = NBSDecoder.parse(new File("path/to/another/song.nbs")); Playlist playlist = new Playlist(song, song2,...); ``` #### SongPlayer types There are 3 types of SongPlayer: - RadioSongPlayer - PositionSongPlayer - EntitySongPlayer ### RadioSongPlayer Plays song for all added players no matter where they are. ```java Song song; // Preloaded song RadioSongPlayer rsp = new RadioSongPlayer(song); // Create RadioSongPlayer. rsp.setId(new Identifier("example:radio")); // Set unique identifier, not necessary rsp.addPlayer(player); // Add player to SongPlayer so they will hear the song. rsp.setPlaying(true); // Start RadioSongPlayer playback ``` ### PositionSongPlayer Plays song for all added players in specified range from specified point. ```java Song song; // Preloaded song PositionSongPlayer psp = new PositionSongPlayer(song); // Create PositionSongPlayer. psp.setId(new Identifier("example:position")); // Set unique identifier, not necessary psp.setBlockPos(pos); // Set location where the song will be playing psp.setDistance(16); // Set distance from target location in which players will hear the SongPlayer, default: 16 psp.addPlayer(player); // Add player to SongPlayer so they will hear the song. psp.setPlaying(true); // Start PositionSongPlayer playback ``` ### EntitySongPlayer Plays song for all added players in specified range from specified entity. ```java Song song; // Preloaded song EntitySongPlayer esp = new EntitySongPlayer(song); // Create EntitySongPlayer. esp.setId(new Identifier("example:entity")); // Set unique identifier, not necessary esp.setEntity(entity); // Set entity which position will be used esp.setDistance(16); // Set distance from target location in which players will hear the SongPlayer, default: 16 esp.addPlayer(player); // Add player to SongPlayer so they will hear the song. esp.setPlaying(true); // Start EntitySongPlayer playback ```
Port of the NoteBlock API for fabric, play .nbs files as noteblock sounds. This port is not complete replica, some features are missing or unfinished. You can find original spigot plugin (https://www.spigotmc.org/resources/noteblockapi. 19287/). This library can be used server-side only or in singleplayer.
## Development
### Adding to your project To use Nota in your project add the Modrinth repository to your build file and a mod dependency. Replace the `VERSION_TAG` with the latest version, for example `0. 1. 0+1. 19`
```gradle repositories { maven { url "https://api.modrinth.com/maven" content { includeGroup "maven.modrinth" } } }
dependencies { modImplementation include("maven.modrinth:nota:VERSION_TAG") } ```
### How to get .nbs
- Download .nbs files, you can simply download a few songs (https://dev.bukkit.org/projects/icjukebox/pages/tracks).
- Convert .midi to .nbs with (https://github.com/HielkeMinecraft/OpenNoteBlockStudio/releases).
- Create a song in (https://github.com/HielkeMinecraft/OpenNoteBlockStudio/releases) and export it as .nbs file.
### Playing songs
Song in .nbs format have to be loaded before you can use it.
```java Song song = NBSDecoder.parse(new File("path/to/song.nbs")); Song song2 = NBSDecoder.parse(new File("path/to/another/song.nbs")); Playlist playlist = new Playlist(song, song2,...); ```
#### SongPlayer types There are 3 types of SongPlayer: - RadioSongPlayer - PositionSongPlayer - EntitySongPlayer
### RadioSongPlayer Plays song for all added players no matter where they are.
```java Song song; // Preloaded song RadioSongPlayer rsp = new RadioSongPlayer(song); // Create RadioSongPlayer. rsp.setId(new Identifier("example:radio")); // Set unique identifier, not necessary rsp.addPlayer(player); // Add player to SongPlayer so they will hear the song. rsp.setPlaying(true); // Start RadioSongPlayer playback ```
### PositionSongPlayer Plays song for all added players in specified range from specified point.
```java Song song; // Preloaded song PositionSongPlayer psp = new PositionSongPlayer(song); // Create PositionSongPlayer. psp.setId(new Identifier("example:position")); // Set unique identifier, not necessary psp.setBlockPos(pos); // Set location where the song will be playing psp.setDistance(16); // Set distance from target location in which players will hear the SongPlayer, default: 16 psp.addPlayer(player); // Add player to SongPlayer so they will hear the song. psp.setPlaying(true); // Start PositionSongPlayer playback ```
### EntitySongPlayer Plays song for all added players in specified range from specified entity.
```java Song song; // Preloaded song EntitySongPlayer esp = new EntitySongPlayer(song); // Create EntitySongPlayer. esp.setId(new Identifier("example:entity")); // Set unique identifier, not necessary esp.setEntity(entity); // Set entity which position will be used esp.setDistance(16); // Set distance from target location in which players will hear the SongPlayer, default: 16 esp.addPlayer(player); // Add player to SongPlayer so they will hear the song. esp.setPlaying(true); // Start EntitySongPlayer playback ```
📊 Mod Details
- Game
- Minecraft Mods
- Author
- PinkGoosik
- Version
- 0.1.0+1.19.4
- Downloads
- 1,125
- Endorsements
- 13
- Category
- fabric
- Created
- 8/20/2022
- Updated
- 4/27/2023
- Game Versions
- 1.19.4
- Tags
- library
🔧 How to Install Minecraft Mods Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Mods →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Mods versions does Nota support?
The author lists 1.19.4. Other versions may work but are untested by the author.
What is the latest version of Nota?
Version 0.1.0+1.19.4, published 2023-04-27 with 1,125 downloads recorded at the source.
Keep browsing — more Minecraft Mods mods await