-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ebeca5
commit c9936c1
Showing
32 changed files
with
2,100 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
SSOLD2: | ||
Gui, Submit, Hide | ||
Gui, Destroy | ||
InputBox, logs, How many ss do you want to take? ,(After the macro finishes the amount you put it will automatically close the roblox) | ||
if ErrorLevel = 1 | ||
{ | ||
ExitApp | ||
} | ||
InputBox, chargeRhythm, Charge Rhythm?, Do you want to charge Rhythm? (Yes/No) | ||
|
||
if (chargeRhythm = "Yes" or chargeRhythm = "yes" or chargeRhythm = "Y" or chargeRhythm = "y") | ||
{ | ||
useSend1r := true | ||
} | ||
else | ||
{ | ||
useSend1r := false | ||
} | ||
|
||
removetooltip: | ||
ToolTip | ||
return | ||
|
||
f1:: | ||
loop, | ||
{ | ||
Tooltip, % A_Index | ||
SetTimer, removetooltip, -3000 | ||
Send {Click 3} | ||
Sleep 500 | ||
Send 2{Click} | ||
Sleep 500 | ||
if (useSend1r) | ||
{ | ||
Send 1r | ||
} | ||
else | ||
{ | ||
Send 1 | ||
} | ||
Sleep 2700 | ||
Loop, 4 | ||
{ | ||
Loop, 4 | ||
{ | ||
Send {Click} | ||
Sleep 1050 | ||
} | ||
Sleep 100 | ||
Send {Click, Right} | ||
Sleep 1050 | ||
} | ||
Send {Click} | ||
Sleep 1100 | ||
Send {Click} | ||
Sleep 1100 | ||
Send {Click} | ||
Sleep 1100 | ||
Send 1 | ||
Sleep 1100 | ||
if A_Index = %logs% | ||
{ | ||
Send !{f4} | ||
ExitApp | ||
} | ||
} | ||
Return | ||
|
||
j::ExitApp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#Persistent | ||
SetBatchLines -1 | ||
|
||
ToolTip, F1 Start | F3 Close Roblox | L Exit Macro | ||
|
||
isPaused := true | ||
startTime := 0 | ||
|
||
F1:: | ||
isPaused := !isPaused | ||
|
||
if (isPaused) | ||
{ | ||
SetTimer, ClickLoop, Off | ||
} | ||
else | ||
{ | ||
startTime := A_TickCount | ||
SetTimer, ClickLoop, 1000 | ||
} | ||
Return | ||
|
||
F3:: | ||
WinClose, Roblox | ||
ExitApp | ||
Return | ||
|
||
ClickLoop: | ||
IfWinActive, Roblox | ||
{ | ||
if (!isPaused) | ||
{ | ||
Click, 74, 15 | ||
} | ||
} | ||
|
||
|
||
elapsedTime := (A_TickCount - startTime) // 60000 | ||
|
||
ToolTip, F1 Start (%elapsedTime% minutes) | F3 Close Roblox | L Exit Macro | ||
|
||
Return | ||
|
||
L::ExitApp |
Binary file not shown.