Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- rednet.open("back");
- rednet.broadcast("sendReactorMap,1");
- local location;
- local stack;
- local name;
- local damage;
- local d -- a place holder value...
- repeat
- local event, param1, param2, param3 = rednet.receive(3);
- if event == nil then
- event = "nothing";
- end
- if param1 == nil then
- param1 = "nothing";
- end
- if param2 == nil then
- param2 = "nothing";
- end
- if param3 == nil then
- param3 = "nothing";
- end
- print(event .. " " .. param1 .. " " .. param2 .. " " .. param3);
- until name == "end"
- rednet.close("back");
Advertisement
Add Comment
Please, Sign In to add comment