Jump to content

Recommended Posts

Posted (edited)

Sound plays in singleplayer but not on servers, code: 

package *****;

import java.util.UUID;

import *****.proxy.CommonProxy;

import ibxm.Player;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.client.event.RenderGameOverlayEvent.Chat;
import net.minecraftforge.client.event.sound.SoundEvent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.ServerChatEvent;
import net.minecraftforge.event.entity.living.LivingDeathEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@Mod(modid = Main.MOD_ID, name = Main.NAME, version = Main.VERSION)
public class Main {
	public static final String MOD_ID = "zillexcm";
	public static final String NAME = "*****";
	public static final String VERSION = "0.1";
	public String msg;
	
	@Instance
	
	public static Main instance;
	
	@SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS)
	
	public static CommonProxy proxy;
	
    @Mod.EventHandler
	
	public void init(FMLInitializationEvent event) {
    	MinecraftForge.EVENT_BUS.register(this);
	}
    

    
    
    @SubscribeEvent
    
    public void onDeath(LivingDeathEvent event) {
    	
    	if(event.entity instanceof EntityPlayer) {
    		
    		if(!event.entity.isEntityAlive()) {
    			
                //UUID uid = UUID.fromString("74a1dcea-1946-45a9-a373-5f1b211f4d07");
    			
    			//if(!event.entity.getUniqueID().equals(uid)) {
    				Minecraft.getMinecraft().thePlayer.playSound("zillexcm:sounds.jigglypuff", 5.0F, 1.0F);
    			//}
	
    			// MY's UUID: 74a1dcea-1946-45a9-a373-5f1b211f4d07


    }
    }
    }

}

note: Please help with the UUID as well the mod for some reason only works when it doesn't use it, which is why it is commented out. Also: ***** is hidden for a specific person, its their name.

Edited by Zillex_
Posted (edited)
  On 12/28/2017 at 9:56 PM, diesieben07 said:

How are you testing this? Are you building your mod and testing it in the actual game? If not, are you logged in in your development environment?

Expand  

testing it by exporting/running in eclipse also can you please tell me where I'm doing the reaching across logical sides error, this is my first mod and I'm more familiar with the bukkit api than the forge one, thanks :D edit: no I'm not logged in in my dev environment 

Edited by Zillex_
Posted
  On 12/29/2017 at 12:08 AM, Zillex_ said:

please tell me where I'm doing the reaching across logical sides error, this is my first mod

Expand  

.Here:

  On 12/28/2017 at 9:34 PM, Zillex_ said:
public void onDeath(LivingDeathEvent event) {
    if(event.entity instanceof EntityPlayer) {
        if(!event.entity.isEntityAlive()) {
            Minecraft.getMinecraft().thePlayer.playSound("zillexcm:sounds.jigglypuff", 5.0F, 1.0F);

 

Expand  

 

That event is fired on the server. Minecraft.getMinecraft() is client-side-only.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted (edited)
  On 12/29/2017 at 12:39 AM, Draco18s said:

.Here:

 

That event is fired on the server. Minecraft.getMinecraft() is client-side-only.

Expand  

I KNEW IT! continues to wonder what the serverside one is, and the uuid problem

 

Edit: I tried this but didn't work :/ 

event.entity.playSound("zillexcm:sounds.jigglypuff", 5.0F, 1.0F);

 

Edited by Zillex_
Posted
  On 12/29/2017 at 12:54 AM, Zillex_ said:

Edit: I tried this but didn't work :/ 

event.entity.playSound("zillexcm:sounds.jigglypuff", 5.0F, 1.0F);

 

Expand  

Sound on the other hand, is also a client side effect. Dollars to doughnuts, that playSound method forwards off to somewhere that does nothing.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  On 12/29/2017 at 1:02 AM, Draco18s said:

Sound on the other hand, is also a client side effect. Dollars to doughnuts, that playSound method forwards off to somewhere that does nothing.

Expand  

so, how do I play a sound while on a server? is there a separate method?

Posted

How does the server tell the client anything?

 

Parakeets.

Packets.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted (edited)
  On 12/29/2017 at 1:04 AM, Draco18s said:

How does the server tell the client anything?

 

Parakeets.

Packets.

Expand  

but, I've seen mods that work on servers but use playSound?

Edit: also thanks for not getting mad at my noob questions lol 

Edit 2: I'd like to note that the mod actually did work on one server

Edited by Zillex_
Posted (edited)
  On 12/29/2017 at 1:06 AM, Zillex_ said:

but, I've seen mods that work on servers but use playSound?

Edit: also thanks for not getting mad at my noob questions lol 

Edit 2: I'd like to note that the mod actually did work on one server

Expand  

As a summary, you are reaching across logical sides

Packets, like aforementioned, will do the work. You must send a packet to tell the client that it needs to play a sound (using EntityPlayerMP).

For more information about packets, click HERE.

 

However, there is a server-side friendly method to play a sound (which I use all the time instead of sending a packet), which I have put for you below for your convenience.

World worldIn = playerIn.world;

worldIn.playSound(null, playerIn.getPosition(), /* your sound name */, /* your sound category */, 5.0F, 1.0F);

 

I hope I helped. Happy modding!

Edited by Differentiation
Posted
  On 12/29/2017 at 3:24 AM, Differentiation said:

As a summary, you are reaching across logical sides

Packets, like aforementioned, will do the work. You must send a packet to tell the client that it needs to play a sound (using EntityPlayerMP).

For more information about packets, click HERE.

 

However, there is a server-side friendly method to play a sound (which I use all the time instead of sending a packet), which I have put for you below for your convenience.

World worldIn = playerIn.world;

worldIn.playSound(null, playerIn.getPosition(), /* your sound name */, /* your sound category */, 5.0F, 1.0F);

 

I hope I helped. Happy modding!

Expand  

Hi, thanks for the example it worked perfectly except I'm not sure where you got playerIn from I tried this:

Entity playerIn = event.entity;

but then I got this error:The method playSound(double, double, double, String, float, float, boolean) in the type World is not applicable for the arguments (null, World, String, String, float, float)

 

Thanks for all your help :D

Posted
  On 12/29/2017 at 3:16 PM, Zillex_ said:

Hi, thanks for the example it worked perfectly except I'm not sure where you got playerIn from I tried this:

Entity playerIn = event.entity;

but then I got this error:The method playSound(double, double, double, String, float, float, boolean) in the type World is not applicable for the arguments (null, World, String, String, float, float)

Expand  

Hi, no problem.

EntityPlayer is the simplest to get, silly :P

Answer:

EntityPlayer playerIn = (EntityPlayer) event.entity;

 

Posted
  On 12/29/2017 at 3:23 PM, Differentiation said:

Hi, no problem.

EntityPlayer is the simplest to get, silly :P

Answer:

EntityPlayer playerIn = (EntityPlayer) event.entity;

 

Expand  

 

Oh, thanks lol, just need two more things 1 I'm getting an error still: The method playSound(double, double, double, String, float, float, boolean) in the type World is not applicable for the arguments (null, BlockPos, String, String, float, float)

 

2: still having that uuid issue my thought was to do this?

UUID playerID = EntityPlayer.getOfflineUUID("Nostos");
if(event.entity.getUniqueID().equals(uid)){
// sound code here
}

Thanks

Posted

EntityPlayer playerIn = (EntityPlayer) event.entity;

World worldIn = playerIn.world;

worldIn.playSound(playerIn, playerIn.getPosition(), /* here you have to put a SoundEvent instance, NOT a String */, SoundCategory.PLAYERS, 5.0F, 1.0F);

Posted
  On 12/29/2017 at 4:00 PM, Differentiation said:

EntityPlayer playerIn = (EntityPlayer) event.entity;

World worldIn = playerIn.world;

worldIn.playSound(playerIn, playerIn.getPosition(), /* here you have to put a SoundEvent instance, NOT a String */, SoundCategory.PLAYERS, 5.0F, 1.0F);

Expand  

okay, I'm starting to feel bad for asking all these noob questions but when I register the sound event like this:

ResourceLocation location = new ResourceLocation("zillexcm", "jigglypuff");
SoundEvent soundevent = new SoundEvent(location);

it gives this error: The constructor SoundEvent(ResourceLocation) is undefined

 

again, sorry for all the noob questions

Posted
  On 12/29/2017 at 4:28 PM, Zillex_ said:

The constructor SoundEvent(ResourceLocation) is undefined

Expand  

Use your IDE to jump into the class to see what constructors are really available.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Just shows this if this is what you mean:  Data  assets/minecraft/models/item/bamboo_mosaic_slab.json  Data  assets/minecraft/models/item/turtle_helmet_quartz_trim.json  Processor failed, invalid outputs:    /home/aron/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412- slim.jar      Expected: de86b035d2da0f78940796bb95c39a932ed84834      Actual:   aea60124ca903ecbb2e825805e318f9d89ac867c    /home/aron/.minecraft/libraries/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412- extra.jar      Expected: 8c5a95cbce940cfdb304376ae9fea47968d02587      Actual:   76e87dbc119daed8dc1861c17160e0c4b6f34d2e There was an error during installation Also I gave the .jar file full permissions too.
    • I checked the hash like you said and it came back as OK each time, also may I ask what you mean by debug mode during installation?  
    • My name is Clara Bennett, and I almost let cryptocurrency destroy me.  Two years ago, after selling my green e-commerce startup, I plunged headfirst into the crypto world. yield farming , I was all in. I believed I wasn’t just investing; I was participating in the next great technological revolution. Within months, my portfolio skyrocketed to $200,000. I even started sketching ideas for a blockchain-based microloan platform to empower small entrepreneurs around the world. Crypto felt like pure freedom and limitless potential. I thought I was untouchable. I thought wrong. It happened through a single email. It looked like a standard security update from my wallet provider polished, routine, and harmless. I interacted with it briefly, thinking it was legitimate. Hours later, I checked my account and realized my entire wallet had been drained. Every token, every coin, gone. I sat there in disbelief, replaying the moment over and over. I had built my career on being cautious with technology, yet somehow, I had still been compromised. The blockchain’s promise of "irreversible transactions" now felt like a cruel joke  .Devastated and desperate, I scoured forums for solutions. Most people told me there was no hope once crypto is gone, it’s gone. Still, I refused to give up. That’s when I stumbled across FUNDS RETRIEVER ENGINEER . I decided to reach out. From the beginning, they were empathetic, and honest about the challenges. They explained their process step-by-step, focusing on tracing transactions, tracking down phishing operators, and leveraging advanced blockchain analytics. It wasn't an overnight fix. It took weeks of meticulous investigation, technical recovery work, and legal coordination .But in the end, their persistence paid off. FUNDS RETRIEVER ENGINEER  was able to trace the stolen funds across multiple wallets and exchanges. Through a combination of technical expertise and strategic action, they managed to recover the full amount I had lost. Today, my crypto portfolio is intact once again. More importantly, I’ve regained my confidence though I am now much wiser and far more cautious. I learned the hard way that while crypto offers incredible opportunities, it also demands extreme vigilance. Thanks to FUNDS RETRIEVER ENGINEER , I recovered my lost funds and  also reclaimed my future in the digital economy. For help  W H A T S A P P:  +1  8  0 2 9 5 2 3 4 7 0 E   m  a I L       F U N D S R  E T R  I E V E R  [@]  E  N  G  I  N  E  E  R.  C  O  M
    • 1. Did you try to remove your system cache or something? 2. Also check jar hash before installing (if it's ok): sha1sum jar_name.jar > jar_name.jar.sha1 sha1sum -c jar_name.jar.sha1 Do this a few times with some interval. This can find out if your hash can be different somehow (garbage files inside).  Also try using sha224sum / sha256sum / sha384sum / sha512sum / shasum. And do you have any debug mode during installation?   UPDATED: and it can be just fixing by chmod'ing jar file. Check its -lZ 
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.