Posted 27 January 2013 - 10:16 AM
I have noticed an issue with 1.4 I have programs that I have set up to always be on (wireless redstone signal and such) when you walk away allowing the chunk to become unloaded (go to nether) when you come back you have to access the pc to get it to start this does not work for a jukebox located underground or for a turtle that is next to a tree that is surrounded in water.
Here is my startup program for my turtle
and here is the one for my Music Player which also plays the music
If my code is the issue then please let me know otherwise does anyone know why this is happening?
Here is my startup program for my turtle
Spoiler
os.pullEvent()
event = "rednet_message"
p1 = senderID
p2 = message
term.clear()
term.setCursorPos(1,1)
print("Waiting for Instructions")
repeat
rednet.open("right")
local event,p1,p2 = os.pullEvent()
if event=="rednet_message" then
if p2 == "treefarm" then
shell.run("treefarm", p1)
end
end
until event=="char" and p1=="x"
Spoiler
os.pullEvent()
event = "rednet_message"
p1 = senderID
p2 = message
term.clear()
term.setCursorPos(1,1)
print("Waiting for Instructions")
repeat
rednet.open("top")
local event,p1,p2 = os.pullEvent()
if event=="rednet_message" then
if p1 == 5 then
shell.run("dj", "play", p2)
end
end
until event=="char" and p1=="x"
If my code is the issue then please let me know otherwise does anyone know why this is happening?