Advertisement
Guest User

Fluffee's TRiBot Proxy Adder

a guest
Mar 15th, 2016
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. Gui, Add, GroupBox, x2 y0 w460 h370 +Center,
  2. Gui, Add, Text, x2 y20 w460 h20 +Center, Fluffee's TRiBot Proxy Adder V1.00
  3.  
  4. Gui, Add, Edit, x12 y90 w450 h40 vProxyPath, Enter Proxy Path Here
  5. Gui, Add, Text, x12 y50 w450 h30 +Center, Proxy Path
  6.  
  7.  
  8. Gui, Add, Button, x190 y230 w100 h40 , Start
  9. ; Generated using SmartGUI Creator 4.0
  10. Gui, Show, x127 y87 h282 w484, New GUI Window
  11.  
  12. Return
  13.  
  14.  
  15. GuiClose:
  16.  
  17. ExitApp
  18.  
  19. ButtonStart:
  20. Gui, Submit
  21. ; Loading Worlds List, Account to start with and fixes account file
  22. ProxyNumber = 1
  23. Loop, read, %ProxyPath%
  24. Proxies := A_Index
  25. Proxies := Proxies
  26.  
  27. Loop, %Proxies%
  28. {
  29. FileReadLine, Proxy, %ProxyPath%, %ProxyNumber%
  30.  
  31. ; Splits Accounts Passwords Pins and Reward
  32. sleep, 100
  33. StringSplit, Test1, Proxy, `,,
  34.  
  35. ; Enters Account Name
  36. FileAppend, %Test11%||%Test12%||%Test13%||%Test14%`n, %AppData%\.tribot\settings\proxies.ini
  37. ProxyNumber := ProxyNumber + 1
  38. }
  39. MsgBox, "Done!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement