Advertisement
Guest User

Untitled

a guest
Sep 16th, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. Func login ($username, $password)
  2. Send($username,True)
  3. Send("{TAB}")
  4. Sleep("500")
  5. Send($password,True)
  6. Sleep("500")
  7. Send("{ENTER}")
  8. Send("{! up}")
  9. EndFunc
  10.  
  11. Func gravitor ()
  12. login("iamthebestyouhaveeverseen@yahoo.com","Pilipenk0")
  13. EndFunc
  14.  
  15. Func xidor ()
  16. login("Andi_rueb@gmx.de","Andreas89")
  17. EndFunc
  18.  
  19. Func phynix ()
  20. login("wwmail7@web.de","VikTorHa")
  21. EndFunc
  22.  
  23. Func gizzii ()
  24. login("paul.gerich@yahoo.de","exigo89")
  25. EndFunc
  26.  
  27. HotKeySet ( "^g" , "gravitor" )
  28. HotKeySet ( "^x" , "xidor" )
  29. HotKeySet ( "^p" , "phynix" )
  30. HotKeySet ( "^z" , "gizzii" )
  31.  
  32. ;;; Clickbot
  33.  
  34. Local $click = False
  35.  
  36. Func click ()
  37. $click = True
  38. EndFunc
  39.  
  40. Func clickEnd ()
  41. $click = False
  42. EndFunc
  43.  
  44. HotKeySet ( "!c" , "click" )
  45. HotKeySet ( "!v" , "clickEnd" )
  46.  
  47. While 1=1
  48. If $click = True Then
  49. MouseClick("left")
  50. Else
  51. Sleep("1000")
  52. EndIf
  53. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement