Jump to content

TileEntity

Superhelper
  • Posts

    3971
  • Joined

  • Last visited

  • Days Won

    149

Everything posted by TileEntity

  1. Remove rubidium - you are already using embeddium which is a fork of it
  2. Delete the jei-server.toml file in your config folder If there is no such file, check the worldsave, serverconfig folder
  3. There is an issue with sound-physics-remastered Delete the config of this mod (config folder) and test it again If there is no change, try other builds
  4. Can you place modded blocks? Maybe you are starting a vanilla server, not a forge server (so mods are not loaded on server-side) Add the server log with sites like https://mclo.gs/
  5. Looks like an issue with cobblemon itself - report it to the creators https://gitlab.com/cable-mc/cobblemon/-/issues/
  6. Add the crash-report or latest.log (logs-folder) with sites like https://mclo.gs/ and paste the link to it here
  7. Do you mean waystones? You can use KubeJS to remove and add a changed recipe for it: https://www.curseforge.com/minecraft/mc-mods/kubejs Add KubeJS and start the modpack once to generate the files for the mod In your modpack folder, you will find now a kubejs folder Go to server_scripts (create the folder if missing) - yes, also for singleplayer, use the server_scripts folder Create a new file "reciperemove.js" Edit this file and add the recipe for the waypoint mod: ServerEvents.recipes(event => { let toRemove = [ {output: 'waystones:example_item'}, ]; for (const remove of toRemove) { event.remove(remove); } }) Just make sure you are using the correct item ID Create another file "recipes.js" in the server_scripts folder and use: ServerEvents.recipes(event => { event.shaped( Item.of('waystones:example_item'), [ 'AAA', 'BCB', 'AAA' ], { A: 'minecraft:stone', B: 'waystones:item_1', C: 'waystones:item_2' } ) }) The Letter Block with AAA etc is a crafting table - so there you define the recipe and the items
  8. Dawnera is not working on a server - remove it and dawnera_delight
  9. Does it work without Optifine? If yes, replace Optifine with Embeddium + Oculus
  10. Make sure Java is running via Nvidia GPU: https://windowsreport.com/minecraft-not-using-gpu/
  11. If you are using AMD/ATI, get the drivers from their website - do not update via system
  12. Does it work without epicfight?
  13. Maybe use such a pack as working base and add new mods one by one
  14. Add the crash-report or latest.log (logs-folder) with sites like https://mclo.gs/ and paste the link to it here
  15. Ah Try createFixedRangeEvent instead of createVariableRangeEvent
  16. And Forgified Fabric API?
  17. Add the crash-report or latest.log (logs-folder) with sites like https://mclo.gs/ and paste the link to it here
  18. Looks like some kind of bug with fabric api Does it work without fabric-api and the fabric mods?
  19. And without KubeJS? It looks like this mod loads resources that break the worldgen - Common Stargates/overworld_cartouches and sgjourney are mentioned
  20. Add crash-reports with sites like https://mclo.gs/ Remove the mod watut
  21. Missing or unsupported mandatory dependencies: Mod ID: 'flywheel', Requested by: 'ponder', Expected range: '[1.0.0,2.0)', Actual version: '0.6.10-7' Mod ID: 'create', Requested by: 'createcobblestone', Expected range: '[0.5.1.j,0.5.2)', Actual version: '6.0.4' Mod ID: 'flywheel', Requested by: 'create', Expected range: '[1.0.0,2.0)', Actual version: '0.6.10-7' Mod ID: 'create', Requested by: 'createaddition', Expected range: '[0.5.1.e,0.5.2)', Actual version: '6.0.4' Createaddition and createcobblestone are not compatible with Create 6
×
×
  • Create New...

Important Information

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