Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Global Vars
- version="0.1 Beta (Broken)"
- --Startup code for directory
- if(fs.exists("/bank/")) then
- print("Bank Directory exsits, skipping Create code!")
- else
- fs.makeDir("/bank")
- end
- sleep(2)
- --end
- --Money declorations
- money="0"
- local account_money=money
- --end
- --main loop
- while(true) do
- if money~="0" then
- account_money=money
- money="0"
- end
- term.clear()
- term.setCursorPos(1,1)
- print("Money Server "..version)
- print("")
- print("Please note, this is monitored 24/7")
- write("Account name: ")
- account=read()
- if(account) then
- if(fs.exists("bank/"..account)) then
- file1 = fs.open("bank/"..account,"w")
- file1.writeLine("1000")
- if(file1.readLine()~="") then
- account_money1=file1.readLine()
- end
- end
- file1.close("bank/"..account)
- print(account.." contains $"..account_money1)
- write("Edit? ")
- ans=read()
- if(ans=="yes") then
- write("Amount to withdraw: ")
- money=money-read()
- local file = fs.open("bank/"..account,"w")
- --file.clear("bank/"..account)
- file.writeLine(money)
- file.close("bank/"..account)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement