Guest User

Untitled

a guest
May 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setacc2:
  2. TextWindow.Clear()
  3. TextWindow.WriteLine("Account Name: ")
  4. acc2 = TextWindow.Read()
  5. File.WriteLine("C:/101/788.data", 1, "" + acc2 + "")
  6. TextWindow.WriteLine("Login: ")
  7. log2 = TextWindow.Read()
  8. File.WriteLine("C:/101/788.data", 2, "" + log2 + "")
  9. TextWindow.WriteLine("Password: ")
  10. pass2 = TextWindow.Read()
  11. File.WriteLine("C:/101/788.data", 3, "" + pass2 + "")
  12. TextWindow.WriteLine("Account: " + acc2 + " ")
  13. TextWindow.WriteLine("Login: " + log2 + " ")
  14. TextWindow.WriteLine("Password: " + pass2 + " ")
  15. TextWindow.WriteLine("Correct? (Y/N)")
  16. acc2ver = TextWindow.Read()
  17. If acc2ver = "Y" Then
  18.   Goto accsav
  19. Else
  20.   Goto acc2else
  21. EndIf
  22. acc2else:
  23. If acc2ver = "N" Then
  24.   Goto setacc2
  25. EndIf
  26.  
  27. setacc3:
  28. TextWindow.Clear()
  29. TextWindow.WriteLine("Account Name: ")
  30. acc3 = TextWindow.Read()
  31. File.WriteLine("C:/101/789.data", 1, "" + acc3 + "")
  32. TextWindow.WriteLine("Login: ")
  33. log3 = TextWindow.Read()
  34. File.WriteLine("C:/101/789.data", 2, "" + log3 + "")
  35. TextWindow.WriteLine("Password: ")
  36. pass3 = TextWindow.Read()
  37. File.WriteLine("C:/101/789.data", 3, "" + pass3 + "")
  38. TextWindow.WriteLine("Account: " + acc3 + " ")
  39. TextWindow.WriteLine("Login: " + log3 + " ")
  40. TextWindow.WriteLine("Password: " + pass3 + " ")
  41. TextWindow.WriteLine("Correct? (Y/N)")
  42. acc3ver = TextWindow.Read()
  43. If acc3ver = "Y" Then
  44.   Goto accsav
  45. Else
  46. EndIf
  47. If acc3ver = "N" Then
  48.   Goto setacc3
  49. EndIf
Add Comment
Please, Sign In to add comment