pyronaut
Senior Member
- Dec 9, 2008
- 1,189
- 1,440
There was a few scripts out there for repinning, but Pinterest must have changed their HTML and they were all broken. I was also surprised to see no one adding random waits within it (e.g. wait exactly 5 seconds then do this, then exactly 5 seconds for the next action). I suppose it doesn't really matter as the page loading will vary each time, but I made the script wait between 5 - 7 seconds each action, just to add that extra layer of humanness.
Start on the repin page on AddMeFast!
Start on the repin page on AddMeFast!
Code:
VERSION BUILD=7401110 RECORDER=FX
SET !ERRORIGNORE YES
SET !LOADCHECK NO
SET !REPLAYSPEED FAST
SET !TIMEOUT 2
SET !TIMEOUT_PAGE 3
SET !TIMEOUT_STEP 1
TAB T=1
URL GOTO=
SET RANDWAIT EVAL("var randomNumber= Math.floor(Math.random() * (7 - 5) + 5); randomNumber;")
WAIT SECONDS={{RANDWAIT}}
TAG POS=1 TYPE=A ATTR=TXT:Repin
TAB T=2
SET RANDWAIT EVAL("var randomNumber= Math.floor(Math.random() * (7 - 5) + 5); randomNumber;")
WAIT SECONDS={{RANDWAIT}}
FRAME F=0
TAG POS=1 TYPE=BUTTON ATTR=CLASS:rounded<SP>Button<SP>repinSmall<SP>pinIt<SP>primary<SP>Module<SP>ButtonBase<SP>ajax<SP>btn
SET RANDWAIT EVAL("var randomNumber= Math.floor(Math.random() * (7 - 5) + 5); randomNumber;")
WAIT SECONDS={{RANDWAIT}}
TAB T=1
TAB CLOSEALLOTHERS
SET !ERRORIGNORE YES