Everything posted by Luis_ST
-
[1.18.2] how to summon lightning bolt
Use EntityType#create to create a new instance of your Entity. Then you can modify the Entity in the way you want (e.g change position, set some values, etc.) After that use Level#addFreshEntity to add the Entity to the Level (World). Note: Spawning Entities is a server only operation.
-
apexcore failed to load correctly
Update to the latest version of Forge.
-
[1.18.2] How to get packet response?
I think this feature does no longer exists, but you can just send a Packet back to the client. You can get the ServerPlayer from the given Context, then you should be able to use PacketDistributor#PLAYER.
-
Syntaxs error help
The error should be clear, you forgot a ; after Everything public static final CreativeModeTab Everything= new CreativeModeTab ("Everything") { public ItemStack makeIcon() { return new ItemStack(ItemInit.RUBY.get()); } } <- ; here
-
I keep getting this error when trying to open my game
- 1.18.2 installer failed :"Failed to run processor..."
Please post installer log.- [1.19.2] Knockback resistance to explosion
If it's you own Entity you can override #ignoreExplosion in your Entity class and return true.- questions about banning
Why do you want to do this? Banning and Unbanning players should be a admin operation and should not modified/controlled by a Mod.- Problem With Custom Modpack
One of your Mods is using a file with a invalid name, make sure you use the latest versions of all installed Mods.- I keep getting this error when trying to open my game
Why is your server running in Offline Mode?- The game crashed whilst mouseclicked event handler
Could be an issue with Biomes O' Plenty.- Game Crashes when anyone types a chat message
At least one of your installed Mods is written for an older version of Minecraft. Make sure you use the latest versions of the Mods you using. Post debug.log from the logs folder for further informations.- How to turn off the animation when the item is damaged?
Could you please provide a bit more context. Store the Durability in the ItemStack Tag, and get it when you need to restore it. Call ItemStack#getTagElement with your Mod id then put/get the data you want to store/restore.- The game crashed whilst initializing game
You installed Biomes O' Plenty for 1.19 on 1.19.2.- The game crashed whilst initializing game
Please post debug.log from the logs folder.- cen someone tell me which mod does this the the enchantment table screen?
Looks like a problem with Alex's Mobs. Make sure you are using the latest version. If the Mod is already up to date, talk to the Mod author.- How to turn off the animation when the item is damaged?
The normal way to damage the Item would be ItemStack#hurtAndBreak. The animation is done via LivingEntity#broadcastBreakEvent which will be called from the Consumer of #hurtAndBreak. stack.hurtAndBreak(1, player, (p) -> { p.broadcastBreakEvent(EquipmentSlot.MAINHAND); // This will send the animation to the client });- I get this error when trying to create a new item I know i do something worn i do not now what
First of all do not use @OnlyIn it's vanilla only. Second the #makeIcon in your CreativeModeTab will not even compile, you can not have two return statements. Edit: Please use the code feature of the Forum or a paste side to post code.- cen someone tell me which mod does this the the enchantment table screen?
The log is only useful if there is an error, but this is not an error which is logged. You could check if all Mods are up to date, but that's my last idea.- cen someone tell me which mod does this the the enchantment table screen?
The only thing i can tell you that one of your Mods has a broken render setup. I suspect that this mod is currently displaying something on the screen. You could try without Jei and JourneyMap (last one is a guess beacuse of the Overlay in the left top corner).- cen someone tell me which mod does this the the enchantment table screen?
This is a file on your computer we can not access to it.You can use https://imgur.com/ to upload images.- Ok so i resolved my other problem and trying to crete an item bun a error apears
You missed a , after "parent":"item/generated"- §7java.lang.NullPointerException: Registry Object not present: ars_nouveau:potion_flask
Problem with Ars Nouveau.- How to check if player is holding control on multiplayer? [1.18.2] [SOLVED]
You should use a KeyMapping for that, then check in ClientTickEvent KeyMapping#isDown and send the state of the KeyMapping via a custom network packet to the server. To avoid sending a Packet each tick, you should send the Packet only if the KeyMapping got pressed or released (the state changed).- §7java.lang.NullPointerException: Registry Object not present: mysticalagriculture:infusion_crystal
Problem with Mystical Agriculture. Make sure you are using the latest version. If the Mod is already up to date, talk to the Mod author. - 1.18.2 installer failed :"Failed to run processor..."
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.