no clicks help me with macros

htsman

New Member
VIP
Joined
May 28, 2020
Messages
7
Reaction score
0
Achievement
Code:
WaitForLoading();
await ClickRandomLink();
using this macros, get traffic but zero clicks.
all i need that wait for page loads, random scroll, and random click
that's it

please help me with that
 

opsfafsme

Well-Known Member
Rule The Universe
VIP
Joined
Jul 2, 2018
Messages
243
Reaction score
91
Website
OnlinePiercingShop.com
Achievement
Code:
WaitForLoading();
await ClickRandomLink();
using this macros, get traffic but zero clicks.
all i need that wait for page loads, random scroll, and random click
that's it

please help me with that
JavaScript:
await Delay(Random(2500,3000));
await WaitForLoading();
do { //scroll
  scrl = Random(3,9);
  for (var i = 1; i < scrl; i++) {
    await EvaluateScript("var ddE = document.documentElement; ddE.scrollTo(0, ddE.clientHeight/(Math.floor(Math.random()*3)+9) + ddE.scrollTop);");
    await Delay(Random(100,150));
  }
  await Delay (Random(1000,1500));
} while (await EvaluateScript("var ddE = document.documentElement; ddE.clientHeight+ddE.scrollTop < ddE.scrollHeight"))
await Delay(Random(5000,7000));
await ClickRandomInternalLink(true);
await Delay(Random(2500,3000));
await WaitForLoading();
Exit();
 
  • Like
Reactions: htsman

htsman

New Member
VIP
Joined
May 28, 2020
Messages
7
Reaction score
0
Achievement
JavaScript:
await Delay(Random(2500,3000));
await WaitForLoading();
do { //scroll
  scrl = Random(3,9);
  for (var i = 1; i < scrl; i++) {
    await EvaluateScript("var ddE = document.documentElement; ddE.scrollTo(0, ddE.clientHeight/(Math.floor(Math.random()*3)+9) + ddE.scrollTop);");
    await Delay(Random(100,150));
  }
  await Delay (Random(1000,1500));
} while (await EvaluateScript("var ddE = document.documentElement; ddE.clientHeight+ddE.scrollTop < ddE.scrollHeight"))
await Delay(Random(5000,7000));
await ClickRandomInternalLink(true);
await Delay(Random(2500,3000));
await WaitForLoading();
Exit();
Did not click any link at all :(
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu