Jump to content

Recommended Posts

Posted

I have a very basic understanding of Java but really enjoy tinkering. Sorry if this question is stupid :) I believe that this problem is simply due to my basic understanding of Java. I am not really looking for a solution here, more just a pointer to get me unstuck. 

I have a client only mod (Music Player). I want to send an int from the server to the music player mod but I am not sure the best way to do this.

Reason:
I want to be able to start battle music when a player is within a configurable range of a 'boss entity' and then stop the battle music when the entity is dead or if the player is no longer in range.

I have the entity range detection working and also the packets working through a helper mod. I am not sure how to send the int from the helper mod client side to the client only mod?

Thought 1: In my helper mod, if I depend on the Music Player mod, wouldn't creating a 'new Class()' cause a duplicative instance of the music player rather than communicating with the instance that is actually running on the client?

Thought 2: Is it possible for a packet to be sent from one mod and received on the client by another mod?

Thought 3: I could modify the music player mod to also run on the server and then move the packets to the music player mod. If I did that though, wouldn't I have the same 'new class()' problem?

 

Posted
1 hour ago, dtorgo said:

I have a client only mod (Music Player). I want to send an int from the server to the music player mod but I am not sure the best way to do this.

not possible you can't send a custom packet from the server to the client when it's a client only mod

Posted (edited)
13 minutes ago, Luis_ST said:

not possible you can't send a custom packet from the server to the client when it's a client only mod

I understand that. My helper mod can send/receive the packets though and my helper mod is both client/server.

My question is is it possible to send an 'int' from my helper mod client side to the client only mod?

My thought was that if my helper mod depends on the client only mod, then maybe I could call a method directly and pass in the int? Where I am confused is that wouldn't that mean that I would be instantiating a copy of the client only mod class?

Edited by dtorgo
Posted

Not sure why you didn't just make the music mod have a server half to do the networking, but whatever.

Look at using IMC messages or a static field reference on your music player that holds the music player's mod instance.

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
49 minutes ago, Draco18s said:

Not sure why you didn't just make the music mod have a server half to do the networking, but whatever.

Look at using IMC messages or a static field reference on your music player that holds the music player's mod instance.

Thank you both. I think the approach of making the music mod server/client is probably the best approach. A few days ago I removed the @clientonly definition on the main class and it completely crashed the server, i did not look into it to much after that. :)

I will take a stab at making the music mod server/client enabled.

If that does not work, I will look at IMC messages. Thank you!

Posted
20 minutes ago, dtorgo said:

A few days ago I removed the @clientonly definition on the main class and it completely crashed the server, i did not look into it to much after that.

do never use @OnlyIn it's only for vanilla you can use this,
also side mods are not create via @OnlyIn take a look at this

Posted (edited)

See also DistExecutor

Edited by Draco18s

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
7 hours ago, Draco18s said:

Not sure why you didn't just make the music mod have a server half to do the networking, but whatever.

Look at using IMC messages or a static field reference on your music player that holds the music player's mod instance.

I changed the Music Player mod to not crash on the server and added packets to it. It is working perfectly now. Thanks again for the help.

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



×
×
  • Create New...

Important Information

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