Everything posted by Hipposgrumm
-
HELP
Unfortunately I can not help you further because 1.12.2 is not supported here (it's in the rules that I cannot help with versions that aren't Latest or LTS).
-
Forge 40.2.1 Dawn Craft 1.13_fix Server crashing
I've heard that this can be solved by setting max-tick-time in server.properties to -1.
-
HELP
The port you are trying to use is already being used by something else. Additionally 1.12.2 is no longer supported here. We only support 1.18.x and 1.19.x.
-
When I build the project it prompts this
I am sorry you can't find anything else, but 1.16.5 is not supported here and I am actually not allowed to help you. Have you at least tried what I suggested?
-
When I build the project it prompts this
You would have to find another community to help you if the problem persists. That's all the help I can provide.
-
Error triying enter to the server
I think you must open your mods folder for the client and server and remove it from there. Maybe just need to do it for the server though based on the problem.
-
Error triying enter to the server
I see Jade is involved. Try disabling it and see if that fixes the problem.
-
Error triying enter to the server
Can you post the client log?
-
When I build the project it prompts this
1.16.5 is no longer supported here, but try doing it until it works, that's always worked for me.
-
When i try to enter into my world this erro keeps crashing my game "java.lang.NullPointerException: Exception in server tick "
It seems like an issue with the wrench from Gregtech having incompatibilities with some (farming) tool from EnderIO. You can try disabling it manually in the config if you can. However, you might want to ask the modpack devs for more insight.
-
Getting an null pointer exception error when trying to join a server
This problem happens outside of JVM and therefore is outside of Minecraft. You will need to upgrade your graphics drivers to fix this.
-
[Resolved] Event Not Canceling
A workaround I would do for this is to just make the attack do 0 damage.
-
Getting an null pointer exception error when trying to join a server
I can't seem to find the server log file, but from what I can tell it seems to be a problem with the linguistic glyph scroll from the Atlantis mod. Try removing the mod or disabling the item(s) if possible.
-
Ban evasion but not banned before?
Are you Calmitous_End#9531? If so, you were banned because: (Spoiler because it may be traumatizing or trigger PTSD in some people.) Additionally, Finn asked you for a picture of your monitor to prove that you are not using an alt and you were unable to deliver.
-
Checking if player is an operator [1.19.2][SOLVED]
Assuming you already have the ServerPlayer, you can do this: // Can be static but doesn't have to be, depending on the use context. public static boolean checkPlayerIsOp(ServerPlayer player) { return player.hasPermissions(2); } As for checking if it is singleplayer, there is probably a better option than what I was about to recommend.
-
I was trying to create a mod server in minecraft 1.18.2, but it won't let me open it with mods
You need geckolib.
-
java.lang.IllegalAccessError
1.16.5 is no longer supported here. We only support 1.18.x and 1.19.x.
-
Fatally missing registry entries
Wrong category.
-
Minecraft crash code -1 Error: java.lang.NoClassDefFoundError: net/minecraftforge/common/ForgeHooks
1.12.2 is no longer supported here. We only support 1.18.x and 1.19.x.
- я и друг
-
How to create an invisible block without colliding with players but with colliding for mobs
See how Dark Utils does it.
-
Errors closing the server, HELP
A. 1.16.5 is no longer supported here. We only support 1.18.x and 1.19.x. B. You do /stop and it stops, that's what you wanted, right?
-
How to Stop a Sword Hitting an Entity
This probably isn't perfect practice, but what I would do is create a Mixin and mix into the LivingEntity#hurt(DamageSource, float) class and add the following check: DamageSource is Entity If so, check if the entity is holding the sword. Any other conditions, such as making sure the entity is a player. If the check above is true, return false. Something like this: package com.example.examplemod.mixin; import com.example.examplemod.Mod; import net.minecraft.world.damagesource.DamageSource; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.EquipmentSlot; import net.minecraft.world.entity.LivingEntity; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; @Mixin(LivingEntity.class) public abstract class SuperCoolSwordThing { @Inject(method="hurt(Lnet/minecraft/world/damagesource/DamageSource;F)Z", at = @At("HEAD"), cancellable = true) private void superCoolSword_onlyDamageEnemy(DamageSource p_21016_, float p_21017_, CallbackInfoReturnable<Boolean> cir) { if (p_21016_.getEntity()!=null&&p_21016_.getEntity() instanceof LivingEntity&&((LivingEntity)p_21016_.getEntity()).getMainHandItem().is(Mod.SUPERCOOLSWORD) && Mod.checkIsEntity((LivingEntity)(Object)this)) { cir.setReturnValue(false); } } } I will remind you that this probably isn't professional and that there are probably better ways to do it. (This is just how I would do it.)
-
Java exception error
1.16.5 is no longer supported here. Please try to recreate the issue in 1.18.x or 1.19.x.
-
Hi I am trying to host a server from my pc and it crashes every time. what should I do? crash log:
1.16.5 is no longer supported here. We only support 1.18.x and 1.19.x.
IPS spam blocked by CleanTalk.