Jump to content

Stoutscientist

Members
  • Posts

    28
  • Joined

  • Last visited

Everything posted by Stoutscientist

  1. I'm just trying to help using my knowledge. I've gotten crashes when I added OptiFine and mods that change the rendering like Immersive Portals so I'm just saying what sometimes is the problem for me.
  2. and if you are using immersive portals or sodium with it that could be the issue
  3. like this? @SubscribeEvent public void onBlockStartBreak(PlayerEvent.BreakSpeed event){ event.newSpeed = 5; } and will it also allow me to only do it for a specific block?
  4. Looks like its either PizzaCraft or Chocolate Quest Repoured
  5. Looks like this person had the same issue as you and they said they just cleared all the mod configs.
  6. It looks like an issue from a mod called something like Night Config Core
  7. I would like to edit say the hardness of stone using ObfuscationReflectionHelper, what's the best way to go about this?
  8. I have a mod called "Rush Pearls" and I want to update it to 1.19, and I've run into an issue that I'm not sure if its me being an idiot or a genuine bug but in my code there's this line: EnderpearlReplacementEntity.shoot(_ent_sa, _ent_sa, _ent_sa.level.getRandom() , 0, 0, 0); and I get this error: The method shoot(Level, LivingEntity, Random, float, double, int) in the type EnderpearlReplacementEntity is not applicable for the arguments (Level, ServerPlayer, RandomSource, float, int, int) I'm pretty sure they removed Random and replaced it with RandomSource but when I try to force shoot it, it still wants a Random value. I should note all of this worked in 1.18.x I'm still learning Java so sorry if I'm being really stupid
  9. If it's not too big of a modpack you could try removing your mods one by one to see if it starts, and also you could see if the modpack has an update or if you made it yourself see if forge is up to date
  10. (I'm very unexperienced at reading logs but) It looks like it might be a issue having to do with a resource pack or a custom loading screen mod, try removing them and see if it fixes the issue
  11. It says that it expects a ; public void onBreaking({here}PlayerEvent.BreakSpeed event{and here}) But got a ( and a ) (Without the extra brackets) and if it helps this is a 1.18.2 mod
  12. I have this code @SubscribeEvent public void onBreaking(PlayerEvent.BreakSpeed event) { if (event.getEntityLiving() instanceof EntityPlayer) { EntityPlayer player = (EntityPlayer) event.getEntityLiving(); ItemStack itemStack = player.getHeldItemMainhand(); float f = event.getOriginalSpeed() + 2; event.setNewSpeed(f); } } And for some reason it's not compiling. Thanks for all the help!
  13. Try reinstalling all the server files, it looks like the problem has to do with the server jar
  14. It could also be that the server file isn't compiled for ARM CPU's and only Intel/AMD. I see that there are Youtube videos on how to do it so if you aren't already you could try following one of those
  15. If you use Curseforge then when your on the mod page you can click relations and it will tell you its dependencies
  16. Where are you downloading these mods from? Also you might try deleting winrar
  17. It looks like there is an argument --installServer when referring to this page also make sure you run this in a folder made for the server because it will put all the files wherever you run it though as I am scared to mess up peoples stuff Although the things I have said have been tested safe (on a non-headless PC), I am not legally responsible for any data loss or issues that may occur when doing this
  18. From a unexperienced person looking at the debug log it looks like it might be an error with a wither skeleton. You could try going into server.properties and setting the difficulty to peaceful to see if that fixes it
×
×
  • Create New...

Important Information

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