VIRAL TRAFFIC EXCHANGE LIST BUILDING SYSTEM DAY 8 P1
Hi and welcome! Today we
are going to extend surfing
session to 35 minutes and...
I will give you a free script
that allows you to surf unlimited
exchanges with a simple left click!
No need to press control tab
to switch between tabs
You can use previous script
that simulates left click with
a hotkey "2", together with this one!
Create a new AutoHotkey script
and paste in, save this code:
=========================
; Variable to track whether the script is enabled or disabled
Toggle := true
; Variable to track the number of left clicks
ClickCounter := 0
; Variable to track whether Shift key was held down during the last click
ShiftHeld := false
; Variable to store the start time of the script
StartTime := A_TickCount
; Hotkey to trigger left mouse click and then change tabs with left mouse button
~LButton::
; Check if the Shift key is not held down
If (!GetKeyState("Shift", "P")) {
ShiftHeld := false ; Shift key was not held down
If (Toggle) {
; Save the current mouse coordinates
MouseGetPos, StartX, StartY
; Simulate left mouse click
Click
; Move the mouse back to the original position and simulate Ctrl+Tab
MouseMove, %StartX%, %StartY%, 0
Send, ^{Tab}
; Increment click counter
ClickCounter++
} else {
; Send the left mouse button if the script is disabled
Click
}
; Display click counter and elapsed time underneath the mouse cursor
ElapsedTime := (A_TickCount - StartTime) / 1000 ; Convert milliseconds to seconds
Minutes := Floor(ElapsedTime / 60) ; Calculate minutes
Seconds := Mod(ElapsedTime, 60) ; Calculate remaining seconds
FormattedTime := Format("{:02}:{:05.2f}", Minutes, Seconds) ; Format time as MM:SS.SS
ToolTip, Clicks: %ClickCounter%`nTime: %FormattedTime%
; Hide the ToolTip after a short delay (500 milliseconds)
SetTimer, RemoveToolTip, 500
} else {
ShiftHeld := true ; Shift key is held down during this click
}
Return
RemoveToolTip:
ToolTip
SetTimer, RemoveToolTip, Off
Return
; Hotkey to handle Shift key release
+Shift Up::
If (ShiftHeld) {
; Do nothing when Shift key is released
}
ShiftHeld := false
Return
; Hotkey to exit the script when Escape is pressed
Escape::
ExitApp
Return
==================================
This script has a small tooltip that will
show you how many clicks you have made.
You can close it by pressing ESCAPE
If you want to stay on the exchange
and click for prize pages, you can
hold down SHIFT and collect them
SHIFT will disable the script for
the duration you hold it down for.
This is a nice alternative to
Camel Tabs, but it is not as good.
You should buy Camel Tabs the
moment you can afford it and it
will make your life much easier!
Now let's try it out in our today's
surfing session!
Comments
Post a Comment