Posted 24 February 2013 - 04:45 AM
I am using the FTB Direwolf20 v5.1.1 pack.
I was trying to make a program that would control a turtle from a computer depending on what key you pressed while in the computer.
This is what I had so far on the computer:
After some testing I have also found out that not only are turtle and computers inaccessible but all blocks in the game that have an interface when right-clicked. Also, almost all of Redpower2 items are unbreakable and pressing Q to drop an item on the ground does not work. All mobs in the game are stuck in one place and trying to hit them will do nothing. At this point, I am sure that many features of the game are broken.
In a previous post, dan200 stated that a bug very similar to this was fixed in 1.5. In the same thread many people were talking about rednet spending so much time processing that minecraft was not able to process anything else.
Link to thread:
http://www.computercraft.info/forums2/index.php?/topic/10010-147dw20-501-using-rednet-breaks-reality/
I was trying to make a program that would control a turtle from a computer depending on what key you pressed while in the computer.
This is what I had so far on the computer:
rednet.open("right")
event, code = os.pullEvent("key")
while true do
if code == 75 then
rednet.send(30,"Turn Left")
elseif code == 77 then
rednet.send(30,"Turn Right")
elseif code == 76 then
rednet.send(30,"Go Back")
elseif code == 72 then
rednet.send(30,"Go Forward")
elseif code == 200 then
rednet.send(30,"Go Up")
elseif code == 208 then
rednet.send(30,"Go Down")
end
end
And this is what I was testing with on the turtle:
rednet.open("right")
while true do
id, msg = rednet.receive()
print(msg)
end
If I run both of the programs and hit any of the keys that I am detecting then all computers and turtles in the world become inaccessible. Newly placed computers are also inaccessible, unbreakable, and have the wrong texture. Attempting to leave the world will result in a game crash. I have only tested this with the keys on the Number Pad and advanced computers. The only way I know to reproduce this is to paste this code into a turtle and computer.After some testing I have also found out that not only are turtle and computers inaccessible but all blocks in the game that have an interface when right-clicked. Also, almost all of Redpower2 items are unbreakable and pressing Q to drop an item on the ground does not work. All mobs in the game are stuck in one place and trying to hit them will do nothing. At this point, I am sure that many features of the game are broken.
In a previous post, dan200 stated that a bug very similar to this was fixed in 1.5. In the same thread many people were talking about rednet spending so much time processing that minecraft was not able to process anything else.
Link to thread:
http://www.computercraft.info/forums2/index.php?/topic/10010-147dw20-501-using-rednet-breaks-reality/
Edited on 24 February 2013 - 04:14 AM