• 0

    posted a message on teleport a player to a location saved in scoreboard as x y z values

    This method will only work for loaded chunks, if you want to teleport the player into unloaded chunks you can use a datapack I made

    https://www.reddit.com/r/MinecraftCommands/comments/dckqlu/teleport_to_scoreboard_values/?utm_source=share&utm_medium=web2x

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Analog Hexadecimal to Binary and Back
    Quote from Conundrumer»
    Here's a really compact hex to binary encoder (unfortunately slow with a worst case delay of 14 ticks if I counted correctly)

    Here's a bulky, but really fast (2 tick worst case delay) hex to binary encoder

    I'll take more detailed screenshots upon request.

    So, I bet you weren't expecting a request for better screenshots 6 years later, but here we are. I was able to replicate the compact one, but there isn't enough information in the fast one to replicate it. If you still have it saved somewhere as a schematic or in a world still, that would be fantastic.

    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Detecting a player hit by an arrow [1.12.2] [Works]

    Instead of all this, you can use an advancement to tell if the player was hit by an arrow.


    Example:


    data/advancements/custom_arrows/player_hit_by_arrow.json:

    https://pastebin.com/EQZzXxie


    data/functions/custom_arrows/arrow_action.mcfunction:

    execute @s ~ ~ ~ summon lightning_bolt ~ ~ ~
    advancement revoke @s only custom_arrows:player_hit_by_arrow


    Repeating Command Block (or function):

    scoreboard players add @e[type=arrow] arrowTimer 0
    execute @a ~ ~1.32 ~ scoreboard players tag @e[type=arrow,score_arrowTimer=0,score_arrowTimer_min=0,r=1] add CustomArrow

    scoreboard players add @e[type=arrow] arrowTimer 1


    Impulse Command Block (or function):

    scoreboard objectives add arrowTimer dummy


    While this is useful for detecting players hit, it doesn't detect any other entity being hit. SO if you're going for just player detection, the advancement is probably significantly better, but for general purpose entities, the system I designed is probably better.

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Detecting a player hit by an arrow [1.12.2] [Works]

    I actually have started using c=1 instead of r=2, because it will tag the closest arrow, which I think is the most accurate.


    execute @a[tag=hasCoolBow,score_coolUseBow_min=1] ~ ~ ~ entitydata @e[type=Arrow,r=2] {Potion:"minecraft:water",CustomPotionEffects:[{Id:4b,Amplifier:5b,Duration:600}]}


    turns into


    execute @a[tag=hasCoolBow,score_coolUseBow_min=1] ~ ~ ~ entitydata @e[type=Arrow,c=1] {Potion:"minecraft:water",CustomPotionEffects:[{Id:4b,Amplifier:5b,Duration:600}]}


    (Sorry for the poor formatting, the editor isn't working for me currently)

    Posted in: Commands, Command Blocks and Functions
  • 1

    posted a message on Detecting a player hit by an arrow [1.12.2] [Works]

    I figured out the problem: I was forgetting to put a 'b' at the end of the numbers lol


    So here it is in one command:

    summon falling_block ~ ~1 ~ {Block:log,Time:1,Passengers:[{id:falling_block,Block:redstone_block,Time:1,Passengers:[{id:falling_block,Block:activator_rail,Time:1,Passengers:[{id:commandblock_minecart,Command:"kill @e[type=!Player,tag=ccp_VfchzYrZ]"},{id:commandblock_minecart,Command:"kill @e[tag=ccp_VfchzYrZ_r]"},{id:commandblock_minecart,Command:"gamerule commandBlockOutput false"},{id:commandblock_minecart,Command:"scoreboard objectives add coolUseBow stat.useItem.minecraft.bow"},{id:commandblock_minecart,Command:"setblock ~9 ~-3 ~0 chain_command_block 5 0 {TrackOutput:0,auto:1,Command:\"scoreboard players set @a[score_coolUseBow_min=1] coolUseBow 0\"}"},{id:commandblock_minecart,Command:"setblock ~8 ~-3 ~0 chain_command_block 5 0 {TrackOutput:0,auto:1,Command:\"scoreboard players tag @a[tag=hasCoolBow] remove hasCoolBow\"}"},{id:commandblock_minecart,Command:"setblock ~7 ~-3 ~0 chain_command_block 5 0 {TrackOutput:0,auto:1,Command:\"scoreboard players tag @e[tag=coolHit] remove coolHit\"}"},{id:commandblock_minecart,Command:"setblock ~6 ~-3 ~0 chain_command_block 5 0 {TrackOutput:0,auto:1,Command:\"execute @e[tag=coolHit] ~ ~ ~ summon lightning_bolt ~ ~ ~\"}"},{id:commandblock_minecart,Command:"setblock ~5 ~-3 ~0 chain_command_block 5 0 {TrackOutput:0,auto:1,Command:\"effect @e[tag=coolHit] clear\"}"},{id:commandblock_minecart,Command:"setblock ~4 ~-3 ~0 chain_command_block 5 0 {TrackOutput:0,auto:1,Command:\"scoreboard players tag @e add coolHit {ActiveEffects:[{Id:4b,Amplifier:5b}]}\"}"},{id:commandblock_minecart,Command:"setblock ~3 ~-3 ~0 chain_command_block 5 0 {TrackOutput:0,auto:1,Command:\"execute @a[tag=hasCoolBow,score_coolUseBow_min=1] ~ ~ ~ entitydata @e[type=Arrow,r=2] {Potion:\\\"minecraft:water\\\",CustomPotionEffects:[{Id:4b,Amplifier:5b,Duration:600}]}\"}"},{id:commandblock_minecart,Command:"setblock ~2 ~-3 ~0 repeating_command_block 5 0 {TrackOutput:0,auto:1,Command:\"scoreboard players tag @a add hasCoolBow {SelectedItem:{id:\\\"minecraft:bow\\\",tag:{cool:1b,display:{Name:\\\"CoolBow\\\"}}}}\"}"},{id:commandblock_minecart,Command:"setblock ~ ~ ~1 command_block 0 0 {Command:\"fill ~ ~-3 ~-1 ~ ~ ~ air\"}"},{id:commandblock_minecart,Command:"setblock ~ ~-1 ~1 redstone_block"},{id:commandblock_minecart,Command:"kill @e[type=commandblock_minecart,r=1]"}]}]}]}



    Here it is decompressed: (the first line is run once, the rest is repeating in order)

    scoreboard objectives add coolUseBow stat.useItem.minecraft.bow
    scoreboard players tag @a add hasCoolBow {SelectedItem:{id:"minecraft:bow",tag:{cool:1b,display:{Name:"CoolBow"}}}}
    execute @a[tag=hasCoolBow,score_coolUseBow_min=1] ~ ~ ~ entitydata @e[type=Arrow,r=2] {Potion:"minecraft:water",CustomPotionEffects:[{Id:4b,Amplifier:5b,Duration:600}]}
    scoreboard players tag @e add coolHit {ActiveEffects:[{Id:4b,Amplifier:5b}]}
    effect @e[tag=coolHit] clear
    execute @e[tag=coolHit] ~ ~ ~ summon lightning_bolt ~ ~ ~
    scoreboard players tag @e[tag=coolHit] remove coolHit
    scoreboard players tag @a[tag=hasCoolBow] remove hasCoolBow
    scoreboard players set @a[score_coolUseBow_min=1] coolUseBow 0


    If anyone would like an in-depth explanation on how this works and how to use it, I can make a proper post, if someone requests it

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Detecting a player hit by an arrow [1.12.2] [Works]

    Say you have a lot more bows, that do a lot of things. In order to guarantee that you don't have the bows meshing with each other, you have to make it so they use different potion effects, or hopefully different amplifiers of Mining Fatigue, as you recommend

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Detecting a player hit by an arrow [1.12.2] [Works]

    I've attempted doing the following:

    execute @a[tag=hasCoolBow] ~ ~ ~ entitydata @e[type=Arrow,r=2] {Potion:"minecraft:water",CustomPotionEffects:[{Id:26,Amplifier:4,Duration:160}]}
    scoreboard players tag @e coolHit {ActiveEffects:[{Id:26,Amplifier:4}]}


    Instead of

    execute @a[tag=hasCoolBow] ~ ~ ~ entitydata @e[type=Arrow,r=2] {Potion:"minecraft:luck",CustomName:"Cool Arrow"}
    scoreboard players tag @e add coolHit {ActiveEffects:[{Id:26b}]}

    But it never seems to work, any help? I feel this has potential

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Detecting a player hit by an arrow [1.12.2] [Works]

    So a friend of mine and I were messing around with the concept of command block mods e.g. making explosive arrows, spells that use crouching, etc. We came upon the issue of detecting when a player was hit with an arrow, and he came up with the genius idea of using potion effects. I went and attempted to implement it, and although it works, there are some issues I would like to iron out with the help of the community.

    *All of these are repeating, in order


    So this would detect you holding a bow with the tag "cool" and the name "CoolBow". We'll remove this tag later, so it can be repeated.

    scoreboard players tag @a add hasCoolBow {SelectedItem:{id:"minecraft:bow",tag:{cool:1b,display:{Name:"CoolBow"}}}}



    So the next one would make sure any arrows you fire will get potioned, like so:

    execute @a[tag=hasCoolBow] ~ ~ ~ entitydata @e[type=Arrow,r=2] {Potion:"minecraft:luck",CustomName:"Cool Arrow"}

    Next, we tag anything with luck

    scoreboard players tag @e add coolHit {ActiveEffects:[{Id:26b}]}

    So, we do whatever we want to do to this person that was hit.

    effect @e[tag=coolHit] clear
    execute @e[tag=coolHit] ~ ~ ~ summon lightning_bolt ~ ~ ~



    Now we do some cleanup

    scoreboard players tag @e[tag=coolHit] remove coolHit
    scoreboard players tag @a[tag=hasCoolBow] remove hasCoolBow

    Now, there are two issues with this.

    1. You have to have a different potion effect for every special bow
    2. Normal potions can still create the effect the bow does

    Now, I tried to come up with a solution: Using different levels, or amplifiers, on the "unluck" or "luck" potion effect, something rarely used. I couldn't get it to work though, after an hour of trying to make it work using CustomPotionEffects.



    This should be everything, in a repeating chain:

    scoreboard players tag @a add hasCoolBow {SelectedItem:{id:"minecraft:bow",tag:{cool:1b,display:{Name:"CoolBow"}}}}
    execute @a[tag=hasCoolBow] ~ ~ ~ entitydata @e[type=Arrow,r=2] {Potion:"minecraft:luck",CustomName:"Cool Arrow"}
    scoreboard players tag @e add coolHit {ActiveEffects:[{Id:26b}]}
    effect @e[tag=coolHit] clear
    execute @e[tag=coolHit] ~ ~ ~ summon lightning_bolt ~ ~ ~
    scoreboard players tag @e[tag=coolHit] remove coolHit
    scoreboard players tag @a[tag=hasCoolBow] remove hasCoolBow

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on Detect player hit by an arrow

    I know this has been a while, but the link that is posted there isn't working anymore, as it is a completely blank screen. If you could kindly post a different method, the same in different format, or fix the server, that would be greatly appreciated.

    Posted in: Commands, Command Blocks and Functions
  • 0

    posted a message on SmarterFont – a unified Minecraft font

    You are using the Petit Computer Font? Or the Smilebasic Font, depending on where you got it from. They are essentially the same thing.

    Posted in: WIP Mods
  • 0

    posted a message on Project Red IC Circuits Crashing?

    Thank you! This actually worked. I don't know what was wrong with it, but it is working now!

    Posted in: Java Edition Support
  • 0

    posted a message on Project Red IC Circuits Crashing?

    My Project Red crashes every time I try to use the Simple IO or the Analog IO. I have tried both survival and creative, and it still crashes when I try to create the gate. It renders fine on the blueprint, and doesn't crash when I put it on the chip. It only crashes when it tries to render the gate. Every time it crashes, I have to delete all player data in the world with MCEdit to be able to play the world again. I have several other mods, and I don't know if one of them is the problem, but if anyone could help me that would be great.


    Here is several crash logs caused by the same issue:


    ---- Minecraft Crash Report ----
    // Surprise! Haha. Well, this is awkward.

    Time: 12/29/15 11:46 AM
    Description: Rendering item

    java.lang.NullPointerException: Rendering item
    at mrtjp.projectred.integration.WireModel2D.renderModel(components.scala:418)
    at mrtjp.projectred.integration.SidedWireModel$$anonfun$renderModel$6.apply$mcVI$sp(components.scala:922)
    at scala.collection.immutable.Range.foreach$mVc$sp(Range.scala:160)
    at mrtjp.projectred.integration.SidedWireModel.renderModel(components.scala:921)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at scala.collection.immutable.List.foreach(List.scala:383)
    at mrtjp.projectred.integration.GateRenderer.renderModels(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer.renderStatic(gaterenders.scala:130)
    at mrtjp.projectred.integration.RenderGate$.renderInv(gaterenders.scala:89)
    at mrtjp.projectred.integration.GateItemRenderer$.renderGateInv$1(items.scala:139)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:127)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:112)
    at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)
    at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)
    at net.minecraft.client.gui.GuiIngame.func_73832_a(GuiIngame.java:955)
    at net.minecraftforge.client.GuiIngameForge.renderHotbar(GuiIngameForge.java:206)
    at net.minecraftforge.client.GuiIngameForge.func_73830_a(GuiIngameForge.java:141)
    at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1328)
    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1001)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    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 mrtjp.projectred.integration.WireModel2D.renderModel(components.scala:418)
    at mrtjp.projectred.integration.SidedWireModel$$anonfun$renderModel$6.apply$mcVI$sp(components.scala:922)
    at scala.collection.immutable.Range.foreach$mVc$sp(Range.scala:160)
    at mrtjp.projectred.integration.SidedWireModel.renderModel(components.scala:921)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at scala.collection.immutable.List.foreach(List.scala:383)
    at mrtjp.projectred.integration.GateRenderer.renderModels(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer.renderStatic(gaterenders.scala:130)
    at mrtjp.projectred.integration.RenderGate$.renderInv(gaterenders.scala:89)
    at mrtjp.projectred.integration.GateItemRenderer$.renderGateInv$1(items.scala:139)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:127)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:112)
    at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)

    -- Item being rendered --
    Details:
    Item Type: mrtjp.projectred.integration.ItemPartGate@59701284
    Item Aux: 34
    Item NBT: {cmode:272s,icname:"TESTFORSTUFF",icdata:{sw:16b,sh:16b,iost:[0,0,0,0,],name:"TESTFORSTUFF",parts:[0:{ypos:14b,xpos:14b,connMap:6b,id:3b,signal:0b},1:{subID:0b,ypos:14b,xpos:15b,orient:1b,shape:2b,connMap:8b,schedTime:-1L,id:6b,state:0b},2:{subID:0b,ypos:15b,xpos:14b,orient:2b,shape:2b,connMap:1b,schedTime:-1L,id:6b,state:0b}]},masks:102s,icw:16b,ich:16b}
    Item Foil: false
    Stacktrace:
    at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)
    at net.minecraft.client.gui.GuiIngame.func_73832_a(GuiIngame.java:955)
    at net.minecraftforge.client.GuiIngameForge.renderHotbar(GuiIngameForge.java:206)
    at net.minecraftforge.client.GuiIngameForge.func_73830_a(GuiIngameForge.java:141)

    -- Affected level --
    Details:
    Level name: MpServer
    All players: 1 total; [EntityClientPlayerMP['Neitzkids'/3068, l='MpServer', x=-545.66, y=57.62, z=-176.22]]
    Chunk stats: MultiplayerChunkCache: 549, 558
    Level seed: 0
    Level generator: ID 01 - flat, ver 0. Features enabled: false
    Level generator options:
    Level spawn location: World: (-486,4,-113), Chunk: (at 10,0,15 in -31,-8; contains blocks -496,0,-128 to -481,255,-113), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)
    Level time: 576554 game time, 576554 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: 2 total; [EntityTrail['unknown'/3075, l='MpServer', x=-545.66, y=57.62, z=-176.22], EntityClientPlayerMP['Neitzkids'/3068, l='MpServer', x=-545.66, y=57.62, z=-176.22]]
    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:373)
    at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:919)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

    -- System Details --
    Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 7 (amd64) version 6.1
    Java Version: 1.8.0_25, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 401658736 bytes (383 MB) / 1042595840 bytes (994 MB) up to 1060372480 bytes (1011 MB)
    JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1492 Optifine OptiFine_1.7.10_HD_U_C1 40 mods loaded, 40 mods active
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    UCHIJAAAAAAAAAAAAAAAAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1492-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Forge{10.13.4.1492} [Minecraft Forge] (forge-1.7.10-10.13.4.1492-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Aroma1997Core{1.0.2.4} [Aroma1997Core] (minecraft.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA CodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA NotEnoughItems{1.0.3.74} [Not Enough Items] (Not-Enough-Items-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Core{7.0.21} [BuildCraft] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Silicon{7.0.21} [BC Silicon] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Factory{7.0.21} [BC Factory] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Transport{7.0.21} [BC Transport] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA additionalpipes{4.6.0} [Additional Pipes] (additionalpipes-4.6.1.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Aroma1997CoreHelper{1.0.2.4} [Aroma1997Core|Helper] (Aroma1997Core-1.7.2.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Backpack{2.0.1} [Backpack] (Backpacks-Mod.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BetterChests{1.1.1.1} [BetterChests] (BetterChests-1.7.10-1.1.1.1.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Builders{7.0.21} [BC Builders] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Energy{7.0.21} [BC Energy] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Robotics{7.0.21} [BC Robotics] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA enviromine{1.3.124} [EnviroMine] (EnviroMine-1.3.124.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA iChunUtil{4.1.3} [iChunUtil] (iChun-Util-Mod-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA InfernalMobs{1.6.6} [Infernal Mobs] (InfernalMobs-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA lucky{5.1.0} [Lucky Block] (Lucky-Block-Mod-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA more{4.0} [M-Ore mod] (M-Ore 4.0(1).jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Morph{0.9.1} [Morph] (Morphing-Mod-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Oceancraft{1.4} [Oceancraft] (Oceancraft-1.4.jar.zip)
    UCHIJAAAAAAAAAAAAAAAAAAA ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA MrTJPCoreMod{1.1.0.27} [MrTJPCore] (MrTJPCore-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Core{4.7.0pre5.89} [ProjectRed Core] (ProjectRed-Base-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Transmission{4.7.0pre5.89} [ProjectRed Transmission] (ProjectRed-1.7.10-Integration.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Exploration{4.7.0pre5.89} [ProjectRed Exploration] (ProjectRed-1.7.10-World.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Compatibility{4.7.0pre5.89} [ProjectRed Compatibility] (ProjectRed-1.7.10-Compat.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Integration{4.7.0pre5.89} [ProjectRed Integration] (ProjectRed-1.7.10-Integration.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Fabrication{4.7.0pre5.89} [ProjectRed Fabrication] (ProjectRed-1.7.10-Fabrication.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Illumination{4.7.0pre5.89} [ProjectRed Illumination] (ProjectRed-1.7.10-Lighting.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA TooMuchTNT{2.9} [TooMuchTNT] (Too-Much-TNT-Mod-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA worldedit{6.0-beta-01} [WorldEdit] (worldedit-forge-mc1.7.10-6.0-beta-01.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ForgeRelocation{0.0.1.3} [ForgeRelocation] (ForgeRelocation-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA MCFrames{1.0} [MCFrames] (ForgeRelocation-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA RelocationFMP{0.0.1.2} [RelocationFMP] (ForgeRelocationFMP-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    Launched Version: 1.7.10-Forge10.13.4.1492-1.7.10
    LWJGL: 2.9.1
    OpenGL: Intel(R) HD Graphics 3000 GL version 3.1.0 - Build 9.17.10.4229, Intel
    GL Caps: Using GL 1.3 multitexturing.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Anisotropic filtering is supported and maximum anisotropy is 16.
    Shaders are available because OpenGL 2.1 is supported.

    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: []---- Minecraft Crash Report ----
    // Surprise! Haha. Well, this is awkward.

    Time: 12/29/15 11:46 AM
    Description: Rendering item

    java.lang.NullPointerException: Rendering item
    at mrtjp.projectred.integration.WireModel2D.renderModel(components.scala:418)
    at mrtjp.projectred.integration.SidedWireModel$$anonfun$renderModel$6.apply$mcVI$sp(components.scala:922)
    at scala.collection.immutable.Range.foreach$mVc$sp(Range.scala:160)
    at mrtjp.projectred.integration.SidedWireModel.renderModel(components.scala:921)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at scala.collection.immutable.List.foreach(List.scala:383)
    at mrtjp.projectred.integration.GateRenderer.renderModels(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer.renderStatic(gaterenders.scala:130)
    at mrtjp.projectred.integration.RenderGate$.renderInv(gaterenders.scala:89)
    at mrtjp.projectred.integration.GateItemRenderer$.renderGateInv$1(items.scala:139)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:127)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:112)
    at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)
    at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)
    at net.minecraft.client.gui.GuiIngame.func_73832_a(GuiIngame.java:955)
    at net.minecraftforge.client.GuiIngameForge.renderHotbar(GuiIngameForge.java:206)
    at net.minecraftforge.client.GuiIngameForge.func_73830_a(GuiIngameForge.java:141)
    at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1328)
    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1001)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    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 mrtjp.projectred.integration.WireModel2D.renderModel(components.scala:418)
    at mrtjp.projectred.integration.SidedWireModel$$anonfun$renderModel$6.apply$mcVI$sp(components.scala:922)
    at scala.collection.immutable.Range.foreach$mVc$sp(Range.scala:160)
    at mrtjp.projectred.integration.SidedWireModel.renderModel(components.scala:921)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at scala.collection.immutable.List.foreach(List.scala:383)
    at mrtjp.projectred.integration.GateRenderer.renderModels(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer.renderStatic(gaterenders.scala:130)
    at mrtjp.projectred.integration.RenderGate$.renderInv(gaterenders.scala:89)
    at mrtjp.projectred.integration.GateItemRenderer$.renderGateInv$1(items.scala:139)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:127)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:112)
    at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)

    -- Item being rendered --
    Details:
    Item Type: mrtjp.projectred.integration.ItemPartGate@59701284
    Item Aux: 34
    Item NBT: {cmode:272s,icname:"TESTFORSTUFF",icdata:{sw:16b,sh:16b,iost:[0,0,0,0,],name:"TESTFORSTUFF",parts:[0:{ypos:14b,xpos:14b,connMap:6b,id:3b,signal:0b},1:{subID:0b,ypos:14b,xpos:15b,orient:1b,shape:2b,connMap:8b,schedTime:-1L,id:6b,state:0b},2:{subID:0b,ypos:15b,xpos:14b,orient:2b,shape:2b,connMap:1b,schedTime:-1L,id:6b,state:0b}]},masks:102s,icw:16b,ich:16b}
    Item Foil: false
    Stacktrace:
    at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)
    at net.minecraft.client.gui.GuiIngame.func_73832_a(GuiIngame.java:955)
    at net.minecraftforge.client.GuiIngameForge.renderHotbar(GuiIngameForge.java:206)
    at net.minecraftforge.client.GuiIngameForge.func_73830_a(GuiIngameForge.java:141)

    -- Affected level --
    Details:
    Level name: MpServer
    All players: 1 total; [EntityClientPlayerMP['Neitzkids'/3068, l='MpServer', x=-545.66, y=57.62, z=-176.22]]
    Chunk stats: MultiplayerChunkCache: 549, 558
    Level seed: 0
    Level generator: ID 01 - flat, ver 0. Features enabled: false
    Level generator options:
    Level spawn location: World: (-486,4,-113), Chunk: (at 10,0,15 in -31,-8; contains blocks -496,0,-128 to -481,255,-113), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)
    Level time: 576554 game time, 576554 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: 2 total; [EntityTrail['unknown'/3075, l='MpServer', x=-545.66, y=57.62, z=-176.22], EntityClientPlayerMP['Neitzkids'/3068, l='MpServer', x=-545.66, y=57.62, z=-176.22]]
    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:373)
    at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:919)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

    -- System Details --
    Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 7 (amd64) version 6.1
    Java Version: 1.8.0_25, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 401658736 bytes (383 MB) / 1042595840 bytes (994 MB) up to 1060372480 bytes (1011 MB)
    JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1492 Optifine OptiFine_1.7.10_HD_U_C1 40 mods loaded, 40 mods active
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    UCHIJAAAAAAAAAAAAAAAAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1492-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Forge{10.13.4.1492} [Minecraft Forge] (forge-1.7.10-10.13.4.1492-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Aroma1997Core{1.0.2.4} [Aroma1997Core] (minecraft.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA CodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA NotEnoughItems{1.0.3.74} [Not Enough Items] (Not-Enough-Items-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Core{7.0.21} [BuildCraft] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Silicon{7.0.21} [BC Silicon] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Factory{7.0.21} [BC Factory] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Transport{7.0.21} [BC Transport] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA additionalpipes{4.6.0} [Additional Pipes] (additionalpipes-4.6.1.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Aroma1997CoreHelper{1.0.2.4} [Aroma1997Core|Helper] (Aroma1997Core-1.7.2.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Backpack{2.0.1} [Backpack] (Backpacks-Mod.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BetterChests{1.1.1.1} [BetterChests] (BetterChests-1.7.10-1.1.1.1.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Builders{7.0.21} [BC Builders] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Energy{7.0.21} [BC Energy] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA BuildCraft|Robotics{7.0.21} [BC Robotics] (buildcraft-7.0.21.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA enviromine{1.3.124} [EnviroMine] (EnviroMine-1.3.124.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA iChunUtil{4.1.3} [iChunUtil] (iChun-Util-Mod-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA InfernalMobs{1.6.6} [Infernal Mobs] (InfernalMobs-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA lucky{5.1.0} [Lucky Block] (Lucky-Block-Mod-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA more{4.0} [M-Ore mod] (M-Ore 4.0(1).jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Morph{0.9.1} [Morph] (Morphing-Mod-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA Oceancraft{1.4} [Oceancraft] (Oceancraft-1.4.jar.zip)
    UCHIJAAAAAAAAAAAAAAAAAAA ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA MrTJPCoreMod{1.1.0.27} [MrTJPCore] (MrTJPCore-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Core{4.7.0pre5.89} [ProjectRed Core] (ProjectRed-Base-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Transmission{4.7.0pre5.89} [ProjectRed Transmission] (ProjectRed-1.7.10-Integration.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Exploration{4.7.0pre5.89} [ProjectRed Exploration] (ProjectRed-1.7.10-World.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Compatibility{4.7.0pre5.89} [ProjectRed Compatibility] (ProjectRed-1.7.10-Compat.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Integration{4.7.0pre5.89} [ProjectRed Integration] (ProjectRed-1.7.10-Integration.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Fabrication{4.7.0pre5.89} [ProjectRed Fabrication] (ProjectRed-1.7.10-Fabrication.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ProjRed|Illumination{4.7.0pre5.89} [ProjectRed Illumination] (ProjectRed-1.7.10-Lighting.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA TooMuchTNT{2.9} [TooMuchTNT] (Too-Much-TNT-Mod-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA worldedit{6.0-beta-01} [WorldEdit] (worldedit-forge-mc1.7.10-6.0-beta-01.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ForgeRelocation{0.0.1.3} [ForgeRelocation] (ForgeRelocation-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA MCFrames{1.0} [MCFrames] (ForgeRelocation-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA RelocationFMP{0.0.1.2} [RelocationFMP] (ForgeRelocationFMP-1.7.10.jar)
    UCHIJAAAAAAAAAAAAAAAAAAA ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    Launched Version: 1.7.10-Forge10.13.4.1492-1.7.10
    LWJGL: 2.9.1
    OpenGL: Intel(R) HD Graphics 3000 GL version 3.1.0 - Build 9.17.10.4229, Intel
    GL Caps: Using GL 1.3 multitexturing.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Anisotropic filtering is supported and maximum anisotropy is 16.
    Shaders are available because OpenGL 2.1 is supported.

    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: []
    Current Language: English (US)
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Anisotropic Filtering: Off (1)
    Current Language: English (US)
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Anisotropic Filtering: Off (1)



    ---- Minecraft Crash Report ----
    // You're mean.

    Time: 12/29/15 11:34 AM
    Description: Rendering item

    java.lang.NullPointerException: Rendering item
    at mrtjp.projectred.integration.WireModel2D.renderModel(components.scala:418)
    at mrtjp.projectred.integration.SidedWireModel$$anonfun$renderModel$6.apply$mcVI$sp(components.scala:922)
    at scala.collection.immutable.Range.foreach$mVc$sp(Range.scala:160)
    at mrtjp.projectred.integration.SidedWireModel.renderModel(components.scala:921)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at scala.collection.immutable.List.foreach(List.scala:383)
    at mrtjp.projectred.integration.GateRenderer.renderModels(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer.renderStatic(gaterenders.scala:130)
    at mrtjp.projectred.integration.RenderGate$.renderInv(gaterenders.scala:89)
    at mrtjp.projectred.integration.GateItemRenderer$.renderGateInv$1(items.scala:139)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:127)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:112)
    at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)
    at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)
    at net.minecraft.client.gui.GuiIngame.func_73832_a(GuiIngame.java:955)
    at net.minecraftforge.client.GuiIngameForge.renderHotbar(GuiIngameForge.java:206)
    at net.minecraftforge.client.GuiIngameForge.func_73830_a(GuiIngameForge.java:141)
    at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1328)
    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1001)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    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 mrtjp.projectred.integration.WireModel2D.renderModel(components.scala:418)
    at mrtjp.projectred.integration.SidedWireModel$$anonfun$renderModel$6.apply$mcVI$sp(components.scala:922)
    at scala.collection.immutable.Range.foreach$mVc$sp(Range.scala:160)
    at mrtjp.projectred.integration.SidedWireModel.renderModel(components.scala:921)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer$$anonfun$renderModels$1.apply(gaterenders.scala:125)
    at scala.collection.immutable.List.foreach(List.scala:383)
    at mrtjp.projectred.integration.GateRenderer.renderModels(gaterenders.scala:125)
    at mrtjp.projectred.integration.GateRenderer.renderStatic(gaterenders.scala:130)
    at mrtjp.projectred.integration.RenderGate$.renderInv(gaterenders.scala:89)
    at mrtjp.projectred.integration.GateItemRenderer$.renderGateInv$1(items.scala:139)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:127)
    at mrtjp.projectred.integration.GateItemRenderer$.renderItem(items.scala:112)
    at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)

    -- Item being rendered --
    Details:
    Item Type: mrtjp.projectred.integration.ItemPartGate@59701284
    Item Aux: 34
    Item NBT: {cmode:257s,icname:"tesrtfr",icdata:{sw:16b,sh:16b,iost:[0,0,0,0,],name:"tesrtfr",parts:[0:{ypos:14b,xpos:9b,connMap:5b,id:3b,signal:0b},1:{ypos:6b,xpos:9b,connMap:5b,id:3b,signal:0b},2:{ypos:13b,xpos:9b,connMap:5b,id:3b,signal:0b},3:{ypos:9b,xpos:9b,connMap:5b,id:3b,signal:0b},4:{ypos:10b,xpos:9b,connMap:5b,id:3b,signal:0b},5:{ypos:2b,xpos:9b,connMap:5b,id:3b,signal:0b},6:{ypos:11b,xpos:9b,connMap:5b,id:3b,signal:0b},7:{ypos:12b,xpos:9b,connMap:5b,id:3b,signal:0b},8:{ypos:1b,xpos:9b,connMap:5b,id:3b,signal:0b},9:{ypos:7b,xpos:9b,connMap:5b,id:3b,signal:0b},10:{subID:0b,ypos:15b,xpos:9b,orient:2b,shape:0b,connMap:1b,schedTime:-1L,id:6b,state:0b},11:{ypos:5b,xpos:9b,connMap:5b,id:3b,signal:0b},12:{ypos:4b,xpos:9b,connMap:5b,id:3b,signal:0b},13:{subID:0b,ypos:0b,xpos:9b,orient:0b,shape:0b,connMap:4b,schedTime:-1L,id:6b,state:0b},14:{ypos:3b,xpos:9b,connMap:5b,id:3b,signal:0b},15:{ypos:8b,xpos:9b,connMap:5b,id:3b,signal:0b}]},masks:5s,icw:16b,ich:16b}
    Item Foil: false
    Stacktrace:
    at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)
    at net.minecraft.client.gui.GuiIngame.func_73832_a(GuiIngame.java:955)
    at net.minecraftforge.client.GuiIngameForge.renderHotbar(GuiIngameForge.java:206)
    at net.minecraftforge.client.GuiIngameForge.func_73830_a(GuiIngameForge.java:141)

    -- Affected level --
    Details:
    Level name: MpServer
    All players: 1 total; [EntityClientPlayerMP['Neitzkids'/7, l='MpServer', x=-517.34, y=57.62, z=-125.71]]
    Chunk stats: MultiplayerChunkCache: 624, 633
    Level seed: 0
    Level generator: ID 01 - flat, ver 0. Features enabled: false
    Level generator options:
    Level spawn location: World: (-486,4,-113), Chunk: (at 10,0,15 in -31,-8; contains blocks -496,0,-128 to -481,255,-113), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)
    Level time: 571768 game time, 571768 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: 2 total; [EntityTrail['unknown'/102, l='MpServer', x=-517.34, y=57.62, z=-125.71], EntityClientPlayerMP['Neitzkids'/7, l='MpServer', x=-517.34, y=57.62, z=-125.71]]
    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:373)
    at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:919)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:483)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

    -- System Details --
    Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 7 (amd64) version 6.1
    Java Version: 1.8.0_25, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 320444768 bytes (305 MB) / 684654592 bytes (652 MB) up to 1060372480 bytes (1011 MB)
    JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1492 Optifine OptiFine_1.7.10_HD_U_C1 40 mods loaded, 40 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.05} [Minecraft Coder Pack] (minecraft.jar)
    UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1492-1.7.10.jar)
    UCHIJAAAA Forge{10.13.4.1492} [Minecraft Forge] (forge-1.7.10-10.13.4.1492-1.7.10.jar)
    UCHIJAAAA Aroma1997Core{1.0.2.4} [Aroma1997Core] (minecraft.jar)
    UCHIJAAAA CodeChickenCore{1.0.4.29} [CodeChicken Core] (minecraft.jar)
    UCHIJAAAA NotEnoughItems{1.0.3.74} [Not Enough Items] (Not-Enough-Items-1.7.10.jar)
    UCHIJAAAA BuildCraft|Core{7.0.21} [BuildCraft] (buildcraft-7.0.21.jar)
    UCHIJAAAA BuildCraft|Silicon{7.0.21} [BC Silicon] (buildcraft-7.0.21.jar)
    UCHIJAAAA BuildCraft|Factory{7.0.21} [BC Factory] (buildcraft-7.0.21.jar)
    UCHIJAAAA BuildCraft|Transport{7.0.21} [BC Transport] (buildcraft-7.0.21.jar)
    UCHIJAAAA additionalpipes{4.6.0} [Additional Pipes] (additionalpipes-4.6.1.jar)
    UCHIJAAAA Aroma1997CoreHelper{1.0.2.4} [Aroma1997Core|Helper] (Aroma1997Core-1.7.2.jar)
    UCHIJAAAA Backpack{2.0.1} [Backpack] (Backpacks-Mod.jar)
    UCHIJAAAA BetterChests{1.1.1.1} [BetterChests] (BetterChests-1.7.10-1.1.1.1.jar)
    UCHIJAAAA BuildCraft|Builders{7.0.21} [BC Builders] (buildcraft-7.0.21.jar)
    UCHIJAAAA BuildCraft|Energy{7.0.21} [BC Energy] (buildcraft-7.0.21.jar)
    UCHIJAAAA BuildCraft|Robotics{7.0.21} [BC Robotics] (buildcraft-7.0.21.jar)
    UCHIJAAAA enviromine{1.3.124} [EnviroMine] (EnviroMine-1.3.124.jar)
    UCHIJAAAA iChunUtil{4.1.3} [iChunUtil] (iChun-Util-Mod-1.7.10.jar)
    UCHIJAAAA InfernalMobs{1.6.6} [Infernal Mobs] (InfernalMobs-1.7.10.jar)
    UCHIJAAAA lucky{5.1.0} [Lucky Block] (Lucky-Block-Mod-1.7.10.jar)
    UCHIJAAAA more{4.0} [M-Ore mod] (M-Ore 4.0(1).jar)
    UCHIJAAAA Morph{0.9.1} [Morph] (Morphing-Mod-1.7.10.jar)
    UCHIJAAAA Oceancraft{1.4} [Oceancraft] (Oceancraft-1.4.jar.zip)
    UCHIJAAAA ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    UCHIJAAAA MrTJPCoreMod{1.1.0.27} [MrTJPCore] (MrTJPCore-1.7.10.jar)
    UCHIJAAAA ProjRed|Core{4.7.0pre5.89} [ProjectRed Core] (ProjectRed-Base-1.7.10.jar)
    UCHIJAAAA ProjRed|Transmission{4.7.0pre5.89} [ProjectRed Transmission] (ProjectRed-1.7.10-Integration.jar)
    UCHIJAAAA ProjRed|Exploration{4.7.0pre5.89} [ProjectRed Exploration] (ProjectRed-1.7.10-World.jar)
    UCHIJAAAA ProjRed|Compatibility{4.7.0pre5.89} [ProjectRed Compatibility] (ProjectRed-1.7.10-Compat.jar)
    UCHIJAAAA ProjRed|Integration{4.7.0pre5.89} [ProjectRed Integration] (ProjectRed-1.7.10-Integration.jar)
    UCHIJAAAA ProjRed|Fabrication{4.7.0pre5.89} [ProjectRed Fabrication] (ProjectRed-1.7.10-Fabrication.jar)
    UCHIJAAAA ProjRed|Illumination{4.7.0pre5.89} [ProjectRed Illumination] (ProjectRed-1.7.10-Lighting.jar)
    UCHIJAAAA TooMuchTNT{2.9} [TooMuchTNT] (Too-Much-TNT-Mod-1.7.10.jar)
    UCHIJAAAA worldedit{6.0-beta-01} [WorldEdit] (worldedit-forge-mc1.7.10-6.0-beta-01.jar)
    UCHIJAAAA McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    UCHIJAAAA ForgeRelocation{0.0.1.3} [ForgeRelocation] (ForgeRelocation-1.7.10.jar)
    UCHIJAAAA MCFrames{1.0} [MCFrames] (ForgeRelocation-1.7.10.jar)
    UCHIJAAAA RelocationFMP{0.0.1.2} [RelocationFMP] (ForgeRelocationFMP-1.7.10.jar)
    UCHIJAAAA ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)
    Launched Version: 1.7.10-Forge10.13.4.1492-1.7.10
    LWJGL: 2.9.1
    OpenGL: Intel(R) HD Graphics 3000 GL version 3.1.0 - Build 9.17.10.4229, Intel
    GL Caps: Using GL 1.3 multitexturing.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Anisotropic filtering is supported and maximum anisotropy is 16.
    Shaders are available because OpenGL 2.1 is supported.

    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: [Sphax_ProjectRed_32x.zip] Current Language: English (US)
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Anisotropic Filtering: Off (1)

    Posted in: Java Edition Support
  • 0

    posted a message on Setting Variables using a block
    Quote from marshall7593»

    i would like to know if its possible to create a variable based on a certain block. i think i would need to set a fill clock to test for a block at XYZ. if that XYZ has a certain block it has a certain output. (if iron at 0,64,0 output 2; if gold at 0,64,0 output 7) this would remove the need for HUNDREDS of scoreboard commands and armor stand entities. i think its easier on lack. plus change the variable with /setblock XYZ block. would this work for keeping track of teams/quests logs in a adventure map?

    The key here is lag free i know it can be done with scoreboard commands.



    Quote from Micalobia»

    I played around with it, and the best I could come up with was a fill clock activating a load of testforblock commands. The comparators coming out of them run into repeaters, which go into the line of redstone at certain points. It is better understood with screenshots, and waht I have demenstrated is just for the purpose of showing, this can be expanded.

    Sorry about poor spelling at the end.

    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Setting Variables using a block

    I played around with it, and the best I could come up with was a fill clock activating a load of testforblock commands. The comparators coming out of them run into repeaters, which go into the line of redstone at certain points. It is better understood with screenshots, and waht I have demenstrated is just for the purpose of showing, this can be expanded.

    Sorry about poor spelling at the end.

    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Can a Command Block "testfor" a redstone signal? And more...

    Why can't you just have the current you are working with, have a repeater at the en, and clone the repeater elsewhere? you need a fill clock, but the new repeater will have the same current as the original one. Hope I helped.

    Posted in: Redstone Discussion and Mechanisms
  • To post a comment, please .