Advertisement
Guest User

dial

a guest
Dec 5th, 2013
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.00 KB | None | 0 0
  1. sleep(2)
  2. m=peripheral.wrap("top")--sets the monitor to the top side
  3. gate=peripheral.wrap("stargate_1")-- wrap the gate connected by wired modem
  4. local net="right" -- set the side of the rednet cable
  5.  
  6. term.clear()
  7. term.setCursorPos(1,1)
  8. print("Super Gate Dialer v0.91")
  9. print("made by Landstryder")
  10. m.clear()
  11. m.setCursorPos(1,1)
  12. m.write("Gate Dialer Online")
  13.  
  14. --Put your gate addresses in below
  15. local ads={"urnonba","nqqymaa","iiaanga","nalzmha","qmjcnfa","amnumja","ocpbnka","lamnmpa","hiaanqa","dixfnba"}
  16. local adname={"Anchent Base","The Nether","name","name","name","name","name","name","name","name","name","name","name","name","name"}
  17. --
  18.  
  19. local c={1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384}
  20. local cc={"White","Orange","Magenta","Light Blue","Yellow","Lime","Pink","Gray","Light Gray","Cyan","Purple","Blue","Brown","Green","Red"}
  21. m.setCursorPos(1,2)
  22. m.write("current address library:")
  23.  
  24. function listgate()
  25. for it=1,#ads do
  26.  if adname[it]=="name" then
  27.   ad = ads[it]
  28.  else
  29.   ad = adname[it]
  30.  end
  31.  
  32.  m.setCursorPos(1,it+2)
  33.  
  34.  if m.isColor() then
  35.   m.setTextColor(c[it])
  36.   m.write(ad.." on "..cc[it])
  37.   m.setTextColor(1)
  38.  else
  39.   m.write(ad.." on "..cc[it])
  40.  end
  41. end
  42. end
  43.  
  44. listgate()
  45.  
  46. while true do
  47. if rs.getBundledInput(net)>0 then
  48.  if rs.testBundledInput(net,32768) then
  49.  gate.disconnect()
  50.  sleep(1)
  51.  else
  52.  for it=1,#ads do
  53.   if rs.testBundledInput(net,c[it]) then
  54.  gate.connect(ads[it])
  55.  m.clear()
  56.  m.setCursorPos(1,1)
  57.  m.write("connecting to...")
  58.  m.setCursorPos(2,2)
  59.  if adname[it]=="name" then
  60.   m.write("gate address "..ads[it])
  61.  else
  62.   m.write(adname[it])
  63.  end
  64.  m.setCursorPos(3,3)
  65.  m.write("CHEVRON")
  66.  m.setCursorPos(3,5)
  67.  m.write("ENCODED")
  68.  
  69.  while not gate.isConnected() do
  70.   m.setCursorPos(6,4)
  71.   m.clearLine()
  72.   m.write(gate.getLockedChevronCount())
  73.   sleep(0.3)
  74.  end
  75.  m.setCursorPos(3,7)
  76.  m.write("GATE CONNECTED")
  77.  sleep(4)
  78.  m.clear()
  79.  m.setCursorPos(1,1)
  80.  m.write("Gate Dialer Online")
  81.  listgate()
  82.  end
  83.  end
  84.  end
  85. end
  86. sleep(1)
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement