Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --the idea of this one is to act as a local atm, where you can only use your account on this machine, and can only withdraw and deposit money into this machine
- --settings
- settings_adminid = "ADMIN"
- settings_allowNewAccounts = true
- settings_bankName = "Local Bank"
- settings_cardEncryptionKey = 3.5
- settings_cardside = "SIDE"
- settings_
- --varibles
- storedcash = 100
- acceptedcurrency_Single = "Credit"
- acceptcurrency_Multiple = "Credits"
- --main program
- start()
- function start()
- print("system booting")
- print("checking settings")
- print("allow new accounts = ",settings_allowNewAccounts)
- print("allow new accounts = ",settings_allowNewAccounts)
- print("system online, starting main program")
- print("this ATM is the property of ",settings_bankName)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement