• 0

    posted a message on Thaumcraft 6.1.BETA26 [no longer being developed]
    Quote from Hman745»

    This is very curious. Unfortunately, I'm not a patron so I have no idea what the posts say.


    Hopefully he delivers...

    The post basically just says that hes working on it. I subbed to see if he had an alpha out but there's nothing there yet.

    Posted in: Minecraft Mods
  • 0

    posted a message on Thaumcraft 6.1.BETA26 [no longer being developed]

    Is no one going to mention this?



    Azanor Confirms Thaum 10

    Posted in: Minecraft Mods
  • 0

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

    no matter what i do i get told that OptiFine_1.8.9_HD_U_H6.jar is an invalid or corrupt jarfile. any ideas why?



    You have to first run the Jar, then you place "OptiFine_1.8.9_HD_U_H6_MOD.jar" into your mods folder.

    Posted in: Minecraft Mods
  • 0

    posted a message on Counting Items in inventory (Chain Command Blocks executing in incorrect order)

    I still cant even give them the items because the first problem of it improperly counting items isn't fixed. Do you have a solution for that?


    I have determined the bug. See below:


    Utilizing multiple Clear+Stats item counting combinations causes the value of the variables to be shifted 1 away from the testing criteria, ie. Number of Item2s stored in Var1, Item3s stored in 2, 4s stored in 3... ect. and Item1 is stored in the final var. or the opposite can happen (possibly due to facing?) where Item1s would be stored in Var2 and so forth, the final item being stored in Var1.

    Knowing this, I have shifted my variables for now. It will be (moderately) easy to fix upon the bug being patched.


    Thread title updated to reflect the true nature of the problem in case someone encounters this problem in the future.

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Counting Items in inventory (Chain Command Blocks executing in incorrect order)

    The cooldowns are not handled by give/clear. But if they have multiple items they would be able to cast the spell multiple times before the cooldown initiates.

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Counting Items in inventory (Chain Command Blocks executing in incorrect order)

    They cannot get the items normally because they will have custom enchantments/names/data tags.

    Some of the items will be used as spells with cooldowns so being able to stock up on them would unbalance the minigame.

    I would prefer to give items over replaceitem because i want people to be able to re-order their inventory during the game.

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Counting Items in inventory (Chain Command Blocks executing in incorrect order)

    Double post fixed.

    It is a forge server so I cant use plugins without writing a whole mod.

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Counting Items in inventory (Chain Command Blocks executing in incorrect order)

    EDIT For the solution to the problem see: http://www.minecraftforum.net/forums/minecraft-discussion/redstone-discussion-and/command-blocks/2746441-counting-items-in-p-inventory-chain-block-problem?comment=9


    I am trying to make a minigame/class system for my Forge 1.10.2 server.


    I am attempting to create a Command Block system that ensures each player (Defined by "Class") always has exactly one each of 6 specific items. My problem is that when counting items in the inventory using Clear 0 and Stats/AffectedItems is that the 5th item (arrow in the sample below) count gets stored in the 4th item variable and the 6th isn't counted at all (appears to be storing a success flag instead). Copy and pasting the chain into a new world does not change this behavior.


    I have a Repeat block starting the chain, all blocks following that are Chain blocks lined in sequence:


    //COUNT ITEMS
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ clear @p minecraft:wooden_pickaxe -1 0 {MissingItem:1}
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ stats entity @p set AffectedItems @p MissingItem1
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ clear @p minecraft:leather_helmet -1 0 {MissingItem:2}
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ stats entity @p set AffectedItems @p MissingItem2
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ clear @p minecraft:leather_leggings -1 0 {MissingItem:3}
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ stats entity @p set AffectedItems @p MissingItem3
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ clear @p minecraft:leather_boots -1 0 {MissingItem:4}
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ stats entity @p set AffectedItems @p MissingItem4
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ clear @p minecraft:arrow -1 0 {MissingItem:5}
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ stats entity @p set AffectedItems @p MissingItem5
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ clear @p minecraft:wooden_sword -1 0 {MissingItem:6}
    execute @a[score_Class_min=1,score_Class=1] ~ ~ ~ stats entity @p set AffectedItems @p MissingItem6
    
    //GIVE ITEMS
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem1=0] ~ ~ ~ give @p minecraft:wooden_pickaxe 1 0 {MissingItem:1}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem2=0] ~ ~ ~ give @p minecraft:leather_helmet 1 0 {MissingItem:2}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem3=0] ~ ~ ~ give @p minecraft:leather_leggings 1 0 {MissingItem:3}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem4=0] ~ ~ ~ give @p minecraft:leather_boots 1 0 {MissingItem:4}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem5=0] ~ ~ ~ give @p minecraft:arrow 1 0 {MissingItem:5}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem6=0] ~ ~ ~ give @p minecraft:wooden_sword 1 0 {MissingItem:6}
    
    //REMOVE EXTRA ITEMS
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem1_min=2] ~ ~ ~ clear @p minecraft:wooden_pickaxe -1 1 {MissingItem:1}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem2_min=2] ~ ~ ~ clear @p minecraft:leather_helmet -1 1 {MissingItem:2}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem3_min=2] ~ ~ ~ clear @p minecraft:leather_leggings -1 1 {MissingItem:3}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem4_min=2] ~ ~ ~ clear @p minecraft:leather_boots -1 1 {MissingItem:4}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem5_min=2] ~ ~ ~ clear @p minecraft:arrow -1 1 {MissingItem:5}
    execute @a[score_Class_min=1,score_Class=1,score_MissingItem6_min=2] ~ ~ ~ clear @p minecraft:wooden_sword -1 1 {MissingItem:6}


    World download can be found at https://www.dropbox.com/s/mepk8182slwk27m/TEST.zip?dl=0 if you want to tool around with it.

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on [Delete]

    [Deleted]

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on MalisisDoors 1.12.2-7.3.0 / 1.11.2-6.1.3 (01/02/2018)

    It looks like basically the same thing it just happens more sporadically.


    ---- Minecraft Crash Report ----

    WARNING: coremods are present:
    MalisisCorePlugin (malisiscore-1.8.9-2.1.4.jar)
    Contact their authors BEFORE contacting forge

    // Hey, that tickles! Hehehe!

    Time: 4/17/16 11:11 AM
    Description: Rendering Block Entity

    java.lang.IllegalArgumentException:
    Cannot get property PropertyBool{name=open, clazz=class
    java.lang.Boolean, values=[true, false]} as it does not exist in
    BlockState{block=minecraft:stonebrick, properties=[variant]}
    at net.minecraft.block.state.BlockState$StateImplementation.func_177229_b(BlockState.java:137)
    at net.malisis.doors.tileentity.DoorTileEntity.isOpened(DoorTileEntity.java:141)
    at net.malisis.doors.renderer.DoorRenderer.setTileEntity(DoorRenderer.java:187)
    at net.malisis.doors.renderer.DoorRenderer.render(DoorRenderer.java:148)
    at net.malisis.core.renderer.MalisisRenderer.func_180535_a(MalisisRenderer.java:337)
    at net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.func_178469_a(TileEntityRendererDispatcher.java:136)
    at net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.func_180546_a(TileEntityRendererDispatcher.java:114)
    at net.minecraft.client.renderer.RenderGlobal.func_180446_a(RenderGlobal.java:678)
    at net.minecraft.client.renderer.EntityRenderer.func_175068_a(EntityRenderer.java:1316)
    at net.minecraft.client.renderer.EntityRenderer.func_78471_a(EntityRenderer.java:1230)
    at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1058)
    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1051)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:349)
    at net.minecraft.client.main.Main.main(SourceFile:124)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- Head --
    Stacktrace:
    at net.minecraft.block.state.BlockState$StateImplementation.func_177229_b(BlockState.java:137)
    at net.malisis.doors.tileentity.DoorTileEntity.isOpened(DoorTileEntity.java:141)
    at net.malisis.doors.renderer.DoorRenderer.setTileEntity(DoorRenderer.java:187)
    at net.malisis.doors.renderer.DoorRenderer.render(DoorRenderer.java:148)
    at net.malisis.core.renderer.MalisisRenderer.func_180535_a(MalisisRenderer.java:337)

    -- Block Entity Details --
    Details:
    Name: doorTileEntity // net.malisis.doors.tileentity.DoorTileEntity
    Block type: ID #98 (tile.stonebricksmooth // net.minecraft.block.BlockStoneBrick)
    Block data value: 0 / 0x0 / 0b0000

    Block location: World: (-264,107,742), Chunk: (at 8,6,6 in -17,46;
    contains blocks -272,0,736 to -257,255,751), Region: (-1,1; contains
    chunks -32,32 to -1,63, blocks -512,0,512 to -1,255,1023)
    Actual block type: ID #98 (tile.stonebricksmooth // net.minecraft.block.BlockStoneBrick)
    Actual block data value: 0 / 0x0 / 0b0000
    Stacktrace:
    at net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.func_178469_a(TileEntityRendererDispatcher.java:136)
    at net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.func_180546_a(TileEntityRendererDispatcher.java:114)
    at net.minecraft.client.renderer.RenderGlobal.func_180446_a(RenderGlobal.java:678)
    at net.minecraft.client.renderer.EntityRenderer.func_175068_a(EntityRenderer.java:1316)
    at net.minecraft.client.renderer.EntityRenderer.func_78471_a(EntityRenderer.java:1230)

    -- Affected level --
    Details:
    Level name: MpServer
    All players: 1 total; [EntityPlayerSP['Ltserb'/16, l='MpServer', x=-269.87, y=112.54, z=703.02]]
    Chunk stats: MultiplayerChunkCache: 441, 441
    Level seed: 0
    Level generator: ID 00 - default, ver 1. Features enabled: false
    Level generator options:

    Level spawn location: -187.00,183.00,-405.00 - World: (-187,183,-405),
    Chunk: (at 5,11,11 in -12,-26; contains blocks -192,0,-416 to
    -177,255,-401), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks
    -512,0,-512 to -1,255,-1)
    Level time: 1655506 game time, 1026996 day time
    Level dimension: 0
    Level storage version: 0x00000 - Unknown?
    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false

    Forced entities: 18 total; [EntityBat['Bat'/66339, l='MpServer',
    x=-336.38, y=43.06, z=778.09], EntityBat['Bat'/48515, l='MpServer',
    x=-229.16, y=54.10, z=689.06], EntityBat['Bat'/52963, l='MpServer',
    x=-235.25, y=53.02, z=711.59], EntityBat['Bat'/18150, l='MpServer',
    x=-234.56, y=62.10, z=659.53], EntityBat['Bat'/39, l='MpServer',
    x=-225.50, y=54.10, z=649.41], EntityBat['Bat'/57831, l='MpServer',
    x=-232.31, y=62.94, z=653.59], EntityBat['Bat'/69577, l='MpServer',
    x=-292.03, y=57.09, z=712.47], EntityBat['Bat'/69800, l='MpServer',
    x=-193.75, y=41.06, z=658.31], EntityBat['Bat'/42251, l='MpServer',
    x=-231.59, y=54.10, z=699.53], EntityBat['Bat'/57803, l='MpServer',
    x=-260.25, y=62.06, z=644.81], EntityBat['Bat'/64459, l='MpServer',
    x=-291.44, y=14.28, z=658.91], EntityBat['Bat'/69808, l='MpServer',
    x=-276.31, y=56.00, z=708.47], EntityPlayerSP['Ltserb'/16, l='MpServer',
    x=-269.87, y=112.54, z=703.02], EntityBat['Bat'/21, l='MpServer',
    x=-289.75, y=57.10, z=692.34], EntityBat['Bat'/62453, l='MpServer',
    x=-262.56, y=28.28, z=750.78], EntityBat['Bat'/56599, l='MpServer',
    x=-305.25, y=20.56, z=722.75], EntityBat['Bat'/48506, l='MpServer',
    x=-209.67, y=24.54, z=671.22], EntityBat['Bat'/57819, l='MpServer',
    x=-225.25, y=18.03, z=718.75]]
    Retry entities: 0 total; []
    Server brand: fml,forge
    Server type: Integrated singleplayer server
    Stacktrace:
    at net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:347)
    at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2536)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:370)
    at net.minecraft.client.main.Main.main(SourceFile:124)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

    -- System Details --
    Details:
    Minecraft Version: 1.8.9
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_77, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 5689722512 bytes (5426 MB) / 6442450944 bytes (6144 MB) up to 6442450944 bytes (6144 MB)

    JVM Flags: 5 total;
    -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump
    -Xms6144m -Xmx6144m -XX:+UseG1GC -XX:MaxGCPauseMillis=4
    IntCache: cache: 0, tcache: 40, allocated: 13, tallocated: 95
    FML: MCP 9.19 Powered by Forge 11.15.1.1762 5 mods loaded, 5 mods active

    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' =
    Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available
    'D' = Disabled 'E' = Errored
    UCHIJAAAA mcp{9.19} [Minecraft Coder Pack] (minecraft.jar)
    UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (modpack.jar)
    UCHIJAAAA Forge{11.15.1.1762} [Minecraft Forge] (modpack.jar)
    UCHIJAAAA malisiscore{1.8.9-2.1.4} [MalisisCore] (malisiscore-1.8.9-2.1.4.jar)
    UCHIJAAAA malisisdoors{1.8.9-3.1.3} [MalisisDoors] (malisisdoors-1.8.9-3.1.3.jar)
    Loaded coremods (and transformers):
    MalisisCorePlugin (malisiscore-1.8.9-2.1.4.jar)
    net.malisis.core.util.chunkcollision.ChunkCollisionTransformer
    net.malisis.core.util.chunkblock.ChunkBlockTransformer
    net.malisis.core.renderer.transformer.MalisisRendererTransformer
    net.malisis.core.renderer.icon.asm.TextureMapTransformer

    GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13399
    Compatibility Profile Context 15.201.1151.1008' Renderer: 'AMD Radeon
    (TM) R9 390 Series'
    Launched Version: 1.8.9-forge1.8.9-11.15.1.1762
    LWJGL: 2.9.4

    OpenGL: AMD Radeon (TM) R9 390 Series GL version 4.5.13399
    Compatibility Profile Context 15.201.1151.1008, ATI Technologies Inc.
    GL Caps: Using GL 1.3 multitexturing.
    Using GL 1.3 texture combiners.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Shaders are available because OpenGL 2.1 is supported.
    VBOs are available because OpenGL 1.5 is supported.

    Using VBOs: No
    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: Villagers, Zelda Music, Zelda Textures
    Current Language: English (US)
    Profiler Position: N/A (disabled)
    CPU: 8x Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz



    Edit: Upon further investigation it seems to be due to the door animation. (due to vanilla doors opening and closing instantly, whereas Malisis modifies that behavior)

    Posted in: Minecraft Mods
  • 0

    posted a message on MalisisDoors 1.12.2-7.3.0 / 1.11.2-6.1.3 (01/02/2018)

    To start with the crash log:



    ---- Minecraft Crash Report ----

    WARNING: coremods are present:
    MalisisCorePlugin (malisiscore-1.8.9-2.1.3.jar)
    Contact their authors BEFORE contacting forge

    // I bet Cylons wouldn't have this problem.

    Time: 4/17/16 12:17 AM
    Description: Rendering Block Entity

    java.lang.IllegalArgumentException: Cannot get property PropertyBool{name=open, clazz=class java.lang.Boolean, values=[true, false]} as it does not exist in BlockState{block=minecraft:air, properties=[]}
    at net.minecraft.block.state.BlockState$StateImplementation.func_177229_b(BlockState.java:137)
    at net.malisis.doors.tileentity.DoorTileEntity.isOpened(DoorTileEntity.java:141)
    at net.malisis.doors.renderer.DoorRenderer.setTileEntity(DoorRenderer.java:187)
    at net.malisis.doors.renderer.DoorRenderer.render(DoorRenderer.java:148)
    at net.malisis.core.renderer.MalisisRenderer.func_180535_a(MalisisRenderer.java:336)
    at net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.func_178469_a(TileEntityRendererDispatcher.java:136)
    at net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.func_180546_a(TileEntityRendererDispatcher.java:114)
    at net.minecraft.client.renderer.RenderGlobal.func_180446_a(RenderGlobal.java:678)
    at net.minecraft.client.renderer.EntityRenderer.func_175068_a(EntityRenderer.java:1316)
    at net.minecraft.client.renderer.EntityRenderer.func_78471_a(EntityRenderer.java:1230)
    at net.minecraft.client.renderer.EntityRenderer.func_181560_a(EntityRenderer.java:1058)
    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1051)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:349)
    at net.minecraft.client.main.Main.main(SourceFile:124)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- Head --
    Stacktrace:
    at net.minecraft.block.state.BlockState$StateImplementation.func_177229_b(BlockState.java:137)
    at net.malisis.doors.tileentity.DoorTileEntity.isOpened(DoorTileEntity.java:141)
    at net.malisis.doors.renderer.DoorRenderer.setTileEntity(DoorRenderer.java:187)
    at net.malisis.doors.renderer.DoorRenderer.render(DoorRenderer.java:148)
    at net.malisis.core.renderer.MalisisRenderer.func_180535_a(MalisisRenderer.java:336)

    -- Block Entity Details --
    Details:
    Name: doorTileEntity // net.malisis.doors.tileentity.DoorTileEntity
    Block type: ID #0 (tile.air // net.minecraft.block.BlockAir)
    Block data value: 0 / 0x0 / 0b0000
    Block location: World: (-264,108,742), Chunk: (at 8,6,6 in -17,46; contains blocks -272,0,736 to -257,255,751), Region: (-1,1; contains chunks -32,32 to -1,63, blocks -512,0,512 to -1,255,1023)
    Actual block type: ID #0 (tile.air // net.minecraft.block.BlockAir)
    Actual block data value: 0 / 0x0 / 0b0000
    Stacktrace:
    at net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.func_178469_a(TileEntityRendererDispatcher.java:136)
    at net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher.func_180546_a(TileEntityRendererDispatcher.java:114)
    at net.minecraft.client.renderer.RenderGlobal.func_180446_a(RenderGlobal.java:678)
    at net.minecraft.client.renderer.EntityRenderer.func_175068_a(EntityRenderer.java:1316)
    at net.minecraft.client.renderer.EntityRenderer.func_78471_a(EntityRenderer.java:1230)

    -- Affected level --
    Details:
    Level name: MpServer
    All players: 1 total; [EntityPlayerSP['Ltserb'/18, l='MpServer', x=-272.15, y=110.69, z=704.62]]
    Chunk stats: MultiplayerChunkCache: 441, 441
    Level seed: 0
    Level generator: ID 00 - default, ver 1. Features enabled: false
    Level generator options:
    Level spawn location: -187.00,183.00,-405.00 - World: (-187,183,-405), Chunk: (at 5,11,11 in -12,-26; contains blocks -192,0,-416 to -177,255,-401), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)
    Level time: 1382664 game time, 754154 day time
    Level dimension: 0
    Level storage version: 0x00000 - Unknown?
    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
    Forced entities: 16 total; [EntityBat['Bat'/35, l='MpServer', x=-347.13, y=26.10, z=739.78], EntityBat['Bat'/39, l='MpServer', x=-322.53, y=31.84, z=770.66], EntityBat['Bat'/40, l='MpServer', x=-333.94, y=34.38, z=778.34], EntityBat['Bat'/41, l='MpServer', x=-336.34, y=34.97, z=763.22], EntityBat['Bat'/47, l='MpServer', x=-331.59, y=38.06, z=779.03], EntityItem['item.tile.pistonStickyBase'/19, l='MpServer', x=-273.16, y=50.00, z=732.66], EntityBat['Bat'/20, l='MpServer', x=-287.75, y=62.10, z=690.53], EntityBat['Bat'/21, l='MpServer', x=-250.53, y=62.10, z=696.44], EntityBat['Bat'/23, l='MpServer', x=-227.16, y=53.88, z=692.59], EntityBat['Bat'/24, l='MpServer', x=-284.94, y=19.09, z=751.63], EntityBat['Bat'/25, l='MpServer', x=-222.31, y=55.19, z=677.41], EntityBat['Bat'/26, l='MpServer', x=-227.19, y=40.31, z=763.44], EntityBat['Bat'/6362, l='MpServer', x=-206.50, y=13.00, z=699.50], EntityBat['Bat'/27, l='MpServer', x=-250.38, y=57.09, z=651.81], EntityPlayerSP['Ltserb'/18, l='MpServer', x=-272.15, y=110.69, z=704.62], EntityBat['Bat'/30, l='MpServer', x=-219.22, y=40.31, z=775.56]]
    Retry entities: 0 total; []
    Server brand: fml,forge
    Server type: Integrated singleplayer server
    Stacktrace:
    at net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:347)
    at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2536)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:370)
    at net.minecraft.client.main.Main.main(SourceFile:124)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

    -- System Details --
    Details:
    Minecraft Version: 1.8.9
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_77, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 5932136256 bytes (5657 MB) / 6442450944 bytes (6144 MB) up to 6442450944 bytes (6144 MB)
    JVM Flags: 5 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms6144m -Xmx6144m -XX:+UseG1GC -XX:MaxGCPauseMillis=4
    IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94
    FML: MCP 9.19 Powered by Forge 11.15.1.1762 5 mods loaded, 5 mods active
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    UCHIJAAAA mcp{9.19} [Minecraft Coder Pack] (minecraft.jar)
    UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (modpack.jar)
    UCHIJAAAA Forge{11.15.1.1762} [Minecraft Forge] (modpack.jar)
    UCHIJAAAA malisiscore{1.8.9-2.1.3} [MalisisCore] (malisiscore-1.8.9-2.1.3.jar)
    UCHIJAAAA malisisdoors{1.8.9-3.1.3} [MalisisDoors] (malisisdoors-1.8.9-3.1.3.jar)
    Loaded coremods (and transformers):
    MalisisCorePlugin (malisiscore-1.8.9-2.1.3.jar)
    net.malisis.core.util.chunkcollision.ChunkCollisionTransformer
    net.malisis.core.util.chunkblock.ChunkBlockTransformer
    net.malisis.core.renderer.transformer.MalisisRendererTransformer
    net.malisis.core.renderer.icon.asm.TextureMapTransformer
    GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13399 Compatibility Profile Context 15.201.1151.1008' Renderer: 'AMD Radeon (TM) R9 390 Series'
    Launched Version: 1.8.9-forge1.8.9-11.15.1.1762
    LWJGL: 2.9.4
    OpenGL: AMD Radeon (TM) R9 390 Series GL version 4.5.13399 Compatibility Profile Context 15.201.1151.1008, ATI Technologies Inc.
    GL Caps: Using GL 1.3 multitexturing.
    Using GL 1.3 texture combiners.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Shaders are available because OpenGL 2.1 is supported.
    VBOs are available because OpenGL 1.5 is supported.

    Using VBOs: No
    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: Villagers, Zelda Music, Zelda Textures
    Current Language: English (US)
    Profiler Position: N/A (disabled)
    CPU: 8x Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz


    Getting this crash in MC:1.8.9 with only MalDoors:3.1.3 and MalCore:2.1.3 2.1.4 installed.

    Reliably repeated by cloning an area containing any combination of blocks that replaces another area that contains vanilla doors.

    I have not had a chance to try it on a server yet so all errors are from single player play.


    Let me know if i can provide any additional info or troubleshooting.


    Thanks for updating 10 hours before i had a problem :)

    I am leaving everything here for anybody else that may have this problem. I resolved it by updating MalisisCore to 2.1.4.

    Edit: The update seemed to reduce the frequency of the error, but did not eliminate the failures.

    Posted in: Minecraft Mods
  • 0

    posted a message on Plans API / Library Version

    Liking the Dungeons! mod, it replaced "Ruins" for me because it is not the same dungeon every time.

    The only problem is that I cant add rooms now that it is on 1.8.9, because PlansCreator is not updated, do you think you will be updating it?

    Posted in: Minecraft Mods
  • 0

    posted a message on MCEdit Filter Scripts

    Just open a txt file and copy paste, then rename to *.py

    Posted in: Minecraft Tools
  • 0

    posted a message on Builder's Helper mod v2.7: copy/paste/save/load mobs & structures with click; with autogeneration and randomisation

    This looks amazing! Can autonomous activators/dynasim tablets/deployers/ect. use the wand?

    Posted in: Minecraft Mods
  • 0

    posted a message on Helpful Villagers v1.4.0 BETA - Builders and more on the way...
    Quote from Sierra_W11»

    Bartering isn't working for me; it's stuck on 'calculating village prices' and won't continue.



    This is caused by having a mod (other than Tinker's Construct) that has an ore doubling mechanic.

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