Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Insane96MCP

Insane96MCP

Members
 View Profile  See their activity
  • Content Count

    211
  • Joined

    January 13, 2017
  • Last visited

    May 23, 2020

Community Reputation

2 Neutral

About Insane96MCP

  • Rank
    Creeper Killer

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Recent Profile Visitors

4096 profile views
  • pitris90

    pitris90

    May 9, 2020

  • Corail31

    Corail31

    November 16, 2018

  • shane020482

    shane020482

    May 25, 2018

  • diesieben07

    diesieben07

    April 27, 2018

  • desht

    desht

    February 27, 2018

  1. Insane96MCP started following [SOLVED] Check if PvP is enabled, I'm just stupid, [1.14] Stacktrace not matching source and and 7 others February 23, 2020
  2. Insane96MCP

    I'm just stupid

    Insane96MCP posted a topic in Support & Bug Reports

    I have this simple event public static void oreXpDrop(BlockEvent.BreakEvent event) { int xpToDrop = event.getExpToDrop(); IguanaTweaksReborn.LOGGER.info(xpToDrop); xpToDrop *= ModConfig.Experience.oreMultiplier.get(); //2.5d IguanaTweaksReborn.LOGGER.info(xpToDrop); event.setExpToDrop(xpToDrop); } The log shows that experience has been increased and more orbs spawn from the block, but when I pick them up, they are empty and the effectively picked up experience is the original one.
    • February 23, 2020
  3. Insane96MCP

    [1.14] Stacktrace not matching source

    Insane96MCP posted a topic in Modder Support

    I'm making a simple mod to make animals attack players much like zombie pigmen ... the problem is that when an animal attacks the player the game crashes ... No problem: stacktrace and I'll debug ... well the problem is that the stack trace points to a row that's not in the correct method and it's driving me crazy. I've tried refreshing gradle and regen intellijruns but no fix. MobEntity.java:1164 points to recreateLeash and not attackEntityAsMob (I'm using IntelliJ)
    • October 27, 2019
    • 1 reply
  4. Insane96MCP

    Safari not allowed to open JAVA Jar files?

    Insane96MCP replied to Rndm_UsR's topic in Support & Bug Reports

    Did you check somewhere how to install mods?
    • October 4, 2019
    • 21 replies
  5. Insane96MCP

    can someone help me out here?

    Insane96MCP replied to Griffinpax10's topic in Mods

    Yeah, try to avoid website like 9minecraft or similar: https://stopmodreposts.org/
    • June 13, 2019
    • 2 replies
  6. Insane96MCP

    [1.12.2] 6GB worth of log files. Filled with netty exceptions

    Insane96MCP posted a topic in Support & Bug Reports

    I've made a server for my modpack and rarely the log files gets as 6GB as big. That's because sometimes it gets filled with [17:43:22] [Netty Epoll Server IO #8/ERROR] [FML]: NetworkDispatcher exception io.netty.channel.unix.Errors$NativeIoException: syscall:writev(..) failed: Broken pipe at io.netty.channel.unix.FileDescriptor.writeAddresses(..)(Unknown Source) ~[minecraft_server.1.12.2.jar:?] and [18:09:10] [Netty Epoll Server IO #17/ERROR] [FML]: NetworkDispatcher exception io.netty.channel.unix.Errors$NativeIoException: writevAddresses(..) failed: Connection timed out at io.netty.channel.unix.Errors.newIOException(Errors.java:117) ~[minecraft_server.1.12.2.jar:?] at io.netty.channel.unix.Errors.ioResult(Errors.java:138) ~[minecraft_server.1.12.2.jar:?] at io.netty.channel.unix.FileDescriptor.writevAddresses(FileDescriptor.java:152) ~[minecraft_server.1.12.2.jar:?] at io.netty.channel.epoll.AbstractEpollStreamChannel.writeBytesMultiple(AbstractEpollStreamChannel.java:305) ~[minecraft_server.1.12.2.jar:?] at io.netty.channel.epoll.AbstractEpollStreamChannel.doWriteMultiple(AbstractEpollStreamChannel.java:532) ~[minecraft_server.1.12.2.jar:?] at io.netty.channel.epoll.AbstractEpollStreamChannel.doWrite(AbstractEpollStreamChannel.java:469) ~[minecraft_server.1.12.2.jar:?] at io.netty.channel.AbstractChannel$AbstractUnsafe.flush0(AbstractChannel.java:856) [minecraft_server.1.12.2.jar:?] at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe.epollOutReady(AbstractEpollChannel.java:478) [minecraft_server.1.12.2.jar:?] at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollOutReady(AbstractEpollStreamChannel.java:947) [minecraft_server.1.12.2.jar:?] at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:384) [minecraft_server.1.12.2.jar:?] at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:299) [minecraft_server.1.12.2.jar:?] at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) [minecraft_server.1.12.2.jar:?] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_111] And I really don't know what's causing this to happen. This mostly happens when a player can't connect. As the log is spammed with those, the player can finally log again.
    • May 25, 2019
    • 2 replies
  7. Insane96MCP

    [1.12] Apply textures via code?

    Insane96MCP replied to Insane96MCP's topic in Modder Support

    Uhm, seems like the texture id is still taken from the block's resource location.
    • April 13, 2019
    • 3 replies
  8. Insane96MCP

    [1.12] Apply textures via code?

    Insane96MCP posted a topic in Modder Support

    I'm making a simple mod to have decorative ores. I would like to have this thing dynamically, so you can add ores by adding the Id via config. E.g. The config would look like "Ore to create decoration block" S: decorationOre < minecraft:coal_ore > This would create a new block named JASBTweaks:decorative_ore_minecraft_coal_ore. The problem is I really don't know how to get the textures for the block, since I need to use the original ones and need to be applied via code. This is the DecorativeOre Class: public class BlockDecorativeOre extends Block{ public String oreId; public short oreMeta; public BlockDecorativeOre(String oreId, short oreMeta, String translationKey) { super(Material.ROCK); this.oreId = oreId; this.oreMeta = oreMeta; setRegistryName(new ResourceLocation(JASBTweaks.MOD_ID, "decorative_ore_" + oreId.replace(":", "_") + "_" + oreMeta)); setTranslationKey(translationKey); setCreativeTab(CreativeTabs.DECORATIONS); setHardness(1.5f); setResistance(5.0f); setHarvestLevel("pickaxe", 0); ModBlocks.BLOCKS.add(this); } } So when the config is loaded I can register the block like List<BlockDecorativeOre> decorativeOres = new ArrayList<DecorativeOre>(); public void onConfigLoad() { for (int i = 0; i < config.decorativeOres.length; i++) { //Get all the meta etc. decorativeOres.add(new DecorativeOre(name, meta, translationKey); } } The translation key part will surely be treated in another way.
    • April 13, 2019
    • 3 replies
  9. Insane96MCP

    [1.7.10] Custom NEI recipe - TransferRects

    Insane96MCP replied to weckar's topic in Modder Support

    As you already said 1.7.10 is no longer supported.
    • March 12, 2019
    • 4 replies
  10. Insane96MCP

    [1.13] PlayerRespawnEvent seems to use client side player and not server one

    Insane96MCP posted a topic in Modder Support

    I'm trying to change player health on respawn but it's not working. https://github.com/Insane-96/IguanaTweaksReborn/blob/1.13/common/net/insane96mcp/iguanatweaks/modules/ModuleSleepRespawn.java#L175 Even tried damaging the player or adding a poison effect to him but the damage is not applied and the poison effect is applied but only client side (I can see the poisoned hearts but damage is not applied and the effect never wears off, I thought that the effect is only client side). Adding a logger.info mentions Server thread/INFO in the log
    • March 12, 2019
  11. Insane96MCP

    Prevent Enchantment from begin on Enchanted Book?

    Insane96MCP posted a topic in Modder Support

    I have a new enchantment that shouldn't be available on books isAllowedOnBooks already returns false, but the enchantment can be still found in villagers trades. There's anyway to prevent this to happen? Found the culprit: In EntityVillager.ListEnchantedBookForEmeralds.addMerchantRecipe() it gets the Enchantment registry and gets a random enchantment off all the ones registered so unless using ASM (I think) there's no way to fix this.
    • January 24, 2019
    • 2 replies
  12. Insane96MCP

    [SOLVED] Check if PvP is enabled

    Insane96MCP posted a topic in Modder Support

    There's anyway to check if PvP is enabled in the world? Searching for a way to check PvP even in teams (/scoreboard teams option <team_name> friendlyFire) EDIT: Found EntityPlayer#canAttackPlayer
    • January 12, 2019
    • 1 reply
  13. Insane96MCP

    Draw in world like name tags

    Insane96MCP replied to Insane96MCP's topic in Modder Support

    I just tried copy-paste your code HAHHAHAHHAA Btw yeah, I would like to understand why all this needs to be done
    • December 28, 2018
    • 10 replies
  14. Insane96MCP

    Draw in world like name tags

    Insane96MCP replied to Insane96MCP's topic in Modder Support

    I don't understand why I need to translate
    • December 28, 2018
    • 10 replies
  15. Insane96MCP

    Draw in world like name tags

    Insane96MCP replied to Insane96MCP's topic in Modder Support

    I'm pretty sure I already have the right position
    • December 28, 2018
    • 10 replies
  16. Insane96MCP

    Draw in world like name tags

    Insane96MCP replied to Insane96MCP's topic in Modder Support

    Ok, managed to draw in the event but the nameplate still doesn't show for some reasons. I might be missing something https://github.com/Insane-96/XpHolder/blob/2.1/common/net/insane96mcp/xpholder/events/RenderWorldLast.java#L34
    • December 28, 2018
    • 10 replies
  • All Activity
  • Home
  • Insane96MCP
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community