Advertisement
CivReborn

temp paste speed clicker

Dec 4th, 2017
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #SingleInstance,Force
  2. #MaxThreadsPerHotkey,2
  3. SetMouseDelay,-1
  4. SetBatchLines,-1
  5.  
  6. Numpad1::
  7.     if(!Go){
  8.         Start_Time:=A_TickCount
  9.         Click_Count:=0
  10.     }
  11.     Go:=!Go
  12.     While(Go)
  13.     {
  14.         Click,
  15.         Click_Count++
  16.     }
  17.     Total_Time:=(A_TickCount-Start_Time)/1000
  18.     Tooltip,% "You clicked " Click_Count " times in " Total_Time " seconds."
  19.     return
  20.    
  21. Numpad2::
  22.     Start_Time:=A_TickCount
  23.     Click_Count:=0
  24.     Stop:=0
  25.     Loop
  26.     {
  27.         if(Stop=1)
  28.             break
  29.         Click,
  30.         Click_Count++
  31.     }
  32.     Total_Time:=(A_TickCount-Start_Time)/1000
  33.     Tooltip,% "You clicked " Click_Count " times in " Total_Time " seconds."
  34.     return
  35.  
  36. numpad3::
  37.     Stop:=1
  38.     return
  39.    
  40. *^ESC::ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement