Created
June 25, 2018 04:23
-
-
Save sicksand/31425a32284fe9a4f1ae1dd694a67a67 to your computer and use it in GitHub Desktop.
9hitsviewer jbfoodclub direct
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
await Delay(5000); | |
while(await IsLoading()){ | |
await Delay(5000); | |
} | |
var ran = Random(0,100); | |
if(ran < 50) { | |
await Delay(15000); | |
ClickById("custom_html-3"); | |
} else if(ran >=51 && ran < 70) { | |
await Delay(15000); | |
ClickById("custom_html-4"); | |
} else if(ran >= 70) { | |
await Delay(15000); | |
ClickByTag("a","random"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment