Advertisement
Guest User

A.T.M By dvd604

a guest
Sep 23rd, 2012
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. --Global Vars
  2. version="0.1 Beta (Broken)"
  3.  
  4. --Startup code for directory
  5.  
  6. if(fs.exists("/bank/")) then
  7. print("Bank Directory exsits, skipping Create code!")
  8. else
  9. fs.makeDir("/bank")
  10. end
  11. sleep(2)
  12.  
  13. --end
  14.  
  15. --Money declorations
  16. money="0"
  17. local account_money=money
  18. --end
  19.  
  20. --main loop
  21. while(true) do
  22. if money~="0" then
  23. account_money=money
  24. money="0"
  25. end
  26. term.clear()
  27. term.setCursorPos(1,1)
  28. print("Money Server "..version)
  29. print("")
  30. print("Please note, this is monitored 24/7")
  31. write("Account name: ")
  32. account=read()
  33. if(account) then
  34. if(fs.exists("bank/"..account)) then
  35. file1 = fs.open("bank/"..account,"w")
  36. file1.writeLine("1000")
  37. if(file1.readLine()~="") then
  38. account_money1=file1.readLine()
  39. end
  40. end
  41. file1.close("bank/"..account)
  42. print(account.." contains $"..account_money1)
  43. write("Edit? ")
  44. ans=read()
  45. if(ans=="yes") then
  46. write("Amount to withdraw: ")
  47. money=money-read()
  48. local file = fs.open("bank/"..account,"w")
  49. --file.clear("bank/"..account)
  50. file.writeLine(money)
  51. file.close("bank/"..account)
  52. end
  53. end
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement