

ComputerCraft Beta Versions - Download and Discussion (1.74pr37, released June 22nd)
#21
Posted 29 January 2014 - 06:16 PM
On sidenote Portable Computer screen is 26x20 - thats interesting size to work with ;D
#22
Posted 29 January 2014 - 07:13 PM
#23
Posted 30 January 2014 - 05:18 AM
Edited by ElvishJerricco, 30 January 2014 - 05:19 AM.
#24
Posted 30 January 2014 - 05:23 AM
ElvishJerricco, on 30 January 2014 - 05:18 AM, said:
#25
Posted 30 January 2014 - 06:08 AM
theoriginalbit, on 30 January 2014 - 05:23 AM, said:
ElvishJerricco, on 30 January 2014 - 05:18 AM, said:
Ah. Must've misread the code. Didn't see the propagation stuff.
#26
Posted 30 January 2014 - 06:10 AM
#27
Posted 30 January 2014 - 07:40 AM
ElvishJerricco, on 30 January 2014 - 05:18 AM, said:
The chance of a collision is one in 2 billion. Should I also add code to protect against an asteroid hitting the earth and destroying your PC? the odds are comparable.
#29
Posted 30 January 2014 - 09:44 AM
#30
Posted 30 January 2014 - 11:44 AM
#31
Posted 30 January 2014 - 12:24 PM
#32
Posted 30 January 2014 - 12:36 PM
and why gave dan200 not the mod Project Red the connection for the computers? Project Red Builds on the original mod RedPower. I wish he gave the connection for the Bundled Cable from the mod Project Red
#33
Posted 30 January 2014 - 01:23 PM
#34
Posted 30 January 2014 - 01:33 PM
#35
Posted 30 January 2014 - 02:34 PM
java.lang.NoSuchMethodError: net.minecraft.world.IBlockAccess.func_72800_K()I
at dan200.computercraft.shared.util.RedstoneUtil.getBlock(RedstoneUtil.java:19)
at dan200.computercraft.shared.util.RedstoneUtil.getRedstoneOutput(RedstoneUtil.java:30)
at dan200.computercraft.shared.computer.blocks.TileComputerBase.updateInput(TileComputerBase.java:217)
at dan200.computercraft.shared.computer.blocks.TileComputerBase.getServerComputer(TileComputerBase.java:286)
at dan200.computercraft.shared.computer.blocks.TileComputerBase.updateInput(TileComputerBase.java:207)
at dan200.computercraft.shared.computer.blocks.BlockComputerBase.updateInput(BlockComputerBase.java:96)
at dan200.computercraft.shared.computer.blocks.BlockComputerBase.func_71861_g(BlockComputerBase.java:32)
at net.minecraft.world.chunk.Chunk.func_76592_a(Chunk.java:758)
at net.minecraft.world.World.func_72832_d(World.java:559)
at net.minecraft.item.ItemBlock.placeBlockAt(ItemBlock.java:241)
at dan200.computercraft.shared.computer.items.ItemComputer.placeBlockAt(ItemComputer.java:66)
at net.minecraft.item.ItemBlock.func_77648_a(ItemBlock.java:119)
at net.minecraft.item.ItemStack.func_77943_a(ItemStack.java:153)
at net.minecraft.item.ItemInWorldManager.func_73078_a(ItemInWorldManager.java:434)
at net.minecraft.network.NetServerHandler.func_72472_a(NetServerHandler.java:556)
at net.minecraft.network.packet.Packet15Place.func_73279_a(SourceFile:58)
at net.minecraft.network.TcpConnection.func_74428_b(TcpConnection.java:462)
at net.minecraft.network.NetServerHandler.func_72570_d(NetServerHandler.java:141)
at net.minecraft.network.NetworkListenThread.func_71747_b(NetworkListenThread.java:54)
at net.minecraft.server.dedicated.DedicatedServerListenThread.func_71747_b(SourceFile:30)
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:691)
at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:276)
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:587)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:583)
#36
Posted 31 January 2014 - 11:16 PM
Basically remove this line
if sModem ~= sOtherModem then
peripheral.call( sOtherModem, "transmit", rednet.CHANNEL_REPEAT, nReplyChannel, tMessage )
peripheral.call( sOtherModem, "transmit", tMessage.nRecipient, nReplyChannel, tMessage )
end
--and replace it with
peripheral.call( sOtherModem, "transmit", rednet.CHANNEL_REPEAT, nReplyChannel, tMessage )
peripheral.call( sOtherModem, "transmit", tMessage.nRecipient, nReplyChannel, tMessage )
I don't know what your plans are, but that is my long suggestion.
My short suggestion is why not just use a time, day, sender stamp on messages to determine duplicates. I am guessing there is a reason, but I would just like to know!
Edit: Sorry if the post looks bad... Editor is lagging out, not recognising all key strokes, and the code option seems to not work opens fine, but clicking ok does nothing.
Edited by Devon The Novice, 31 January 2014 - 11:21 PM.
#37
Posted 01 February 2014 - 02:19 AM
mr_taito, on 30 January 2014 - 02:34 PM, said:
java.lang.NoSuchMethodError: net.minecraft.world.IBlockAccess.func_72800_K()I
at dan200.computercraft.shared.util.RedstoneUtil.getBlock(RedstoneUtil.java:19)
at dan200.computercraft.shared.util.RedstoneUtil.getRedstoneOutput(RedstoneUtil.java:30)
at dan200.computercraft.shared.computer.blocks.TileComputerBase.updateInput(TileComputerBase.java:217)
at dan200.computercraft.shared.computer.blocks.TileComputerBase.getServerComputer(TileComputerBase.java:286)
at dan200.computercraft.shared.computer.blocks.TileComputerBase.updateInput(TileComputerBase.java:207)
at dan200.computercraft.shared.computer.blocks.BlockComputerBase.updateInput(BlockComputerBase.java:96)
at dan200.computercraft.shared.computer.blocks.BlockComputerBase.func_71861_g(BlockComputerBase.java:32)
at net.minecraft.world.chunk.Chunk.func_76592_a(Chunk.java:758)
at net.minecraft.world.World.func_72832_d(World.java:559)
at net.minecraft.item.ItemBlock.placeBlockAt(ItemBlock.java:241)
at dan200.computercraft.shared.computer.items.ItemComputer.placeBlockAt(ItemComputer.java:66)
at net.minecraft.item.ItemBlock.func_77648_a(ItemBlock.java:119)
at net.minecraft.item.ItemStack.func_77943_a(ItemStack.java:153)
at net.minecraft.item.ItemInWorldManager.func_73078_a(ItemInWorldManager.java:434)
at net.minecraft.network.NetServerHandler.func_72472_a(NetServerHandler.java:556)
at net.minecraft.network.packet.Packet15Place.func_73279_a(SourceFile:58)
at net.minecraft.network.TcpConnection.func_74428_b(TcpConnection.java:462)
at net.minecraft.network.NetServerHandler.func_72570_d(NetServerHandler.java:141)
at net.minecraft.network.NetworkListenThread.func_71747_b(NetworkListenThread.java:54)
at net.minecraft.server.dedicated.DedicatedServerListenThread.func_71747_b(SourceFile:30)
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:691)
at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:276)
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:587)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:484)
at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:583)
I got this too, my guess is that something that was unnamed or differently named in forge before, is now changed. So it's a forge version issue, that's my guess anyway. If only running a Forge server was just downloading a Jar like it used to be, these days it's a pain. I'll let you know when I've got a working forge version and will edit this post.
Update: This method is the getHeight method, still looking for changes recently.
Edited by NeverCast, 01 February 2014 - 02:23 AM.
#38
Posted 01 February 2014 - 02:42 AM
AmandaC, on 29 January 2014 - 07:13 PM, said:
I'd love buzzers!
#39
Posted 01 February 2014 - 06:00 AM
Wow. OneClickVPN is quick! (Yes, Im from HK and Im using HK VPN)
Btw I hope to finally participate after spring 2013
#40
Posted 01 February 2014 - 10:00 AM
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users