Guest User

House

a guest
May 9th, 2013
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. hx=0 --Home X
  2. hy=0 --Home Y
  3. hz=0 --Home Z
  4. x=0 --Current Pos X
  5. y=0 --Current Pos Y
  6. z=0 --Current Pos Z
  7. d=0 --Direction, N=1,E=2,S=3,W=4
  8. c=0 --Cobble
  9. g=0 --Glass
  10. gs=0 --Glowstone
  11.  
  12. function getPos()
  13. print("Hello!")
  14. print("What is my location?")
  15. print("X: "..read())
  16. x = read()
  17. print("Y: "..read())
  18. y = read()
  19. print("Z: "..read())
  20. z = read()
  21. print("Direction?")
  22. print("North=1, East=2, South=3, West=4")
  23. d=read()
  24. end
  25.  
  26. function goHome()
  27. end
  28.  
  29. function materials()
  30. end
  31.  
  32. function floor()
  33. end
  34.  
  35. function sides()
  36. end
  37.  
  38. function roof()
  39. end
Advertisement
Add Comment
Please, Sign In to add comment