Posted 05 March 2013 - 06:23 PM
Title Melee turtle remote reactivation
AM complete newbie at computercraft been using for two days
have just started Using direwolf20's mod pack. I set up a modded mob grinding xp farm using 8 melee turtles in a square around a 3x3 square drop.
TTBB
BXXXT
TXXXT PC
TXXXJ
BBTT
T = Turtle
B = Block
X = drop area
J = Exp collector
PC = master control PC
the thing is everytime the server shuts down i have to restart each of the 8 turtles manually
each turtle has a wireless modem but when i have tried to use a master computer with modem nearby the turtles just sit there
Main computer program "Wake" is as follows
rednet.open("right")
print("Enter ID of sender: ")
id = read()
print("What would you like to send: ")
msg = read()
rednet.send(id, msg)
at the turtle i have the following program "Wake"
id, msg = rednet.receive()
print(msg)
if msg == "kill" then
shell.run("combat")
Am I missing something?
AM complete newbie at computercraft been using for two days
have just started Using direwolf20's mod pack. I set up a modded mob grinding xp farm using 8 melee turtles in a square around a 3x3 square drop.
TTBB
BXXXT
TXXXT PC
TXXXJ
BBTT
T = Turtle
B = Block
X = drop area
J = Exp collector
PC = master control PC
the thing is everytime the server shuts down i have to restart each of the 8 turtles manually
each turtle has a wireless modem but when i have tried to use a master computer with modem nearby the turtles just sit there
Main computer program "Wake" is as follows
rednet.open("right")
print("Enter ID of sender: ")
id = read()
print("What would you like to send: ")
msg = read()
rednet.send(id, msg)
at the turtle i have the following program "Wake"
id, msg = rednet.receive()
print(msg)
if msg == "kill" then
shell.run("combat")
Am I missing something?