Guest User

Untitled

a guest
May 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setacc1:
  2. TextWindow.Clear()
  3. TextWindow.WriteLine("Account Name: ")
  4. acc1 = TextWindow.Read()
  5. File.WriteLine("C:/101/787.data", 1, "" + acc1 + "")
  6. TextWindow.WriteLine("Login: ")
  7. log1 = TextWindow.Read()
  8. File.WriteLine("C:/101/787.data", 2, "" + log1 + "")
  9. TextWindow.WriteLine("Password: ")
  10. pass1 = TextWindow.Read()
  11. File.WriteLine("C:/101/787.data", 3, "" + pass1 + "")
  12. TextWindow.WriteLine("Account: " + acc1 + " ")
  13. TextWindow.WriteLine("Login: " + log1 + " ")
  14. TextWindow.WriteLine("Password: " + pass1 + " ")
  15. TextWindow.WriteLine("Correct? (Y/N)")
  16. acc1ver = TextWindow.Read()
  17. If acc1ver = "Y" Then
  18.   Goto accsav
  19. Else
  20.   Goto acc1else
  21. EndIf
  22. acc1else:
  23. If acc1ver = "N" Then
  24.   Goto setacc1
  25. EndIf
Add Comment
Please, Sign In to add comment