Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --pastebin run ay1qX2vy
- local CX = 2
- local CY = 20
- local CZ = -50
- local fov = 100
- local monitor = peripheral.find("monitor")
- local function goto(x,y, z)
- monitor.setCursorPos((fov * ((x + CX) / (z + CZ ))), (fov * ((y + CY) / (z + CZ )) ))
- print(((fov * ((x + CX) / (z + CZ ))), (fov * ((y + CY) / (z + CZ )) )))
- monitor.write("A")
- end
- monitor.clear()
- goto(20, 20, 40)
- goto(20, 20, 60)
- goto(0,20, 80)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement