Oct 12th 2024 #1 Hi Red,On the next API update, can we get access to an event that is triggered when the game starts to play music to a player?I'm thinking things like: Java @EventMethod public void onGamePlayMusic(GamePlayMusicEvent event) { //Maybe get the track that is going to be played to the player Track track = event.getTrack(); //Maybe get the track that is going to be played to the player Track customTrack = getCustomTrack(); //could also be a chosen existing track maybe? event.setCancelled(true); event.getPlayer().playTrack(customTrack); } Display More