waadidas1

Untitled

Aug 14th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.83 KB | None | 0 0
  1. -- repost =)
  2.  
  3.  
  4.  
  5. --um das spiel zu speichern in fs.open speichern
  6. -- das Geld
  7. geld = 0
  8. --/ das Geld
  9.  
  10.  
  11. -- Hauptwelt
  12.  
  13. welt = window.create(term.current(),1,1,51,23)
  14. welt.setBackgroundColor(colors.blue)
  15. welt.clear()
  16. welt.setCursorPos(5,8)
  17. welt.write("x")
  18. welt.setCursorPos(2,10)
  19. welt.setTextColor(colors.black)
  20. welt.write("X")
  21. --/Hauptwelt
  22.  
  23.  
  24.  
  25. --char
  26. ped = window.create(term.current(),22,7,10,6)
  27. ped.setBackgroundColor(colors.brown)
  28. ped.clear()
  29. ped.setCursorPos(2,2)
  30. ped.write("(O).(O)")
  31. ped.setCursorPos(3,4)
  32. ped.write("____/")
  33. ped.setCursorPos(4,3)
  34. ped.write("<")
  35.  
  36. --/char
  37.  
  38.  
  39.  
  40. --Dollar anzeige
  41. w = window.create(term.current(),1,16,30,4)
  42. w.setBackgroundColor(colors.green)
  43. w.clear()
  44. w.setCursorPos(1,1)
  45. w.write("Money: ")
  46. w.setCursorPos(1,3)
  47. w.write(geld)
  48. w.setCursorPos(7,3)
  49. w.write("$")
  50. --/dollar anzeige
Advertisement
Add Comment
Please, Sign In to add comment