Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Stronghold locater written by libraryaddict
- --Formula taken from http://www.reddit.com/user/ItsMartin
- term.clear()
- term.setCursorPos(1,1)
- write("First throw, x: ")
- A6 = tonumber(io.read())
- write("First throw, z: ")
- B6 = tonumber(io.read())
- write("First throw landed at x: ")
- C6 = tonumber(io.read())
- write("First throw landed at z: ")
- D6 = tonumber(io.read())
- write("Second throw, x: ")
- E6 = tonumber(io.read())
- write("Second throw, z: ")
- F6 = tonumber(io.read())
- write("Second throw landed at x: ")
- G6 = tonumber(io.read())
- write("Second throw landed at z: ")
- H6 = tonumber(io.read())
- I6 = ((((A6*D6)-(B6*C6))*(E6-G6))-((A6-C6)*((E6*H6)-(F6*G6))))/(((A6-C6)*(F6-H6))-((B6-D6)*(E6-G6)))
- J6 = ((((A6*D6)-(B6*C6))*(F6-H6))-((B6-D6)*((E6*H6)-(F6*G6))))/(((A6-C6)*(F6-H6))-((B6-D6)*(E6-G6)))
- print("x"..I6..", z"..J6)
Add Comment
Please, Sign In to add comment