Jump to content

Recommended Posts

Posted

I am getting a strange error in 1.2.5. I don't know who/which mod is responsible, but I'm using yours.

 

The error first occurred the last time I played, trying to go into the nether.

It now happens at startup.

 

 

 

2012-08-23 16:46:44 [iNFO] MinecraftForge v3.3.8.152 Initialized

Twilight Forest: MinecraftForge minor version mismatch, expecting 3.1.x, may lead to unexpected behavior

Mystcraft [2012.08.23 04:46:45]: Myst SymLoader: Adding Packets

Mystcraft [2012.08.23 04:46:45]: Modifying EntityList

Mystcraft [2012.08.23 04:46:45]: Succeeded in modifing EntityList

Mystcraft [2012.08.23 04:46:45]: Modifying TileEntity List

Mystcraft [2012.08.23 04:46:45]: Succeeded in modifing TileEntity List

Extrabiomes XL: Injecting the Bunyan plugin into ExtrabiomesXL.

2012-08-23 16:46:45 [iNFO] Forge Mod Loader load complete, 5 mods loaded

2012-08-23 16:46:45 [iNFO] Preparing level "world"

2012-08-23 16:46:45 [iNFO] Default game type: 0

2012-08-23 16:46:45 [iNFO] Preparing start region for level 7

2012-08-23 16:46:46 [iNFO] Preparing spawn area: 36%

2012-08-23 16:46:47 [iNFO] Preparing spawn area: 69%

2012-08-23 16:46:48 [iNFO] Preparing start region for level 1

2012-08-23 16:46:48 [iNFO] Preparing spawn area: 85%

2012-08-23 16:46:48 [iNFO] Preparing start region for level -1

2012-08-23 16:46:49 [iNFO] Preparing spawn area: 81%

2012-08-23 16:46:50 [iNFO] Preparing start region for level 0

2012-08-23 16:46:50 [iNFO] Preparing spawn area: 53%

2012-08-23 16:46:51 [iNFO] Done (5.782s)! For help, type "help" or "?"

java.lang.NoSuchMethodError: my.cleanChunkBlockTileEntity(III)V

        at ge.f(World.java:1621)

        at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:564)

        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:450)

        at dn.run(SourceFile:492)

2012-08-23 16:46:51 [sEVERE] Unexpected exception

java.lang.NoSuchMethodError: my.cleanChunkBlockTileEntity(III)V

        at ge.f(World.java:1621)

        at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:564)

        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:450)

        at dn.run(SourceFile:492)

 

 

 

The server was created by the following:

 

ModDir="$HOME"/Documents/Games/Minecraft/Playing/Mods/125smp
JarDir="$HOME"/Documents/Games/Minecraft/Playing/Jars
TMPDIR=`mktemp -d server.jar.XXX` || exit 1
cd $TMPDIR
unzip "$JarDir"/minecraft_server_125.jar
unzip "$ModDir"/ClaySoil_Server_125.zip
unzip "$ModDir"/WaterPropagationFix_SMP-125.zip
unzip "$ModDir"/minecraftforge-server-3.3.8.152.zip
unzip "$ModDir"/lights_out_server_1.2.5.zip
unzip "$ModDir"/mystcraft-server-1.2.5-0.9.1.02-Forge-3.3.8.152.zip 
unzip "$ModDir"/twilightforest-1.10.1-server.zip
unzip "$ModDir"/extrabiomes-2.2.7-cs-fix2-smp.zip
unzip "$ModDir"/bunyan-1.5-smp.zip 
unzip "$ModDir"/SuperiorEnchantment-125smp.zip
mv ../new_server.jar ../new_server.jar.old
zip -r ../new_server.jar *

 

 

Can you help me locate this error?

 

Jeb! The sheep! The fence pens, they do nothing still leak!

Posted

... and it's Lights Out.

 

Grumble grumble phantom skylight grumble grumble cave worlds in mystcraft grumble grumble Vechs ...

Jeb! The sheep! The fence pens, they do nothing still leak!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • @Tsuk1 Also, new note, you can use blockbench to make the custom item model for when it is not on the head.   EDIT: Funny story, I am making a mod similar to yours! Mine is called NorseMC.
    • @Nood_dev Could you send a screenshot of your weapon code? Here is the one I made (for a dagger): The specific UUID does not matter, just that it is the same every time, which is why UUID#randomUUID does not work public class DaggerItem extends TieredItem implements Vanishable { protected static final double REACH_MODIFIER = -1.5D; protected final Multimap<Attribute, AttributeModifier> defaultModifiers; protected final UUID BASE_ATTACK_REACH_UUID = UUID.fromString("6fe75b5c-9d1b-4e83-9eea-a1d5a94e8dd5") public DaggerItem(Tier pTier, int pAttackDamageModifier, float pAttackSpeedModifier, Properties pProperties) { super(pTier, pAttackDamageModifier, pAttackSpeedModifier, pProperties); this.attackDamage = (float) pAttackDamageModifier + pTier.getAttackDamageBonus(); ImmutableMultimap.Builder<Attribute, AttributeModifier> builder = ImmutableMultimap.builder(); builder.put(Attributes.ATTACK_DAMAGE, new AttributeModifier(BASE_ATTACK_DAMAGE_UUID, "Weapon modifier", this.attackDamage, AttributeModifier.Operation.ADDITION)); builder.put(Attributes.ATTACK_SPEED, new AttributeModifier(BASE_ATTACK_SPEED_UUID, "Weapon modifier", pAttackSpeedModifier, AttributeModifier.Operation.ADDITION)); // THE ONE YOU WANT: builder.put(ForgeMod.ENTITY_REACH.get(), new AttributeModifier(BASE_ATTACK_REACH_UUID, "Weapon modifier", REACH_MODIFIER, AttributeModifier.Operation.ADDITION)); this.defaultModifiers = builder.build(); } @Override public Multimap<Attribute, AttributeModifier> getDefaultAttributeModifiers(EquipmentSlot pEquipmentSlot) { return pEquipmentSlot == EquipmentSlot.MAINHAND ? this.defaultModifiers : super.getDefaultAttributeModifiers(pEquipmentSlot); } }
    • https://images.app.goo.gl/1PxFKdxByTgkxvSu6
    • That's what we'll try out. I could never figure out how to recreate the crash, so I'll just have to wait and see.
    • Ok, I updated to the latest version and now the models are visible, the problem now is that the glowing eyes are not rendered nor any texture I render there when using shaders, even using the default Minecraft eyes RenderType, I use entityTranslucent and entityCutout, but it still won't render. Something I noticed when using shaders is that a texture, instead of appearing at the world position, would appear somewhere on the screen, following a curved path, it was strange, I haven't been able to reproduce it again. I thought it could be that since I render the texture in the AFTER ENTITIES stage which is posted after the batches used for entity rendering are finished, maybe that was the reason why the render types were not being drawn correctly, so I tried injecting code before finishing the batches but it still didn't work, plus the model was invisible when using shaders, there was a bug where if I look at the model from above it is visible but if I look at it from below it is invisible. So in summary, models are now visible but glowing eyes and textures are not rendered, that hasn't changed.
  • Topics

×
×
  • Create New...

Important Information

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