Jump to content

Patmobile

Members
  • Posts

    17
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Patmobile's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. After I updated forge it works. Thanks for that hint. Thanks to all who helped me.
  2. I updated all mod to the forge registry events. It changed nothing, but at least I am using now the right way to register blocks and items
  3. I made some tests and I am now able to say that the problem is only client-side. The real problem is that the IDs from the server world not synchronizing to the client. I make an example: The world on the server has the following IDs: More Blocks Mod 500-510 More Items Mod 511-525 Trampolin Mod 526-542 And then I add the parallel dimension mod: Sever: More Blocks Mod 500-510 More Items Mod 511-525 Trampolin Mod 526-542 Parallel Dimension Mod 543-558 But the Client load the IDs like that: More Blocks Mod 500-510 More Items Mod 511-525 Parallel Dimension Mod 526-541 Trampolin Mod 542-558 When I change the file name of the parallel dimension mod to be last in the alphabet it fits with the level.dat. Is there a change to synchronize the ids with the client?
  4. Just put [solved] on the topic title no problem
  5. So yeah the problem is in your model file. 6 lines (6 sloc) 104 Bytes { "parent": "item/generated", "textures": { "layer0": "inbc:item/taco.png" } } you can change ""layer0": "inbc:item/taco.png" into ""layer0": "inbc:item/taco"" you don't need to write ".png" behind the file name. You can also change your texture name from "taco" to "taco.png"
  6. Try to put your "models" and "textures" folder in "assets/inbc".
  7. But Forge add the entrys to the level.dat and if I had only one mod I can update the mod and I can play with the update on existing worlds. So the only chance to play with the mods and update these on existing worlds is to make one mod? In the past I made this and it worked in the forge 1.8 I updated my github if someone want to look at the new code.
  8. Okay I changed my registration and I'm now using event.getRegistry().registerAll. I tested it with my Trampolin Mod and with the More Blocks Mod, but it changed nothing.
  9. 1.13.2 https://github.com/Patmobile/Mods As blueprint I used: https://github.com/MC-U-Team/U-Mod https://github.com/Krevik/1.13.2-test/tree/06e62fcb27cdcb5bd010a82361f57d12b6491446
  10. Hello Forge Modding Community, I'am developing mods for my own use. I have four Mods: More Blocks Mod More Items Mod Trampolin Mod Parallel Dimension Mod so I also have a private server were we are playing those mods. We played with the first three mods (More Blocks, More Items and Trampolin) and so I added to this world the 4. mod (parallel Dimension). When I did that the server gave those logs: [16Mar2019 22:50:30.794] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Block: Object did not get ID it asked for. Name: paralleldimension:rubinerz Expected: 605 Got: 620 [16Mar2019 22:50:30.795] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Block: Object did not get ID it asked for. Name: paralleldimension:paralleldimensionportal Expected: 607 Got: 621 [16Mar2019 22:50:30.795] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Block: Object did not get ID it asked for. Name: paralleldimension:hoellenfeuer Expected: 606 Got: 622 [16Mar2019 22:50:30.795] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Block: Object did not get ID it asked for. Name: paralleldimension:saphirerz Expected: 604 Got: 623 [16Mar2019 22:50:30.796] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Item: Object did not get ID it asked for. Name: paralleldimension:hoellenfeuerzeug Expected: 832 Got: 846 [16Mar2019 22:50:30.796] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Item: Object did not get ID it asked for. Name: paralleldimension:rubinerz Expected: 834 Got: 847 [16Mar2019 22:50:30.796] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Item: Object did not get ID it asked for. Name: paralleldimension:paralleldimensionportal Expected: 836 Got: 848 [16Mar2019 22:50:30.796] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Item: Object did not get ID it asked for. Name: paralleldimension:rubin Expected: 831 Got: 849 [16Mar2019 22:50:30.796] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Item: Object did not get ID it asked for. Name: paralleldimension:hoellenfeuer Expected: 835 Got: 850 [16Mar2019 22:50:30.796] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Item: Object did not get ID it asked for. Name: paralleldimension:saphir Expected: 830 Got: 851 [16Mar2019 22:50:30.796] [Server thread/WARN] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry Item: Object did not get ID it asked for. Name: paralleldimension:saphirerz Expected: 833 Got: 852 Then the IDs seems to have problems with the IDs from Trampolin Mod. But when I change the file name (only the file name) from "paralleldimension-1.0.jar" (the other mods are named: "moreitems-1.0.jar", "moreblocks-1.0.jar" and "trampolin-1.0.jar") to "zparalleldimension-1.0.jar" (or any other change so that the file is last in the alphabet it works perfect. Is that a bug I can fix by myself? Thanks to all who want and will help me.
  11. Made an mod by myself and can say that forge is stable, also the server forge works good.
  12. Just fixed it. I only need to make a reinstall of the server, same mods, same world, same versions and everything works correctly. Thanks to all. Can be closed
  13. This are my own mods. I wrote those mods by myself. So I gave you an expamle: Items mod is on the server and on the client: Everything works fine so I craft an iron spring and put these spring in my inventory. Then I close the game and put my blocks mod in the mod folder. Then I reconnect to the server. The spring is now in my inventory or when I craft a new one an snowbrick (everytime this doesn't change). Or stone helemt: I add the mod it says I have the Obsidian sword on my head but I can put it off an on again. So I think that the server does not think it is a sword. The server handle it Lila a helmet. It doesn't change anything if I add the blocks mod to the server
×
×
  • Create New...

Important Information

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