Advertisement
joshf67

Test2.1

Aug 31st, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. function writePos(x,y,text)
  2. term.setCursorPos(x,y)
  3. term.write(text)
  4. end
  5. function clear(x,y)
  6. term.clear()
  7. if x == nil or y == nil then
  8. term.setCursorPos(1,1)
  9. else
  10. term.setCursorPos(x,y)
  11. end
  12. end
  13. local start = 1
  14. local input1 = 0
  15. local input2 = 0
  16. local input3 = 0
  17. local cursorPos = 1
  18. local o = {
  19. 0;
  20. 0
  21. }
  22. local taCoords = {
  23. 0;
  24. 0;
  25. 0
  26. }
  27. local tCoords = {
  28. 0;
  29. 0;
  30. 0
  31. } -- you can change these default values to what you want
  32. if start == 1 then
  33. while true do
  34. clear()
  35. writePos(1,18,tCoords[1].." "..tCoords[2].." "..tCoords[3])
  36. writePos(1,1,"Enter bot's coords")
  37. writePos(2,3,"X:")
  38. writePos(2,4,"Y:")
  39. writePos(2,5,"Z:")
  40. writePos(2,6,"Done")
  41. writePos(1,2+cursorPos,">")
  42. for i = 1,#tCoords do
  43. writePos(5,2+i,tCoords[i])
  44. end
  45. event, key = os.pullEvent()
  46. if key == 200 and cursorPos > 1 then
  47. cursorPos = cursorPos-1
  48. elseif key == 208 and cursorPos < 4 then
  49. cursorPos = cursorPos+1
  50. elseif key == 28 then
  51. if cursorPos == 1 then
  52. term.setCursorPos(5,3)
  53. local input = read()
  54. if input == "0" then
  55. tCoords[1] = 0
  56. else
  57. tCoords[1] = tonumber(input)+tCoords[1]
  58. end
  59. elseif cursorPos == 2 then
  60. term.setCursorPos(5,4)
  61. local input = read()
  62. if input == "0" then
  63. tCoords[2] = 0
  64. else
  65. tCoords[2] = tonumber(input)+tCoords[2]
  66. end
  67. elseif cursorPos == 3 then
  68. term.setCursorPos(5,5)
  69. local input = read()
  70. if input == "0" then
  71. tCoords[3] = 0
  72. else
  73. tCoords[3] = tonumber(input)+tCoords[3]
  74. end
  75. elseif cursorPos == 4 then
  76. input1 = tCoords[1]
  77. input2 = tCoords[2]
  78. input3 = tCoords[3]
  79. break
  80. end
  81. end
  82. end
  83. writePos(1,17,"Make sure these coordinates are right")
  84. writePos(1,18,"if they are not press backspace")
  85. event, key = os.pullEvent()
  86. if key == 14 then
  87. os.reboot()
  88. else
  89. end
  90. clear(1,1)
  91. print("Good, Now what do you want to do?")
  92. sleep(2)
  93. clear(1,1)
  94. writePos(1,2,"---------------------------")
  95. writePos(1,3," Orbital Strike Mode (1) ")
  96. writePos(1,4,"---------------------------")
  97. writePos(1,5," Mining Mode (2) ")
  98. writePos(1,6,"---------------------------")
  99. writePos(1,7," Transporting Mode (3) ")
  100. writePos(1,8,"---------------------------")
  101. writePos(1,9,"Option: ")
  102. c1 = io.read()
  103.  
  104. if c1 == "1" then
  105. print("")
  106. print("-----------------------------------")
  107. print(" ** * * * * * * ")
  108. print(" ** * * * * * * / / / ")
  109. print(" Orbital Strike Mode * / / ")
  110. print(" * * * * * * * / / ")
  111. print(" * * Have Fun! * * * / / ")
  112. print(" * * * * * * / * ")
  113. print("-----------------------------------")
  114. sleep(5)
  115. local cursorPos = 1
  116. term.clear()
  117. term.setCursorPos( 1, 1 )
  118. writePos(1,2,"Make sure your Bot is facing")
  119. writePos(1,3,"the right way")
  120. writePos(1,5,"If it's not press backspace")
  121. event, key = os.pullEvent()
  122. if key == 14 then
  123. os.reboot()
  124. else
  125. while true do
  126. clear()
  127. writePos(1,18,taCoords[1].." "..taCoords[2].." "..taCoords[3])
  128. writePos(1,1,"How far away is the target?")
  129. writePos(2,3,"X:")
  130. writePos(2,4,"Y:")
  131. writePos(2,5,"Z:")
  132. writePos(2,6,"Done")
  133. writePos(1,2+cursorPos,">")
  134. for i = 1,#taCoords do
  135. writePos(5,2+i,taCoords[i])
  136. end
  137. local input4 = 0
  138. local input5 = 0
  139. local input6 = 0
  140. event, key = os.pullEvent()
  141. if key == 200 and cursorPos > 1 then
  142. cursorPos = cursorPos-1
  143. elseif key == 208 and cursorPos < 4 then
  144. cursorPos = cursorPos+1
  145. elseif key == 28 then
  146. if cursorPos == 1 then
  147. term.setCursorPos(5,3)
  148. local input4 = read()
  149. if input4 == "0" then
  150. taCoords[1] = 0
  151. else
  152. taCoords[1] = tonumber(input)+taCoords[1]
  153. end
  154. elseif cursorPos == 2 then
  155. term.setCursorPos(5,4)
  156. local input5 = read()
  157. if input5 == "0" then
  158. taCoords[2] = 0
  159. else
  160. taCoords[2] = tonumber(input)+taCoords[2]
  161. end
  162. elseif cursorPos == 3 then
  163. term.setCursorPos(5,5)
  164. local input6 = read()
  165. if input6 == "0" then
  166. tCoords[3] = 0
  167. else
  168. taCoords[3] = tonumber(input)+taCoords[3]
  169. end
  170. elseif cursorPos == 4 then
  171. input4 = taCoords[1]
  172. input5 = taCoords[2]
  173. input6 = taCoords[3]
  174. break
  175. end
  176. end
  177. end
  178.  
  179.  
  180.  
  181.  
  182.  
  183. end
  184.  
  185. end
  186. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement