• 0

    posted a message on Good replacement for Techne?

    So since the Techne website has been down for forever, and most Techne downloads are broken, what is a good modeling program similar to Techne?

    Posted in: Mods Discussion
  • 0

    posted a message on AoA--25 New Dimensions• 330 Mobs• 27 Bosses• Skills• Quests• 600+Items [LARGE Bugfix Update, May 2018]

    Does Xolova update it? Considering the Labricon dimension STILL isn't added, or the forum post has not been changed, it is most likely dead.

    Posted in: Minecraft Mods
  • 0

    posted a message on AoA--25 New Dimensions• 330 Mobs• 27 Bosses• Skills• Quests• 600+Items [LARGE Bugfix Update, May 2018]

    I wish I had never left Minecraft, I should have played while there was still part of the AoA community left. ;-; This was such an awesome mod and I am really sad it is dead.

    Posted in: Minecraft Mods
  • 0

    posted a message on [1.10.2] Localization not working for mod?

    so whats wrong with it?

    Posted in: Mods Discussion
  • 0

    posted a message on [1.10.2] Localization not working for mod?

    https://shadowfacts.net/tutorials/forge-modding-1102 It did seem a little weird because he didnt put in some things and i had to tinker with his code a little bit, im still learning 1.10.2 though because 1.7.10 is easy

    Posted in: Mods Discussion
  • 0

    posted a message on [1.10.2] Localization not working for mod?

    I really need help, can somebody help me?

    Posted in: Mods Discussion
  • 0

    posted a message on [1.10.2] Localization not working for mod?

    When i try to do the localization, it doesn't work. BTW: for some reason the organization i put into the actual code doesn't show, so if it looks bad thats why


    en_US.lang:



    # Items
    item.ingotTechnetium.name=Technetium Ingot


    # Blocks
    tile.oreTechnetium.name=Technetium Ore


    ItemBase:



    package net.domidufsmod.tutorial.item;

    import net.minecraft.creativetab.CreativeTabs;
    import net.minecraft.item.Item;
    import net.domidufsmod.tutorial.DomidufsMod;

    public class ItemBase extends Item {

    protected String name;

    public ItemBase(String name) {
    this.name = name;
    setUnlocalizedName(name);
    setRegistryName(name);
    }

    public void registerItemModel() {
    DomidufsMod.proxy.registerItemRenderer(this, 0, name);
    }

    @Override
    public ItemBase setCreativeTab(CreativeTabs tab) {
    super.setCreativeTab(tab);
    return this;
    }

    }


    ModItems:



    package net.domidufsmod.tutorial.item;

    import net.minecraft.creativetab.CreativeTabs;
    import net.minecraft.item.Item;
    import net.minecraftforge.fml.common.registry.GameRegistry;

    public class ModItems {

    public static ItemBase ingotTechnetium;

    public static void init() {
    ingotTechnetium = register(new ItemBase("ingotTechnetium").setCreativeTab(CreativeTabs.MATERIALS));
    }

    private static <T extends Item> T register(T item) {
    GameRegistry.register(item);

    if (item instanceof ItemBase) {
    ((ItemBase)item).registerItemModel();
    }

    return item;
    }

    }


    BlockBase:



    package net.domidufsmod.tutorial.block;

    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    import net.minecraft.creativetab.CreativeTabs;
    import net.minecraft.item.ItemBlock;
    import net.domidufsmod.tutorial.DomidufsMod;
    import net.domidufsmod.tutorial.block.ModBlocks;

    public class BlockBase extends Block {

    protected String name;

    public BlockBase(Material material, String name) {
    super(material);
    this.name = name;
    setUnlocalizedName(name);
    setRegistryName(name);
    }

    public void registerItemModel(ItemBlock itemBlock) {
    DomidufsMod.proxy.registerItemRenderer(itemBlock, 0, name);
    }

    @Override
    public BlockBase setCreativeTab(CreativeTabs tab) {
    super.setCreativeTab(tab);
    return this;
    }
    }


    BlockBase:



    package net.domidufsmod.tutorial.block;

    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    import net.minecraft.creativetab.CreativeTabs;
    import net.minecraft.item.ItemBlock;
    import net.minecraftforge.fml.common.registry.GameRegistry;

    public class ModBlocks {

    public static BlockBase oreTechnetium;

    public static void init() {
    oreTechnetium = register(new BlockBase(Material.ROCK, "oreTechnetium").setCreativeTab(CreativeTabs.MATERIALS));
    }

    private static <T extends Block> T register(T block, ItemBlock itemBlock) {
    GameRegistry.register(block);
    GameRegistry.register(itemBlock);

    if (block instanceof BlockBase) {
    ((BlockBase)block).registerItemModel(itemBlock);
    }

    return block;
    }

    private static <T extends Block> T register(T block) {
    ItemBlock itemBlock = new ItemBlock(block);
    itemBlock.setRegistryName(block.getRegistryName());
    return register(block, itemBlock);
    }

    }


    BlockOre:



    package net.domidufsmod.tutorial.block;

    import net.minecraft.block.material.Material;
    import net.minecraft.creativetab.CreativeTabs;

    public class BlockOre extends BlockBase {

    public BlockOre(String name) {
    super(Material.ROCK, name);

    setHardness(3f);
    setResistance(5f);
    }

    @Override
    public BlockOre setCreativeTab(CreativeTabs tab) {
    super.setCreativeTab(tab);
    return this;
    }

    }

    Posted in: Mods Discussion
  • 0

    posted a message on Xaero's Minimap 1.20 Forge (+ Fabric | 1.19.4 | 1.18.2 | 1.17.1 | 1.16.5 | 1.15.2 | 1.14.4 | 1.12.2 and more)

    it wont let me connect to a server with it?

    Posted in: Minecraft Mods
  • 0

    posted a message on I am creeped out a little...

    so for some reason theres all these random death messages (ill try to get screenshots later) of random player names. I do not have any mods that install players though, which is the weird thing.


    MOD LIST:


    Optifine

    Mapwriter

    Silents Gems

    NEI

    Code chicken lib

    code chicken core

    nei addons

    waila

    waila harvestibility

    gems mod

    CoFH core

    buildcraft

    headcrumbs (last time i played with headcrumbs players didnt spawn, and i didnt download a new version or anything)

    dragonAPI

    metallurgy

    metallurgy core

    magical crops

    netherores

    ironchest

    geostrata

    biomesoplenty

    bspkrscore

    treecapitator

    crazyores

    backpack

    damage indicators

    bibliocraft

    Posted in: Mods Discussion
  • 0

    posted a message on Old School Minecraft: A hope for veterans?

    i got minecraft 4 years ago and started watching it 5 years ago... it was fun to learn with the people who were playing it for the first time, then after a few days of watching it, i got my friend into it. BEST. IDEA. EVER. now we happily play minecraft whenever we want. my first server ever was minecloud (back when it was super duper popular)

    Posted in: Discussion
  • 0

    posted a message on Mc.OPNetwork.net OP prison and Custom survival 1.8.8

    complete ****, i got banned for "advitising,lieing to dev,proxy and macros" when macros isnt even useful for the server and i dont have a proxy, i never lied, and the dev that banned me asked for a link to this

    Posted in: PC Servers
  • 0

    posted a message on LiteLoader

    I am trying to use macros and optifine with this and whenever i go on a server the "logging on" screen just flashes and i dont log on :I i tried to do it with just liteloader and optifine and it still happened (i am using the 1.8 versions for all the mods) I get this:



    [09:31:47] [main/INFO]: Loading tweak class name com.mumfrey.liteloader.launch.LiteLoaderTweaker
    [09:31:47] [main/INFO]: Using primary tweak class name com.mumfrey.liteloader.launch.LiteLoaderTweaker
    [09:31:47] [main/INFO]: Loading tweak class name optifine.OptiFineForgeTweaker
    [09:31:47] [main/INFO]: Calling tweak class com.mumfrey.liteloader.launch.LiteLoaderTweaker
    [09:31:47] [main/INFO]: Bootstrapping LiteLoader 1.8
    [09:31:48] [main/INFO]: Registering API provider class com.mumfrey.liteloader.client.api.LiteLoaderCoreAPIClient
    [09:31:48] [main/INFO]: Spawning API provider class 'com.mumfrey.liteloader.client.api.LiteLoaderCoreAPIClient' ...
    [09:31:48] [main/INFO]: API provider class 'com.mumfrey.liteloader.client.api.LiteLoaderCoreAPIClient' provides API 'liteloader'
    [09:31:48] [main/INFO]: Initialising API 'liteloader' ...
    [09:31:48] [main/INFO]: LiteLoader begin PREINIT...
    [09:31:48] [main/INFO]: Initialising Loader properties...
    [09:31:48] [main/INFO]: Setting up logger...
    [09:31:48] [main/INFO]: LiteLoader 1.8.0 starting up...
    [09:31:48] [main/INFO]: Active Pack: 1.8-SNAPSHOT-r372-b53-2015-09-09_11-36-17
    [09:31:48] [main/INFO]: Java reports OS="windows 7"
    [09:31:48] [main/INFO]: Adding supported mod class prefix 'LiteMod'
    [09:31:48] [main/INFO]: Enumerating class path...
    [09:31:48] [main/INFO]: Class path separator=";"
    [09:31:48] [main/INFO]: Class path entries=(
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\mumfrey\liteloader\1.8\liteloader-1.8.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\minecraft\launchwrapper\1.11\launchwrapper-1.11.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-all\5.0.3\asm-all-5.0.3.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\optifine\OptiFine\1.8_HD_U_D3\OptiFine-1.8_HD_U_D3.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\minecraft\launchwrapper\1.7\launchwrapper-1.7.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\java3d\vecmath\1.5.2\vecmath-1.5.2.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\sf\trove4j\trove4j\3.0.3\trove4j-3.0.3.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\ibm\icu\icu4j-core-mojang\51.2\icu4j-core-mojang-51.2.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\4.6\jopt-simple-4.6.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\codecjorbis\20101023\codecjorbis-20101023.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\codecwav\20101023\codecwav-20101023.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\libraryjavasound\20101123\libraryjavasound-20101123.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\librarylwjglopenal\20100824\librarylwjglopenal-20100824.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\soundsystem\20120107\soundsystem-20120107.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\io\netty\netty-all\4.0.15.Final\netty-all-4.0.15.Final.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\google\guava\guava\17.0\guava-17.0.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-lang3\3.3.2\commons-lang3-3.3.2.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\commons-io\commons-io\2.4\commons-io-2.4.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\commons-codec\commons-codec\1.9\commons-codec-1.9.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jutils\jutils\1.0.0\jutils-1.0.0.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\google\code\gson\gson\2.2.4\gson-2.2.4.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\mojang\authlib\1.5.21\authlib-1.5.21.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\mojang\realms\1.6.1\realms-1.6.1.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-compress\1.8.1\commons-compress-1.8.1.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpclient\4.3.3\httpclient-4.3.3.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\commons-logging\commons-logging\1.1.3\commons-logging-1.1.3.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpcore\4.3.2\httpcore-4.3.2.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-api\2.0-beta9\log4j-api-2.0-beta9.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-core\2.0-beta9\log4j-core-2.0-beta9.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\lwjgl\2.9.1\lwjgl-2.9.1.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\lwjgl_util\2.9.1\lwjgl_util-2.9.1.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\libraries\tv\twitch\twitch\6.5\twitch-6.5.jar
    classpathEntry=C:\Users\Owner\AppData\Roaming\.minecraft\versions\1.8\1.8.jar
    )
    [09:31:48] [main/INFO]: Registering discovery module EnumeratorModuleClassPath: [<Java Class Path>]
    [09:31:48] [main/INFO]: Registering discovery module EnumeratorModuleFolder: [C:\Users\Owner\AppData\Roaming\.minecraft\mods]
    [09:31:48] [main/INFO]: Registering discovery module EnumeratorModuleFolder: [C:\Users\Owner\AppData\Roaming\.minecraft\mods\1.8]
    [09:31:48] [main/INFO]: Registering enumerator plugin DefaultEnumeratorPlugin: [com.mumfrey.liteloader.core.api.DefaultEnumeratorPlugin@18ce0030]
    [09:31:48] [main/INFO]: Discovering tweaks on class path...
    [09:31:48] [main/INFO]: Baking listener list for EnumerationObserver with 1 listeners
    [09:31:48] [main/INFO]: Discovering valid mod files in folder C:\Users\Owner\AppData\Roaming\.minecraft\mods
    [09:31:48] [main/INFO]: Inspecting jar metadata in 'mod_macros_0.11.1_beta2_mc1.8.litemod'
    [09:31:48] [main/INFO]: Considering valid mod file: C:\Users\Owner\AppData\Roaming\.minecraft\mods\mod_macros_0.11.1_beta2_mc1.8.litemod
    [09:31:48] [main/INFO]: Registering events.json for mod with id macros
    [09:31:48] [main/INFO]: Adding newest valid mod file 'C:\Users\Owner\AppData\Roaming\.minecraft\mods\mod_macros_0.11.1_beta2_mc1.8.litemod' at revision 1101.0000
    [09:31:48] [main/INFO]: Discovering valid mod files in folder C:\Users\Owner\AppData\Roaming\.minecraft\mods\1.8
    [09:31:48] [main/INFO]: Inspecting jar metadata in 'OptiFine_1.8.0_HD_U_D2.jar'
    [09:31:48] [main/INFO]: Inspecting jar metadata in 'ShadersMod-v2.4.11mc1.8.jar'
    [09:31:48] [main/INFO]: Inspecting jar metadata in 'TooManyItems2015_02_14_1.8_Forge.jar'
    [09:31:48] [main/INFO]: Mod file 'OptiFine_1.8.0_HD_U_D2.jar' provides tweakClass 'optifine.OptiFineForgeTweaker', adding to Launch queue with priority -1000
    [09:31:48] [main/INFO]: Mod file 'ShadersMod-v2.4.11mc1.8.jar' provides tweakClass 'shadersmod.launch.SMCTweaker', adding to Launch queue with priority 900
    [09:31:48] [main/INFO]: tweakClass 'shadersmod.launch.SMCTweaker' was successfully added
    [09:31:48] [main/INFO]: ClassPathUtilities: attempting to inject file:/C:/Users/Owner/AppData/Roaming/.minecraft/mods/1.8/ShadersMod-v2.4.11mc1.8.jar into LaunchClassLoader
    [09:31:48] [main/INFO]: LiteLoader PREINIT complete
    [09:31:48] [main/INFO]: Injecting cascaded tweakers...
    [09:31:48] [main/INFO]: Injecting tweak class shadersmod.launch.SMCTweaker with priority 900
    [09:31:48] [main/INFO]: Injecting required class transformer 'com.mumfrey.liteloader.transformers.event.EventProxyTransformer'
    [09:31:48] [main/INFO]: Injecting required class transformer 'com.mumfrey.liteloader.launch.LiteLoaderTransformer'
    [09:31:48] [main/INFO]: Injecting required class transformer 'com.mumfrey.liteloader.client.transformers.CrashReportTransformer'
    [09:31:48] [main/INFO]: Queuing required class transformer 'com.mumfrey.liteloader.transformers.event.EventTransformer'
    [09:31:48] [main/INFO]: Queuing required class transformer 'com.mumfrey.liteloader.common.transformers.LiteLoaderPacketTransformer'
    [09:31:48] [main/INFO]: Queuing required class transformer 'com.mumfrey.liteloader.client.transformers.LiteLoaderEventInjectionTransformer'
    [09:31:48] [main/INFO]: Queuing required class transformer 'com.mumfrey.liteloader.client.transformers.MinecraftTransformer'
    [09:31:48] [main/INFO]: Queuing required class transformer 'com.mumfrey.liteloader.transformers.event.json.ModEventInjectionTransformer'
    [09:31:48] [main/INFO]: Calling tweak class optifine.OptiFineForgeTweaker
    OptiFineForgeTweaker: acceptOptions
    OptiFineForgeTweaker: injectIntoClassLoader
    OptiFine ClassTransformer
    OptiFine URL: file:/C:/Users/Owner/AppData/Roaming/.minecraft/libraries/optifine/OptiFine/1.8_HD_U_D3/OptiFine-1.8_HD_U_D3.jar
    OptiFine ZIP file: java.util.zip.ZipFile@6379eb
    [09:31:48] [main/INFO]: Loading tweak class name shadersmod.launch.SMCTweaker
    [09:31:48] [main/INFO]: Calling tweak class shadersmod.launch.SMCTweaker
    [SMC INF]ShadersMod 2.4.11
    OptiFineForgeTweaker: getLaunchArguments
    [09:31:48] [main/INFO]: Injecting downstream transformers
    [09:31:48] [main/INFO]: Injecting additional class transformer class 'com.mumfrey.liteloader.transformers.event.EventTransformer'
    [09:31:48] [main/INFO]: Injecting additional class transformer class 'com.mumfrey.liteloader.common.transformers.LiteLoaderPacketTransformer'
    [09:31:48] [main/INFO]: Injecting additional class transformer class 'com.mumfrey.liteloader.client.transformers.LiteLoaderEventInjectionTransformer'
    [09:31:48] [main/INFO]: Injecting additional class transformer class 'com.mumfrey.liteloader.client.transformers.MinecraftTransformer'
    [09:31:48] [main/INFO]: Injecting additional class transformer class 'com.mumfrey.liteloader.transformers.event.json.ModEventInjectionTransformer'
    [09:31:48] [main/INFO]: Parsing events for mod with id macros
    [09:31:48] [main/INFO]: macros contains Accessor definitions, injecting into classpath...
    [09:31:48] [main/INFO]: Registering events for mod with id macros
    [09:31:48] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main}
    [SMC FNE]transforming bsu bsu
    [09:31:49] [main/INFO]: Injecting onstartupcomplete[x1] in aj in bsu
    [09:31:49] [main/INFO]: Injecting prerenderfbo[x1] in as in bsu
    [09:31:49] [main/INFO]: Injecting postrenderfbo[x1] in as in bsu
    [09:31:49] [main/INFO]: Injecting ontimerupdate[x1] in as in bsu
    [09:31:49] [main/INFO]: Injecting onrender[x1] in as in bsu
    [09:31:49] [main/INFO]: Injecting ontick[x1] in as in bsu
    [09:31:49] [main/INFO]: Injecting updateframebuffersize[x1] in av in bsu
    [09:31:49] [main/INFO]: Injecting newtick[x1] in r in bsu
    [09:31:49] [main/INFO]: MinecraftTransformer found INIT injection point, this is good.
    [09:31:49] [main/INFO]: Injecting onupdatechatfield[x1] in e in bvx
    [09:31:49] [main/INFO]: Injecting ontextboxmouseclick[x1] in a in bvx
    [09:31:49] [main/INFO]: Injecting ondrawchatgui[x1] in a in bvx
    [09:31:49] [main/INFO]: Injecting ondrawchatfield[x1] in a in bvx
    [09:31:49] [main/INFO]: Injecting onoutboundchat[x1] in e in cio
    [SMC FNE]transforming cui cui
    Completely ignored arguments: [--nativeLauncherVersion, 301]
    [09:31:49] [Client thread/INFO]: Injecting onservertick[x1] in z in MinecraftServer
    [09:31:50] [Client thread/INFO]: Setting user: domiduf
    [09:31:50] [Client thread/INFO]: (Session ID is <censored>)
    [09:31:50] [Client thread/INFO]: Injecting oncreateintegratedserver[x1] in <init> in cyk
    [09:31:50] [Client thread/INFO]: Injecting oninitializeplayerconnection[x1] in a in sn
    [09:31:50] [Client thread/INFO]: Injecting onplayerlogin[x1] in c in sn
    [09:31:50] [Client thread/INFO]: Injecting onplayerlogout[x1] in e in sn
    [09:31:50] [Client thread/INFO]: Injecting onspawnplayer[x1] in f in sn
    [09:31:50] [Client thread/INFO]: Injecting onrespawnplayer[x1] in a in sn
    [09:31:50] [Client thread/INFO]: Injecting onblockclicked[x1] in a in qx
    [09:31:50] [Client thread/INFO]: Injecting onactivateblockoruseitem[x1] in a in qx
    [SMC FNE]transforming atr atr
    [SMC INF] blockAoLight
    [SMC FNE]transforming aju aju
    [OptiFine] (Reflector) Method not present: atr.func_149713_g
    [09:31:52] [Client thread/INFO]: LWJGL Version: 2.9.1
    [SMC FNE]transforming dax dax
    [SMC FNT] set activeTexUnit
    [OptiFine]
    [OptiFine] OptiFine_1.8_HD_U_D3
    [OptiFine] Fri Apr 01 09:31:54 MDT 2016
    [OptiFine] OS: Windows 7 (amd64) version 6.1
    [OptiFine] Java: 1.8.0_25, Oracle Corporation
    [OptiFine] VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    [OptiFine] LWJGL: 2.9.1
    [OptiFine] OpenGL: AMD Radeon(TM) R5 Graphics, version 4.5.13416 Compatibility Profile Context 15.300.1025.0, ATI Technologies Inc.
    [OptiFine] OpenGL Version: 4.0
    [OptiFine] OpenGL Fancy fog: Not available (GL_NV_fog_distance)
    [OptiFine] Maximum texture size: 16384x16384
    [OptiFine] Checking for new version
    [09:31:54] [Client thread/INFO]: Injecting renderfbo[x1] in a in ckw
    [SMC FNE]transforming ctp ctp
    [SMC FNE]transforming cto cto
    [SMC FNE]transforming cua cua
    [SMC FNT] loadRes
    [SMC FNT] loadRes
    [SMC FNT] allocateTextureMap
    [SMC FNT] setSprite setIconName
    [SMC FNT] uploadTexSubForLoadAtlas
    [SMC FNT] uploadTexSubForLoadAtlas
    [09:31:54] [Client thread/INFO]: Reloading ResourceManager: Default
    [SMC FNE]transforming cug cug
    [SMC FNE]transforming ctv ctv
    [SMC FNR] loadSimpleTexture
    [OptiFine] Version found: H2
    [SMC FNE]transforming ciy ciy
    [SMC FNE]transforming civ civ
    [OptiFine] (Reflector) Class not present: ModLoader
    [OptiFine] (Reflector) Class not present: net.minecraft.src.FMLRenderAccessLibrary
    [OptiFine] (Reflector) Class not present: LightCache
    [OptiFine] (Reflector) Class not present: BlockCoord
    [OptiFine] (Reflector) Class not present: net.minecraftforge.common.MinecraftForge
    [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeHooks
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.MinecraftForgeClient
    [SMC FNE]visiting net.minecraftforge.client.ForgeHooksClient net.minecraftforge.client.ForgeHooksClient
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ForgeHooksClient
    [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.FMLCommonHandler
    [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.client.FMLClientHandler
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.IItemRenderer$ItemRenderType
    [OptiFine] (Reflector) Method not present: bgd.getSkyRenderer
    [OptiFine] (Reflector) Method not present: bgd.getCloudRenderer
    [OptiFine] (Reflector) Method not present: bgd.getWeatherRenderer
    [OptiFine] (Reflector) Method not present: aqu.countEntities
    [OptiFine] (Reflector) Method not present: aqu.getPerWorldStorage
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.IRenderHandler
    [OptiFine] (Reflector) Class not present: net.minecraftforge.common.DimensionManager
    [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.WorldEvent$Load
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Pre
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.GuiScreenEvent$DrawScreenEvent$Post
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$FogColors
    [SMC FNE]transforming cji cji
    [SMC FNR] patch method cji.b(FI)V
    [SMC FNR] patch method cji.h()V
    [SMC FNR] patch method cji.i()V
    [SMC FNR] patch method cji.a(FJ)V
    [SMC FNR] patch method cji.a(IFJ)V
    [SMC FNR] patch method cji.a(Lckn;FI)V
    [SMC FNR] patch method cji.j(F)V
    [SMC FNR] patch method cji.a(IF)V
    [SMC FNR] patch method cji.a(FFFF)Ljava/nio/FloatBuffer;
    [09:31:54] [Client thread/INFO]: Injecting prerendergui[x1] in b in cji
    [09:31:54] [Client thread/INFO]: Injecting onrenderhud[x1] in b in cji
    [09:31:54] [Client thread/INFO]: Injecting postrenderhud[x1] in b in cji
    [09:31:54] [Client thread/INFO]: Injecting onrenderworld[x1] in a in cji
    [09:31:54] [Client thread/INFO]: Injecting postrender[x1] in a in cji
    [09:31:54] [Client thread/INFO]: Injecting onrendersky[x1] in a in cji
    [09:31:54] [Client thread/INFO]: Injecting onrenderterrain[x1] in a in cji
    [09:31:54] [Client thread/INFO]: Injecting onsetupcameratransform[x1] in a in cji
    [09:31:54] [Client thread/INFO]: Injecting postrenderentities[x1] in a in cji
    [09:31:54] [Client thread/INFO]: Injecting onrenderclouds[x1] in a in cji
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$FogDensity
    [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityViewRenderEvent$RenderFogEvent
    [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.EventBus
    [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.eventhandler.Event$Result
    [OptiFine] (Reflector) Class not present: net.minecraftforge.event.ForgeEventFactory
    [OptiFine] (Reflector) Class not present: net.minecraftforge.event.world.ChunkWatchEvent$UnWatch
    [OptiFine] (Reflector) Method not present: atr.getBedDirection
    [OptiFine] (Reflector) Method not present: atr.isBedFoot
    [OptiFine] (Reflector) Method not present: atr.hasTileEntity
    [OptiFine] (Reflector) Method not present: atr.canCreatureSpawn
    [OptiFine] (Reflector) Method not present: atr.addHitEffects
    [OptiFine] (Reflector) Method not present: atr.addDestroyEffects
    [OptiFine] (Reflector) Method not present: atr.isAir
    [OptiFine] (Reflector) Method not present: atr.canRenderInLayer
    [OptiFine] (Reflector) Field not present: wv.captureDrops
    [OptiFine] (Reflector) Field not present: wv.capturedDrops
    [OptiFine] (Reflector) Method not present: wv.shouldRenderInPass
    [OptiFine] (Reflector) Method not present: wv.canRiderInteract
    [OptiFine] (Reflector) Method not present: bcm.shouldRenderInPass
    [OptiFine] (Reflector) Method not present: bcm.getRenderBoundingBox
    [OptiFine] (Reflector) Method not present: bcm.canRenderBreaking
    [OptiFine] (Reflector) Method not present: alq.onEntitySwing
    [OptiFine] (Reflector) Method not present: wq.isCurativeItem
    [OptiFine] (Reflector) Method not present: amy.getRecordResource
    [OptiFine] (Reflector) Method not present: cuw.preDraw
    [OptiFine] (Reflector) Method not present: cuw.postDraw
    [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
    [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.relauncher.CoreModManager
    [OptiFine] *** Reloading textures ***
    [OptiFine] Resource packs: Default
    [09:31:55] [Sound Library Loader/INFO]: Starting up SoundSystem...
    [09:31:55] [Thread-8/INFO]: Initializing LWJGL OpenAL
    [09:31:55] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
    [09:31:55] [Thread-8/INFO]: OpenAL initialized.
    [SMC INF]ShadersMod version : 2.4.11
    OpenGL Version : 4.5.13416 Compatibility Profile Context 15.300.1025.0
    Vendor : ATI Technologies Inc.
    Renderer : AMD Radeon(TM) R5 Graphics
    Capabilities 2.0 2.1 3.0 3.2 4.0
    GL_MAX_DRAW_BUFFERS = 8
    GL_MAX_COLOR_ATTACHMENTS_EXT = 8
    GL_MAX_TEXTURE_IMAGE_UNITS = 32
    [SMC INF]Load ShadersMod configuration.
    [SMC INF]Did not load shaderpack.
    [SMC FNE]transforming cue cue
    [SMC FNE]transforming cum cum
    [SMC FNE]transforming cun cun
    [09:31:56] [Sound Library Loader/INFO]: Sound engine started
    [SMC FNE]transforming cmp cmp
    [SMC FNR] patch method cmp.makeQuadVertexData(Lclx;Lcue;Lej;[FLnet/minecraftforge/client/model/ITransformation;Lclz;ZZ)[I
    [SMC FNR] patch method cmp.a([IIILjavax/vecmath/Vector3d;ILcue;Lcma;)V
    [SMC FNR] patch method cmp.a([I)Lej;
    [SMC FNR] patch method cmp.a([ILej;)V
    [SMC FNR] patch method cmp.a(I[ILej;Lcma;Lcue;)V
    [OptiFine] Mipmap levels: 4
    [SMC FNE]transforming ConnectedTextures ConnectedTextures
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/0_glass_white/glass_pane_white.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/0_glass_white/glass_white.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/10_glass_purple/glass_pane_purple.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/10_glass_purple/glass_purple.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/11_glass_blue/glass_blue.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/11_glass_blue/glass_pane_blue.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/12_glass_brown/glass_brown.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/12_glass_brown/glass_pane_brown.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/13_glass_green/glass_green.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/13_glass_green/glass_pane_green.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/14_glass_red/glass_pane_red.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/14_glass_red/glass_red.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/15_glass_black/glass_black.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/15_glass_black/glass_pane_black.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/1_glass_orange/glass_orange.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/1_glass_orange/glass_pane_orange.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/2_glass_magenta/glass_magenta.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/2_glass_magenta/glass_pane_magenta.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/3_glass_light_blue/glass_light_blue.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/3_glass_light_blue/glass_pane_light_blue.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/4_glass_yellow/glass_pane_yellow.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/4_glass_yellow/glass_yellow.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/5_glass_lime/glass_lime.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/5_glass_lime/glass_pane_lime.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/6_glass_pink/glass_pane_pink.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/6_glass_pink/glass_pink.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/7_glass_gray/glass_gray.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/7_glass_gray/glass_pane_gray.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/8_glass_silver/glass_pane_silver.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/8_glass_silver/glass_silver.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/9_glass_cyan/glass_cyan.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/9_glass_cyan/glass_pane_cyan.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/bookshelf.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/glass.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/glasspane.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/sandstone.properties
    [OptiFine] Multipass connected textures: false
    [OptiFine] Multitexture: false
    [09:32:00] [Client thread/INFO]: Created: 1024x512 textures-atlas
    [SMC INF]allocateTextureMap 4 1024 512
    [SMC FNE]transforming cmn cmn
    [SMC FNR] patch method cmn.a(I)V
    [SMC FNE]transforming cpt cpt
    [09:32:11] [Client thread/INFO]: Injecting onrenderentity[x1] in a in cpt
    [09:32:11] [Client thread/INFO]: Injecting onpostrenderentity[x1] in a in cpt
    [SMC FNE]transforming cpu cpu
    [SMC FNR] conditionally skip default shadow
    [SMC FNE]transforming cqv cqv
    [SMC SEVERE]state 0 expected 7
    [SMC FNE]transforming cdy cdy
    [SMC FNE]transforming ccu ccu
    [SMC FNE]transforming csu csu
    [SMC FNE]transforming csl csl
    [SMC FNE]transforming csb csb
    [SMC FNR] patch method csb.a(Lxm;Lccq;FFFFFFF)V
    [SMC FNE]transforming csk csk
    [SMC FNE]transforming cqg cqg
    [SMC FNE]transforming cki cki
    [SMC FNR] patch method cki.a()V
    [09:32:11] [Client thread/INFO]: JInput Component Registry is initialising...
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    Apr 01, 2016 9:32:11 AM net.java.games.input.DefaultControllerEnvironment getControllers
    INFO: Loading: net.java.games.input.DirectAndRawInputEnvironmentPlugin
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/ERROR]: The jar file C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar has a security seal for path net.java.games.input, but that path is defined and not secure
    [09:32:11] [Client thread/INFO]: Inspecting Mouse controller HID-compliant mouse on Unknown...
    [09:32:11] [Client thread/INFO]: Inspecting Keyboard controller HID Keyboard Device on Unknown...
    [09:32:11] [Client thread/INFO]: Inspecting Unknown controller USB Audio Device on Unknown...
    [09:32:11] [Client thread/INFO]: JInput Component Registry initialised, found 3 controller(s) 126 component(s)
    [09:32:11] [Client thread/INFO]: LiteLoader begin INIT...
    [09:32:11] [Client thread/INFO]: Baking listener list for CoreProvider with 2 listeners
    [09:32:12] [Client thread/INFO]: Injecting external mods into class path...
    [09:32:12] [Client thread/INFO]: Injecting external mods into class path...
    [09:32:12] [Client thread/INFO]: Discovering mods on class path...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\mumfrey\liteloader\1.8\liteloader-1.8.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\minecraft\launchwrapper\1.11\launchwrapper-1.11.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-all\5.0.3\asm-all-5.0.3.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\optifine\OptiFine\1.8_HD_U_D3\OptiFine-1.8_HD_U_D3.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\minecraft\launchwrapper\1.7\launchwrapper-1.7.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\java3d\vecmath\1.5.2\vecmath-1.5.2.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\sf\trove4j\trove4j\3.0.3\trove4j-3.0.3.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\ibm\icu\icu4j-core-mojang\51.2\icu4j-core-mojang-51.2.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\4.6\jopt-simple-4.6.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\codecjorbis\20101023\codecjorbis-20101023.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\codecwav\20101023\codecwav-20101023.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\libraryjavasound\20101123\libraryjavasound-20101123.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\librarylwjglopenal\20100824\librarylwjglopenal-20100824.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\paulscode\soundsystem\20120107\soundsystem-20120107.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\io\netty\netty-all\4.0.15.Final\netty-all-4.0.15.Final.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\google\guava\guava\17.0\guava-17.0.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-lang3\3.3.2\commons-lang3-3.3.2.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\commons-io\commons-io\2.4\commons-io-2.4.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\commons-codec\commons-codec\1.9\commons-codec-1.9.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\net\java\jutils\jutils\1.0.0\jutils-1.0.0.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\google\code\gson\gson\2.2.4\gson-2.2.4.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\mojang\authlib\1.5.21\authlib-1.5.21.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\com\mojang\realms\1.6.1\realms-1.6.1.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-compress\1.8.1\commons-compress-1.8.1.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpclient\4.3.3\httpclient-4.3.3.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\commons-logging\commons-logging\1.1.3\commons-logging-1.1.3.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpcore\4.3.2\httpcore-4.3.2.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-api\2.0-beta9\log4j-api-2.0-beta9.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-core\2.0-beta9\log4j-core-2.0-beta9.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\lwjgl\2.9.1\lwjgl-2.9.1.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\lwjgl_util\2.9.1\lwjgl_util-2.9.1.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\libraries\tv\twitch\twitch\6.5\twitch-6.5.jar...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\versions\1.8\1.8.jar...
    [09:32:12] [Client thread/INFO]: Discovering mods in valid mod files...
    [09:32:12] [Client thread/INFO]: Searching C:\Users\Owner\AppData\Roaming\.minecraft\mods\mod_macros_0.11.1_beta2_mc1.8.litemod...
    [09:32:12] [Client thread/INFO]: Found 1 potential matches
    [09:32:12] [Client thread/INFO]: Discovering mods in valid mod files...
    [09:32:12] [Client thread/INFO]: Mod class discovery completed
    [09:32:12] [Client thread/INFO]: LiteLoader begin POSTINIT...
    [09:32:12] [Client thread/INFO]: Inhibiting sound handler reload
    [09:32:12] [Client thread/INFO]: Registering interface provider com.mumfrey.liteloader.client.LiteLoaderEventBrokerClient for API LiteLoader core API
    [SMC FNE]transforming ckn ckn
    [SMC FNR] patch method ckn.a(Lwv;Lcox;F)V
    [SMC SEVERE] ends in bad state State9
    [SMC FNR] patch method ckn.a(Lwv;DLcox;IZ)V
    [SMC FNR] patch method ckn.a(Laql;)V
    [SMC FNR] patch method ckn.a(FI)V
    [SMC FNR] patch method ckn.s()V
    [SMC FNR] patch method ckn.t()V
    [SMC FNR] patch method ckn.a(Lahd;Lbru;IF)V
    [09:32:12] [Client thread/INFO]: Injecting onplayermoved[x1] in a in rj
    [09:32:12] [Client thread/INFO]: Injecting onplayerdigging[x1] in a in rj
    [09:32:12] [Client thread/INFO]: Injecting onplaceblock[x1] in a in rj
    [09:32:12] [Client thread/INFO]: Injecting onclickedair[x1] in a in rj
    [09:32:12] [Client thread/INFO]: Registering interface provider com.mumfrey.liteloader.client.PacketEventsClient for API LiteLoader core API
    [09:32:12] [Client thread/INFO]: Registering interface provider com.mumfrey.liteloader.client.ClientPluginChannelsClient for API LiteLoader core API
    [09:32:12] [Client thread/INFO]: Registering interface provider com.mumfrey.liteloader.core.ServerPluginChannels for API LiteLoader core API
    [09:32:12] [Client thread/INFO]: Registering interface provider com.mumfrey.liteloader.messaging.MessageBus for API LiteLoader core API
    [09:32:12] [Client thread/INFO]: Discovered 1 total mod(s), injected 1 tweak(s)
    [09:32:12] [Client thread/INFO]: Loading mod from net.eq2online.macros.LiteModMacros
    [09:32:12] [Client thread/INFO]: Baking listener list for ModLoadObserver with 1 listeners
    [09:32:12] [Client thread/INFO]: Successfully added mod Macro / Keybind Mod version 0.11.1 beta 2
    [09:32:12] [Client thread/INFO]: Adding "C:\Users\Owner\AppData\Roaming\.minecraft\mods\mod_macros_0.11.1_beta2_mc1.8.litemod" to active resource pack set
    [09:32:12] [Client thread/INFO]: Setting up "mod_macros_0.11.1_beta2_mc1.8.litemod" as mod resource pack with identifier "Macro / Keybind Mod"
    [09:32:12] [Client thread/INFO]: Successfully added "C:\Users\Owner\AppData\Roaming\.minecraft\mods\mod_macros_0.11.1_beta2_mc1.8.litemod" to active resource pack set
    [09:32:12] [Client thread/INFO]: Initialising mod Macro / Keybind Mod version 0.11.1 beta 2
    [SMC FNE]transforming ctq ctq
    [SMC FNE]transforming bwv bwv
    [SMC FNT] decrease language button size
    [SMC FNT] add shaders button
    [SMC FNT] shaders button action
    [09:32:13] [Client thread/INFO]: Loading macro templates...
    [09:32:13] [Client thread/INFO]: Using config dir /liteconfig/common/macros/
    [09:32:14] [Client thread/INFO]: Script engine initialised, registered 115 script action(s)
    [09:32:14] [Client thread/INFO]: Script engine initialised, registered 63 script action(s)
    [09:32:14] [Client thread/INFO]: Loading chat filter templates...
    [09:32:14] [Client thread/INFO]: Baking listener list for InterfaceObserver with 0 listeners
    [SMC FNE]transforming cll cll
    [SMC FNE]transforming cln cln
    [SMC FNR] patch method cln.a(Latr;[ILej;[FLjava/util/BitSet;)V
    [SMC FNE]transforming cky cky
    [SMC FNR] patch method cky.a()V
    [SMC FNE]transforming cop cop
    [SMC FNR] patch method cop.b(FFFLcoa;)V
    [09:32:15] [Client thread/INFO]: Injecting onrenderchat[x1] in a in btz
    [09:32:15] [Client thread/INFO]: Injecting postrenderchat[x1] in a in btz
    [09:32:15] [Client thread/INFO]: Generating new Event Handler Proxy Class com.mumfrey.liteloader.core.event.EventProxy
    [09:32:15] [Client thread/INFO]: Successfully generated event handler proxy class with 50 handlers(s) and 50 total invokations
    [09:32:15] [Client thread/INFO]: Reloading ResourceManager: Default, LiteLoader, Macro / Keybind Mod, PLAYSOUND resource pool, Macros Icon Thumbnails
    [OptiFine] *** Reloading textures ***
    [OptiFine] Resource packs: Default
    [OptiFine] Mipmap levels: 4
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/0_glass_white/glass_pane_white.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/0_glass_white/glass_white.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/10_glass_purple/glass_pane_purple.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/10_glass_purple/glass_purple.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/11_glass_blue/glass_blue.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/11_glass_blue/glass_pane_blue.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/12_glass_brown/glass_brown.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/12_glass_brown/glass_pane_brown.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/13_glass_green/glass_green.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/13_glass_green/glass_pane_green.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/14_glass_red/glass_pane_red.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/14_glass_red/glass_red.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/15_glass_black/glass_black.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/15_glass_black/glass_pane_black.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/1_glass_orange/glass_orange.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/1_glass_orange/glass_pane_orange.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/2_glass_magenta/glass_magenta.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/2_glass_magenta/glass_pane_magenta.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/3_glass_light_blue/glass_light_blue.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/3_glass_light_blue/glass_pane_light_blue.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/4_glass_yellow/glass_pane_yellow.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/4_glass_yellow/glass_yellow.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/5_glass_lime/glass_lime.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/5_glass_lime/glass_pane_lime.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/6_glass_pink/glass_pane_pink.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/6_glass_pink/glass_pink.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/7_glass_gray/glass_gray.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/7_glass_gray/glass_pane_gray.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/8_glass_silver/glass_pane_silver.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/8_glass_silver/glass_silver.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/9_glass_cyan/glass_cyan.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/9_glass_cyan/glass_pane_cyan.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/bookshelf.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/glass.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/glasspane.properties
    [OptiFine] ConnectedTextures: mcpatcher/ctm/default/sandstone.properties
    [OptiFine] Multipass connected textures: false
    [OptiFine] Multitexture: false
    [09:32:18] [Client thread/INFO]: Created: 1024x512 textures-atlas
    [SMC INF]allocateTextureMap 4 1024 512
    [09:32:30] [Client thread/INFO]: Calling late init for mod Macro / Keybind Mod
    [09:32:30] [Client thread/INFO]: Baking listener list for ViewportListener with 1 listeners
    [09:32:31] [Client thread/INFO]: Sound handler reload inhibit removed
    [09:32:31] [Client thread/INFO]: Reloading sound handler
    [09:32:31] [Client thread/INFO]: SoundSystem shutting down...
    [09:32:31] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
    [09:32:31] [Sound Library Loader/INFO]: Starting up SoundSystem...
    [09:32:31] [Thread-12/INFO]: Initializing LWJGL OpenAL
    [09:32:31] [Thread-12/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
    [09:32:31] [Client thread/INFO]: Baking listener list for GameLoopListener with 1 listeners
    [09:32:31] [Client thread/INFO]: Baking listener list for RenderListener with 1 listeners
    [OptiFine] *** Reloading custom textures ***
    [OptiFine] Loading custom colors: textures/colormap/grass.png
    [OptiFine] Loading custom colors: textures/colormap/foliage.png
    [09:32:32] [Client thread/INFO]: Baking listener list for TickObserver with 3 listeners
    [09:32:32] [Client thread/INFO]: Baking listener list for PostRenderObserver with 3 listeners
    [09:32:32] [Client thread/INFO]: Baking listener list for Tickable with 1 listeners
    [09:32:32] [Client thread/INFO]: JInput Component Registry is initialising...
    [09:32:32] [Client thread/INFO]: Inspecting Mouse controller HID-compliant mouse on Unknown...
    [09:32:32] [Client thread/INFO]: Inspecting Keyboard controller HID Keyboard Device on Unknown...
    [09:32:32] [Client thread/INFO]: Inspecting Unknown controller USB Audio Device on Unknown...
    [09:32:32] [Client thread/INFO]: JInput Component Registry initialised, found 3 controller(s) 126 component(s)
    [09:32:32] [Thread-12/INFO]: OpenAL initialized.
    [09:32:32] [Sound Library Loader/INFO]: Sound engine started
    [09:32:57] [Netty Client IO #1/INFO]: Generating new Event Handler Proxy Class com.mumfrey.liteloader.core.event.EventProxy$2
    [09:32:57] [Netty Client IO #1/INFO]: Successfully generated event handler proxy class with 102 handlers(s) and 102 total invokations
    [09:33:02] [Client thread/INFO]: Connecting to play.climaxcraft.com, 25565
    [09:33:04] [Netty Client IO #3/INFO]: Baking listener list for PostLoginListener with 0 listeners
    [09:33:04] [Client thread/INFO]: Baking listener list for PreJoinGameListener with 0 listeners
    [09:33:04] [Client thread/INFO]: Baking listener list for JoinGameListener with 1 listeners
    [09:33:04] [Client thread/INFO]: Forge ClientCommandHandler was not found, outbound commands will not be processed by Forge
    [09:33:04] [Client thread/INFO]: [CHAT] A new §eOptiFine§f version is available: §eHD Ultra null§f
    [SMC INF]Framebuffer created.
    [SMC INF]Reset world renderers
    [SMC INF].
    [09:33:05] [Client thread/INFO]: Baking listener list for PreRenderListener with 0 listeners
    [09:33:05] [Client thread/INFO]: Baking listener list for PostRenderListener with 0 listeners
    GL error 0x0501: Invalid value at pre-final
    [09:33:05] [Client thread/INFO]: Baking listener list for HUDRenderListener with 0 listeners
    [09:33:05] [Client thread/INFO]: Baking listener list for ChatRenderListener with 0 listeners
    [09:33:05] [Client thread/INFO]: Baking listener list for WorldObserver with 2 listeners
    [SMC FNE]transforming cuq cuq
    GL error 0x0501: Invalid value at pre-final
    [09:33:05] [Client thread/INFO]: onConnectToServer: play.climaxcraft.com:25565
    [09:33:05] [Client thread/INFO]: Forge ClientCommandHandler was not found, outbound commands will not be processed by Forge
    [SMC FNE]transforming cnn cnn
    [SMC FNR] patch method cnn.a(Lbck;DDDFI)V
    [SMC INF]Reset model renderers
    [09:33:05] [Client thread/INFO]: Baking listener list for EntityRenderListener with 0 listeners
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    [09:33:06] [Client thread/INFO]: Baking listener list for ChatListener with 1 listeners
    [09:33:06] [Client thread/INFO]: [CHAT]
    [09:33:06] [Client thread/INFO]: [CHAT]
    [09:33:06] [Client thread/INFO]: [CHAT]
    [09:33:06] [Client thread/INFO]: [CHAT]
    [09:33:06] [Client thread/INFO]: [CHAT]
    [09:33:06] [Client thread/INFO]: [CHAT]
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    GL error 0x0501: Invalid value at pre-final
    [09:33:07] [Client thread/INFO]: LiteLoader is shutting down, shutting down core providers and syncing configuration
    [09:33:07] [Client thread/INFO]: Baking listener list for ShutdownObserver with 3 listeners
    [09:33:07] [Client thread/INFO]: Stopping!
    [09:33:07] [Client thread/INFO]: SoundSystem shutting down...
    [09:33:07] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
    Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release


    EDIT: optifine was the issue, how do i fix this?


    EDIT EDIT: optifine needed to be updated

    Posted in: Minecraft Mods
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Quote from flonou»

    I also have a Question. I don't know if it's minecraft or optifine related but would it be possible to have a different light color emitted by sealanterns ?

    It seems that currently all emissive blocks are using the same channel to send their data to the shader


    are you using shaders?
    Posted in: Minecraft Mods
  • 0

    posted a message on AoA--25 New Dimensions• 330 Mobs• 27 Bosses• Skills• Quests• 600+Items [LARGE Bugfix Update, May 2018]

    why must you use adf.ly? it gives me pop ups every time i go on it :(

    Posted in: Minecraft Mods
  • 0

    posted a message on [1.7.10][Forge] Gems Mod -New Ores, Items, Biomes, Mobs (*Better Mining) (*Stronger Equipment) (10,000+ Downloads)

    glad i found this after finding out moar ores was a virus, great mod :D

    Posted in: Minecraft Mods
  • To post a comment, please .