Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- __author__="aacoba"
- function Startup()
- clear
- print("Welkom bij de condenser!")
- print("Author: " .. __author__)
- end
- function defineitems()
- item1="Iron"
- item2="Diamond"
- item3="GoldBlock"
- item1emc=96
- item2emc=8192
- item3emc=18432
- end
- Startup()
- defineitems()
- function ItemStats()
- print("Beschikbare items zijn: ")
- print(item1 .. " " ..item1emc .. " EMC")
- print(item2 .. " " ..item2emc .. " EMC")
- print(item3 .. " " ..item3emc .. " EMC")
- end
- ItemStats()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement