Jump to content

[1.7.10]How to make your mod not work in singleplayer.


Recommended Posts

Posted

Hello everyone,

 

as the title says I currently develop a mod that I would the code to execute only if it is connected to a server with my mod on it (Ideally my server). If the player is logged in single player I would just want my mod to behave like it is not even installed.

 

I apologize for my English and I hope you get what I want to do :)

Posted

Because of the subtle distinction between them, there's probably a combination of SideOnly and isRemote that would distinguish between SP and MP. However, mods load before a player even chooses how and where to play. The trick would be for the mod to ignore itself if/when an SP world is created or loaded.

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.

Posted

Well, the main Idea is to mine block coordinates out of a database and then spawn them to my servers's world. I need though work only if the player is connected to my server. I want to avoid single player worlds spawning the blocks. If I use world.isRemote and use setBlock here will only work on server? Will it spawn the block to client side? And when a player use it in singleplayer wont get any blocks spawned?

Posted

Thanks diesieben07 I tested and this is what I was looking for. :)

I dont want to work single player because I couldnt be sure in which singleplayer worlds the blocks are spawned or need to be spawned. The number of blocks that my database will have is not fixed. So I want to spawn the blocks on the world of the singleplayer clients and if there is new blocks I need to add them too. The only way I can think of doing this is too check if there is a block placed in every block's coordinates I have in my database. But if I got 10.000 (thousand) blocks I think this wouldnt be efficient at all, it may cause lag etc.

 

I would really appreciate if anyone got any ideas to offer. :)

Posted

Yeah I understand. It is kinda hard to explain. So, I got a database table with 3 fields that are X,Y and Z. This are coordinates of a block and I got plenty of entries, each entrie represent the position the block should have in the world, and by time I add more and more entries so there are more blocks represented by the coordinates. I want to spawn these blocks to the signleplayer worlds, but I couldnt be sure which are the worlds that blocks need to be spawned. My idea was to check every entrie with observe if they are spawned in the world. But with 10000 entries that would be extremely inefficient.

 

By executing my code (that spawns the blocks) only my multiplayer server will solve the problem because there is only one world to worry about.

 

I hope I explained better this time.

Posted

I think he meant it would be much faster on a single world (the one on the server) than for all worlds in one's Minecraft, though I do have to wonder why it would apply to all worlds at once, unless he's thinking that having a bunch of crap accessing an online spreadsheet would bog it down.

Posted

Forget about the Dedicated Server. I 've gotten off topic to discuss how I can make my mod work on singleplayer too.

 

Lets take the case I wanted my mod to work on single player worlds. 2 players download my mod and the start playing and by their first log in I spawn all the blocks available in the db. After that I got a thousand more blocks to my db and I need them spawned to both players world as well. In this point I could not possible know where the last block was builded so I am not able to identify where the new entries of block should start.

 

Sorry for confusing you guys. This is an academic project and I am neither Java veteran or very experienced in Minecraft moding.

Posted

Just to clarify things:

 

You are using a rational database (MySQL, etc) hosted independently of any server to store block information (for some purpose that is irrelevant here)?

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

Yeah I am using MySQL database. I am running a script that calculates the position of blocks so when they spawned all together they will form "houses" on minecraft. The script will run on some irrelevant conditions and will continuously add more blocks to the database.

Posted

I think he's planning a private mod for a private server.

 

But yeah, this kind of stuff should just be stored in WorldSavedData.

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 2/23/2016 at 11:48 PM, Paradox said:

I want to spawn the blocks on the world of the singleplayer clients and if there is new blocks I need to add them too.

 

I think that English translation is an issue. Please bring in a native English speaker/writer.

 

Server is always the canonical authority on block values. A client may only tell its server what its player has attempted to do. Does that help?

 

To summarize: Player acts, client tells server of action, server changes blocks/data (and server automatically tells client of block changes). If you are rigidly methodical, then your code should work both SP and MP.

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.

Posted

It is not the same. In a deticated server you have only one world to spawn the blocks and then the server do its job and send this world to the connected clients. But if the players play singlepalyer their worlds will be random. My problem is that I couldnt sync (Spawn all the blocks that need to be spawned) my db with all these different worlds.

 

Is there any way to store an integer for every world a player creates?

Posted

I will repeate questions that have already been asked. Please answer all of them precisely and we will be able to help you:

-You want to generate blocks in worlds from remote database, right?

-Database can be changed by you at any time?

-Blocks, should they be generated in already generated chunks?

-How many dimensions do you want to affect (only overworld, all vanilla or you can configure for any dimension from database)?

 

If you do not understand a question please ask us to say it in different way.

Posted
  On 2/25/2016 at 8:06 AM, elix said:

I will repeate questions that have already been asked. Please answer all of them precisely and we will be able to help you:

-You want to generate blocks in worlds from remote database, right?

-Database can be changed by you at any time?

-Blocks, should they be generated in already generated chunks?

-How many dimensions do you want to affect (only overworld, all vanilla or you can configure for any dimension from database)?

 

If you do not understand a question please ask us to say it in different way.

 

Hello,

I will happily answer all the questions the best I can.

 

-You want to generate blocks in worlds from remote database, right?

  Yes, I got a remote MySQL database that holds coordinates of Blocks. This is the structure of my table:

 

  ID  |  posX  |  posY  |  posX

 

  posX, posY and posZ is the block should be in the world.

 

-Database can be changed by you at any time?

  Yes. I got a script running that affects the table I mention above. It is not changing the table, it is just adds more and more coordinates to the database.

 

-Blocks, should they be generated in already generated chunks?

  Well, I am not sure I understand this question.

 

-How many dimensions do you want to affect (only overworld, all vanilla or you can configure for any dimension from database)?

  The only dimension I want to affect is the overworld.

Posted

Well guys, I figured something out. I need to store an integer that will hold the ID value of the last block builded on the world. Then I will query my database and fetch the coordinates past the stored ID and then updated with the latest value. I am searching over the internet and I found I can use WorldSavedData to achieve that but I really dont know how to do it. Can anyone guide me through it. This is my class:

public class BlockIDWorldData extends WorldSavedData{

private final static String ident = "LatestBlockIDWorldData";
public int blockID ;

public BlockIDWorldData() {
	super(ident);

}

@Override
public void readFromNBT(NBTTagCompound p_76184_1_) {

}

@Override
public void writeToNBT(NBTTagCompound p_76187_1_) {

}

}

Posted
  On 2/25/2016 at 8:33 AM, Paradox said:

  Quote

I will repeate questions that have already been asked. Please answer all of them precisely and we will be able to help you:

-You want to generate blocks in worlds from remote database, right?

-Database can be changed by you at any time?

-Blocks, should they be generated in already generated chunks?

-How many dimensions do you want to affect (only overworld, all vanilla or you can configure for any dimension from database)?

 

If you do not understand a question please ask us to say it in different way.

 

Hello,

I will happily answer all the questions the best I can.

 

-You want to generate blocks in worlds from remote database, right?

  Yes, I got a remote MySQL database that holds coordinates of Blocks. This is the structure of my table:

 

  ID  |  posX  |  posY  |  posX

 

  posX, posY and posZ is the block should be in the world.

 

-Database can be changed by you at any time?

  Yes. I got a script running that affects the table I mention above. It is not changing the table, it is just adds more and more coordinates to the database.

 

-Blocks, should they be generated in already generated chunks?

  Well, I am not sure I understand this question.

 

-How many dimensions do you want to affect (only overworld, all vanilla or you can configure for any dimension from database)?

  The only dimension I want to affect is the overworld.

Thanks for answer.

 

Question 3 is very important, so i will try to explain it to you:

When you explore a world, new chunks are generated. When you exit the world, they are stored. When you load world back up, it loads chunks from drive, but it does not generate them.

So, question 3 is asking: if one day you change your database, and add coordinates that for "the given player" are in already generated chunk (chunk stored on drive), do you want to place (from code) blocks you just added in this chunk?

Posted
  Quote

Thanks for answer.

 

Question 3 is very important, so i will try to explain it to you:

When you explore a world, new chunks are generated. When you exit the world, they are stored. When you load world back up, it loads chunks from drive, but it does not generate them.

So, question 3 is asking: if one day you change your database, and add coordinates that for "the given player" are in already generated chunk (chunk stored on drive), do you want to place (from code) blocks you just added in this chunk?

 

I want the blocks to be spawned in the world no matter what. I am using world.setBlock() to spawn the blocks and I got no problem with blocks spawning or dissapearing after a player exits the world. The only problem I got was how I could sync the new coordinates added to my table with the world since I cant know where the last block was builded. I searched over the internet and saw that I can save custom data with the WorldSavedData but I cant impement it.

 

Thanks for taking the time to try helping me :)

Posted
  On 2/25/2016 at 12:56 PM, Paradox said:

  Quote

Thanks for answer.

 

Question 3 is very important, so i will try to explain it to you:

When you explore a world, new chunks are generated. When you exit the world, they are stored. When you load world back up, it loads chunks from drive, but it does not generate them.

So, question 3 is asking: if one day you change your database, and add coordinates that for "the given player" are in already generated chunk (chunk stored on drive), do you want to place (from code) blocks you just added in this chunk?

 

I want the blocks to be spawned in the world no matter what. I am using world.setBlock() to spawn the blocks and I got no problem with blocks spawning or dissapearing after a player exits the world. The only problem I got was how I could sync the new coordinates added to my table with the world since I cant know where the last block was builded. I searched over the internet and saw that I can save custom data with the WorldSavedData but I cant impement it.

 

Thanks for taking the time to try helping me :)

Ok. That clarifies a lot of things.

 

I suppose that you already have a class that connects to your database and reads blocks.

 

Now, you have 3 things to do:

1) Considering you are in 1.7.10, create BlockPos (holding x, y, z), read and write to nbt methods and with your IDE generate

hashCode

and

equals

methods.

2) Create your WorldSavedData class, following tutorial, including

get(World)

method to get data instance. You can use

perMapStorage

, I suppose you already have one. In there, add

Set<BlockPos>

field. This set will hold all blocks that were already generated. To save and load

Set

to/from nbt, use NBTTagList.

3) Use world generator and chunk load events to generate blocks.

 

Do first 2 steps, and try to do 3rd yourself. If you have any problems, ask them here, we will help.

 

EDIT: Official

WorldSavedData

tutorial: https://mcforge.readthedocs.org/en/latest/datastorage/worldsaveddata/.

Posted
  On 2/25/2016 at 3:11 PM, diesieben07 said:

I still do not see how this is an issue of server vs. Singleplayer. A singleplayer game runs one world at a time (with multiple dimensions). A server also runs one world at a time (with multiple dimensions).

There is not much difference between playing singleplayer and playing on a dedicated server, it is merely that in singleplayer the server runs on your own computer.

Hello,

in the dedicated server every player are in only one world. The one that the server hosting. In singleplayer this is not the case, every single player has a different world hosted by his integrated server.

 

  Quote

  Quote

  Quote

Thanks for answer.

 

Question 3 is very important, so i will try to explain it to you:

When you explore a world, new chunks are generated. When you exit the world, they are stored. When you load world back up, it loads chunks from drive, but it does not generate them.

So, question 3 is asking: if one day you change your database, and add coordinates that for "the given player" are in already generated chunk (chunk stored on drive), do you want to place (from code) blocks you just added in this chunk?

 

I want the blocks to be spawned in the world no matter what. I am using world.setBlock() to spawn the blocks and I got no problem with blocks spawning or dissapearing after a player exits the world. The only problem I got was how I could sync the new coordinates added to my table with the world since I cant know where the last block was builded. I searched over the internet and saw that I can save custom data with the WorldSavedData but I cant impement it.

 

Thanks for taking the time to try helping me :)

Ok. That clarifies a lot of things.

 

I suppose that you already have a class that connects to your database and reads blocks.

 

Now, you have 3 things to do:

1) Considering you are in 1.7.10, create BlockPos (holding x, y, z), read and write to nbt methods and with your IDE generate

hashCode

and

equals

methods.

2) Create your WorldSavedData class, following tutorial, including

get(World)

method to get data instance. You can use

perMapStorage

, I suppose you already have one. In there, add

Set<BlockPos>

field. This set will hold all blocks that were already generated. To save and load

Set

to/from nbt, use NBTTagList.

3) Use world generator and chunk load events to generate blocks.

 

Do first 2 steps, and try to do 3rd yourself. If you have any problems, ask them here, we will help.

 

EDIT: Official

WorldSavedData

tutorial: https://mcforge.readthedocs.org/en/latest/datastorage/worldsaveddata/.

 

Thanks for your answer,

I just finished tryint to figured our how WorldSavedData works and I did :)

I only store an integer which is the ID of the last block builded in the world, then when a player log in to the world I will compare the locally stored ID value with the value of the latest block there is in the database and they are not the same I will spawn the remaing block than need to be spawned.

Thank you everyone for help :)

Posted
  On 2/25/2016 at 3:16 PM, Paradox said:

I only store an integer which is the ID of the last block builded in the world, then when a player log in to the world I will compare the locally stored ID value with the value of the latest block there is in the database and they are not the same I will spawn the remaing block than need to be spawned.

Thank you everyone for help :)

 

Keep in mind that IDs for modded block/items are automatically assigned and will likely be different for every world, they're not a very reliable way to store persistent data.

 

Registry names are a much more reliable identifier for blocks/items.

RegistryNamespaced#getNameForObject

can be called on

Block.blockRegistry

or

Item.itemRegistry

to get the registry name of a

Block

/

Item

respectively.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 2/25/2016 at 3:23 PM, Choonster said:

  Quote

I only store an integer which is the ID of the last block builded in the world, then when a player log in to the world I will compare the locally stored ID value with the value of the latest block there is in the database and they are not the same I will spawn the remaing block than need to be spawned.

Thank you everyone for help :)

 

Keep in mind that IDs for modded block/items are automatically assigned and will likely be different for every world, they're not a very reliable way to store persistent data.

 

Registry names are a much more reliable identifier for blocks/items.

RegistryNamespaced#getNameForObject

can be called on

Block.blockRegistry

or

Item.itemRegistry

to get the registry name of a

Block

/

Item

respectively.

I dont mean blocks IDs. By ID I mean a row in my database name ID :)

 

  Quote

  Quote
in the dedicated server every player are in only one world. The one that the server hosting. In singleplayer this is not the case, every single player has a different world hosted by his integrated server.

Yes, there are many singleplayer worlds active because every player playing has their own integrated server.

But it's not like there is only one dedicated server out there? :o There are many servers active as well...

 

Oh I see your point. I was thinking that my database only would accessed by my server, but if another server administrator wants my mod to his server then I got more worlds accessing my database. You are totally right. Thank you very much for pointing this out. :)

Posted
  On 2/25/2016 at 3:26 PM, Paradox said:

I dont mean blocks IDs. By ID I mean a row in my database name ID :)

 

Ah, that makes more sense.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted
  On 2/25/2016 at 3:26 PM, Paradox said:

  Quote

  Quote
in the dedicated server every player are in only one world. The one that the server hosting. In singleplayer this is not the case, every single player has a different world hosted by his integrated server.

Yes, there are many singleplayer worlds active because every player playing has their own integrated server.

But it's not like there is only one dedicated server out there? :o There are many servers active as well...

 

Oh I see your point. I was thinking that my database only would accessed by my server, but if another server administrator wants my mod to his server then I got more worlds accessing my database. You are totally right. Thank you very much for pointing this out. :)

 

Cough

 

  Quote

I think he's planning a private mod for a private server.

 

But yeah, this kind of stuff should just be stored in WorldSavedData.

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

Your table probably needs a new column for metadata value. It would not only distinguish between colors of things but also some orientations. Do your structures also need to store tile entity data? Or will you either accept defaults or simply not use block types needing tile entities?

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.

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

    • Hi everyone, I’m working on a Minecraft mod and encountering an issue with a custom sound not playing when triggered. Here’s the setup: Problem: * A custom sound (killstreak_music) should play when a milestone (5 kills) is reached, but it doesn’t trigger in-game. * The .ogg file is in the correct directory (assets/killstreaksword/sounds/) and registered in sounds.json. sounds.json: {   "killstreak_music": {     "sounds": ["Finale.ogg"]   } } The .ogg file plays fine in other media players, but the /playsound command doesn’t detect it. What I’ve Tried: * Confirmed file path and name match exactly. * Reloaded resources (F3 + T) and re-exported the file using Audacity. * Added debug logs to my code to verify if the sound event is being retrieved. Here’s the relevant part of my code where I attempt to play the sound:   private static final ResourceLocation SOUND_LOCATION = ResourceLocation.fromNamespaceAndPath("killstreaksword", "killstreak_music"); private void playKillstreakMusic(Level world, Player player) {     SoundEvent soundEvent = ForgeRegistries.SOUND_EVENTS.getValue(SOUND_LOCATION);     if (soundEvent == null) {         System.out.println("Sound event not found: " + SOUND_LOCATION);     } else {         world.playSound(null, player.getX(), player.getY(), player.getZ(), soundEvent, SoundSource.PLAYERS, 1.0F, 1.0F);     } }   Could this be a file encoding or registration issue? Are there additional steps I’m missing to ensure Minecraft detects the sound? Any guidance or suggestions would be greatly appreciated. Thanks in advance!
    • Hello everyone, friends and family, I hope this message finds you well. I’m writing to you from Alberton, Canada, and I feel it’s important to share my story with you, not just as a cautionary tale, but as a message of hope. As many of you know, I’m a doctor, and in 2024, I decided to try my hand at cryptocurrency trading. I had heard so much about how profitable it could be, and with a background in analytics and understanding of markets, I thought I could navigate the space safely. Unfortunately, things didn’t go as planned. I was targeted by scammers who posed as legitimate trading platforms, and I ended up losing a significant amount of money. It was a devastating experience, and at one point, I felt like there was no way to recover my funds. But by God’s grace, I was referred to Hackerzed Nemesis Recovery, who are among the best bitcoin recovery specialists in the world. Through their expertise, they used advanced forensic techniques to track down the fraudulent transactions and recover every penny I had lost. I can’t tell you how grateful I am for their help without them, I would still be in the dark, feeling helpless and defeated. This experience has taught me a valuable lesson that I want to pass on to you all: Be extremely cautious when it comes to investing in cryptocurrency, especially online. While the industry itself can offer opportunities, there are countless scams out there designed to prey on people’s hopes and investments. If you have already fallen victim to such schemes, whether in forex, cryptocurrency, or Ponzi schemes, I strongly urge you to seek professional help. That brings me to another point I want to highlight: if you've been defrauded, do not lose hope. There are dedicated recovery services, like Hackerzed Nemesis Recovery, who can assist you in reclaiming your lost funds. cryptocurrency is a complex and volatile market, and while it can be rewarding, it's essential to proceed with caution. I hope my experience serves as a reminder to stay vigilant and do thorough research before making any investment. Wishing you all safety and success in your financial endeavors!  
    • Yes it was the full log. I didnt remove or add anything and did just what you recommended me with AT launcher and it doesnt work still. It has the same problem. I attatched the log.  
    • Yes, I agree. Downloading bods         
    • When I open a world, it works fine. It only crashes when I place a create block down. It also crashes when I try to reopen the world that crashes. I already tried to reset the graphics drivers.
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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