Advertisement
xXm0dzXx

Untitled

May 30th, 2012
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. --Turtle MiniMap--
  2. local mined = {}
  3. local x,y = term.getSize()
  4.  
  5. local currentX = x/2
  6. local currentY = y/2
  7. local direction = "^"
  8.  
  9.  
  10. function drawCursor()
  11. term.clear() --Clears the screen
  12. for i = 1,#mined do
  13. if mined[i] then
  14. mined[i] = tostring(mined[i])
  15. minedX = string.sub(mined[i], 1, string.find("/")-1)
  16. minedY = string.sub(mined[i], string.find("/")+1, string.len(mined[i]))
  17. term.setCursorPos(minedX,minedY)
  18. write(direction)
  19. end
  20. end
  21. term.setCursorPos(currentX, currentY)
  22. write(direction)
  23. end
  24.  
  25.  
  26. while true do
  27. drawCursor()
  28. local e,key = os.pullEvent( "key" )
  29. if key == 17 or key == 200 then --up
  30. mined[#mined+1] = currentX.. "/" ..currentY
  31. currentY = currentY -1
  32. direction = "^"
  33. elseif key == 31 or key == 208 then --down
  34. mined[#mined+1] = currentX.. "/" ..currentY
  35. currentY = currentY +1
  36. direction = "V"
  37. elseif key == 203 or key == 30 then --left
  38. mined[#mined+1] = currentX.. "/" ..currentY
  39. currentX = currentX -1
  40. direction = "<"
  41. elseif key == 205 or key == 32 then --right
  42. mined[#mined+1] = currentX.. "/" ..currentY
  43. currentX = currentX +1
  44. direction = ">"
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement