RyuuzakiJulio

StrongHoldFinder

Mar 28th, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.82 KB | None | 0 0
  1. --Stronghold locater written by libraryaddict
  2. --Formula taken from http://www.reddit.com/user/ItsMartin
  3. term.clear()
  4. term.setCursorPos(1,1)
  5. write("First throw, x: ")
  6. A6 = tonumber(io.read())
  7. write("First throw, z: ")
  8. B6 = tonumber(io.read())
  9. write("First throw landed at x: ")
  10. C6 = tonumber(io.read())
  11. write("First throw landed at z: ")
  12. D6 = tonumber(io.read())
  13. write("Second throw, x: ")
  14. E6 = tonumber(io.read())
  15. write("Second throw, z: ")
  16. F6 = tonumber(io.read())
  17. write("Second throw landed at x: ")
  18. G6 = tonumber(io.read())
  19. write("Second throw landed at z: ")
  20. H6 = tonumber(io.read())
  21.  
  22. I6 = ((((A6*D6)-(B6*C6))*(E6-G6))-((A6-C6)*((E6*H6)-(F6*G6))))/(((A6-C6)*(F6-H6))-((B6-D6)*(E6-G6)))
  23. J6 = ((((A6*D6)-(B6*C6))*(F6-H6))-((B6-D6)*((E6*H6)-(F6*G6))))/(((A6-C6)*(F6-H6))-((B6-D6)*(E6-G6)))
  24. print("x"..I6..", z"..J6)
Add Comment
Please, Sign In to add comment