Skip to content

Instantly share code, notes, and snippets.

@sicksand
Created June 25, 2018 04:23
Show Gist options
  • Save sicksand/31425a32284fe9a4f1ae1dd694a67a67 to your computer and use it in GitHub Desktop.
Save sicksand/31425a32284fe9a4f1ae1dd694a67a67 to your computer and use it in GitHub Desktop.
9hitsviewer jbfoodclub direct
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