Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function writePos(x,y,text)
- term.setCursorPos(x,y)
- term.write(text)
- end
- function clear(x,y)
- term.clear()
- if x == nil or y == nil then
- term.setCursorPos(1,1)
- else
- term.setCursorPos(x,y)
- end
- end
- local start = 1
- local input1 = 0
- local input2 = 0
- local input3 = 0
- local cursorPos = 1
- local o = {
- 0;
- 0
- }
- local taCoords = {
- 0;
- 0;
- 0
- }
- local tCoords = {
- 0;
- 0;
- 0
- } -- you can change these default values to what you want
- if start == 1 then
- while true do
- clear()
- writePos(1,18,tCoords[1].." "..tCoords[2].." "..tCoords[3])
- writePos(1,1,"Enter bot's coords")
- writePos(2,3,"X:")
- writePos(2,4,"Y:")
- writePos(2,5,"Z:")
- writePos(2,6,"Done")
- writePos(1,2+cursorPos,">")
- for i = 1,#tCoords do
- writePos(5,2+i,tCoords[i])
- end
- event, key = os.pullEvent()
- if key == 200 and cursorPos > 1 then
- cursorPos = cursorPos-1
- elseif key == 208 and cursorPos < 4 then
- cursorPos = cursorPos+1
- elseif key == 28 then
- if cursorPos == 1 then
- term.setCursorPos(5,3)
- local input = read()
- if input == "0" then
- tCoords[1] = 0
- else
- tCoords[1] = tonumber(input)+tCoords[1]
- end
- elseif cursorPos == 2 then
- term.setCursorPos(5,4)
- local input = read()
- if input == "0" then
- tCoords[2] = 0
- else
- tCoords[2] = tonumber(input)+tCoords[2]
- end
- elseif cursorPos == 3 then
- term.setCursorPos(5,5)
- local input = read()
- if input == "0" then
- tCoords[3] = 0
- else
- tCoords[3] = tonumber(input)+tCoords[3]
- end
- elseif cursorPos == 4 then
- input1 = tCoords[1]
- input2 = tCoords[2]
- input3 = tCoords[3]
- break
- end
- end
- end
- writePos(1,17,"Make sure these coordinates are right")
- writePos(1,18,"if they are not press backspace")
- event, key = os.pullEvent()
- if key == 14 then
- os.reboot()
- else
- end
- clear(1,1)
- print("Good, Now what do you want to do?")
- sleep(2)
- clear(1,1)
- writePos(1,2,"---------------------------")
- writePos(1,3," Orbital Strike Mode (1) ")
- writePos(1,4,"---------------------------")
- writePos(1,5," Mining Mode (2) ")
- writePos(1,6,"---------------------------")
- writePos(1,7," Transporting Mode (3) ")
- writePos(1,8,"---------------------------")
- writePos(1,9,"Option: ")
- c1 = io.read()
- if c1 == "1" then
- print("")
- print("-----------------------------------")
- print(" ** * * * * * * ")
- print(" ** * * * * * * / / / ")
- print(" Orbital Strike Mode * / / ")
- print(" * * * * * * * / / ")
- print(" * * Have Fun! * * * / / ")
- print(" * * * * * * / * ")
- print("-----------------------------------")
- sleep(5)
- local cursorPos = 1
- term.clear()
- term.setCursorPos( 1, 1 )
- writePos(1,2,"Make sure your Bot is facing")
- writePos(1,3,"the right way")
- writePos(1,5,"If it's not press backspace")
- event, key = os.pullEvent()
- if key == 14 then
- os.reboot()
- else
- while true do
- clear()
- writePos(1,18,taCoords[1].." "..taCoords[2].." "..taCoords[3])
- writePos(1,1,"How far away is the target?")
- writePos(2,3,"X:")
- writePos(2,4,"Y:")
- writePos(2,5,"Z:")
- writePos(2,6,"Done")
- writePos(1,2+cursorPos,">")
- for i = 1,#taCoords do
- writePos(5,2+i,taCoords[i])
- end
- local input4 = 0
- local input5 = 0
- local input6 = 0
- event, key = os.pullEvent()
- if key == 200 and cursorPos > 1 then
- cursorPos = cursorPos-1
- elseif key == 208 and cursorPos < 4 then
- cursorPos = cursorPos+1
- elseif key == 28 then
- if cursorPos == 1 then
- term.setCursorPos(5,3)
- local input4 = read()
- if input4 == "0" then
- taCoords[1] = 0
- else
- taCoords[1] = tonumber(input)+taCoords[1]
- end
- elseif cursorPos == 2 then
- term.setCursorPos(5,4)
- local input5 = read()
- if input5 == "0" then
- taCoords[2] = 0
- else
- taCoords[2] = tonumber(input)+taCoords[2]
- end
- elseif cursorPos == 3 then
- term.setCursorPos(5,5)
- local input6 = read()
- if input6 == "0" then
- tCoords[3] = 0
- else
- taCoords[3] = tonumber(input)+taCoords[3]
- end
- elseif cursorPos == 4 then
- input4 = taCoords[1]
- input5 = taCoords[2]
- input6 = taCoords[3]
- break
- end
- end
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement