Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. local start_pos = {}
  2. function init(x, y, z)
  3. start_pos = to_pos(x, y, z)
  4. end
  5.  
  6. function to_pos(x1, y1, z1)
  7. return {x=x1, y=y1, z=z1}
  8. end
  9.  
  10. function goto(position)
  11. -- nothing
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement