Advertisement
aacoba

Untitled

Aug 4th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1.  
  2. __author__="aacoba"
  3.  
  4. function Startup()
  5. clear
  6. print("Welkom bij de condenser!")
  7. print("Author: " .. __author__)
  8.  
  9. end
  10.  
  11.  
  12. function defineitems()
  13. item1="Iron"
  14. item2="Diamond"
  15. item3="GoldBlock"
  16. item1emc=96
  17. item2emc=8192
  18. item3emc=18432
  19. end
  20.  
  21. Startup()
  22. defineitems()
  23.  
  24. function ItemStats()
  25. print("Beschikbare items zijn: ")
  26. print(item1 .. " " ..item1emc .. " EMC")
  27. print(item2 .. " " ..item2emc .. " EMC")
  28. print(item3 .. " " ..item3emc .. " EMC")
  29. end
  30.  
  31. ItemStats()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement