Advertisement
Guest User

Fluffee's TRiBot Account Adder

a guest
Jun 11th, 2015
752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. Gui, Add, GroupBox, x2 y0 w460 h370 +Center, GroupBox
  2. Gui, Add, Text, x2 y20 w460 h20 +Center, Fluffee's TRiBot Account Adder V1.00
  3. Gui, Add, Edit, x12 y90 w450 h40 vAccountPath, Enter Account Path Here
  4. Gui, Add, Text, x12 y50 w450 h30 +Center, Account Path
  5. Gui, Add, Text, x15 y140 w450 h30 +Center, World Path
  6. Gui, Add, Edit, x15 y180 w450 h40 vWorldPath, Enter World Path Here
  7. Gui, Add, Button, x190 y230 w100 h40 , Start
  8. ; Generated using SmartGUI Creator 4.0
  9. Gui, Show, x127 y87 h282 w484, New GUI Window
  10. Return
  11.  
  12. GuiClose:
  13. ExitApp
  14.  
  15. ButtonStart:
  16. Gui, Submit
  17. Return
  18.  
  19. #Include tf.ahk
  20.  
  21. F2::
  22. MsgBox, %WorldPath%, %AccountPath%
  23. Return
  24.  
  25. F1::
  26. ; Loading Worlds List, Account to start with and fixes account file
  27. WorldNumber = 1
  28. AccountNumber = 1
  29. Loop, read, %WorldPath%
  30. Worlds := A_Index
  31. Loop, read, %AccountPath%
  32. Accounts := A_Index
  33. ; Accounts := TF_CountLines(%AccountPath%)
  34. Accounts := Accounts
  35.  
  36. Loop, %Accounts%
  37.  
  38. {
  39. FileReadLine, Account, %AccountPath%, %AccountNumber%
  40.  
  41. ; Splits Accounts Passwords Pins and Reward
  42. sleep, 500
  43. StringSplit, Test1, Account, :,
  44.  
  45. ; Enters Account Name
  46. Send {space}
  47. sleep, 500
  48. Send {Backspace}
  49. sleep, 500
  50. Send %Test11%
  51. sleep, 500
  52. Send {tab}
  53.  
  54. ; Enters Password
  55. Send %Test12%
  56. sleep, 500
  57. Send {tab}
  58.  
  59. ; Enters Bank Pin (If Exists)
  60. Send %Test13%
  61. sleep, 500
  62. Send {tab}
  63.  
  64. ; Enters World Number
  65. FileReadLine, World, %WorldPath%, %WorldNumber%
  66. sleep, 500
  67. Send %World%
  68. sleep, 500
  69. Send {Tab}
  70.  
  71. ; Enters Reward
  72. sleep, 500
  73. Send %Test14%
  74. Send {tab}
  75. sleep, 500
  76.  
  77. ; Saves Account
  78. Send {Space}
  79. sleep, 500
  80. WorldNumber := WorldNumber + 1
  81. If (WorldNumber > Worlds)
  82. WorldNumber = 1
  83. AccountNumber := AccountNumber + 1
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement