Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Icon 0.83 KB | None | 0 0
  1.  
  2. $client = WinGetPos("PvP.net-Client")
  3. ToolTip("Click Bot Started"&@CRLF&"Exit >> F1",0,0,"League of Legends",1,1)
  4. HotKeySet("{F1}","_Exit")
  5.  
  6. While 1
  7.     todo()
  8. WEnd
  9.  
  10.  
  11. Func todo()
  12.         _winac()
  13.         _sleep()
  14.         If IsArray($client) Then _click()
  15. EndFunc
  16.  
  17. Func _sleep()
  18.     Sleep(5000)
  19. EndFunc
  20.  
  21. Func _winac()
  22.     WinActivate("PvP.net-Client","")
  23. EndFunc
  24.  
  25. Func _Exit()
  26.     ToolTip("Click Bot Stopped",0,0,"League of Legends",1,1)
  27.     Sleep(2000)
  28.     Exit
  29. EndFunc
  30.  
  31. Func _click()
  32.     MouseClick("Left",$client[0]+860,$client[1]+60,1);shop
  33.         _sleep()
  34.     MouseClick("Left",$client[0]+270,$client[1]+150,1);champs
  35.         _sleep()
  36.     MouseClick("Left",$client[0]+950,$client[1]+60,1); profil
  37.         _sleep()
  38.     MouseClick("Left",$client[0]+470,$client[1]+180,1);spiel historie
  39.         _sleep()
  40.     MouseClick("Left",$client[0]+80,$client[1]+40,1) ; lol button
  41.         _sleep()
  42. EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement