Ugg
You can run this module directly into our CLI
You have 5 modes available:
(no value): normal drop or restock mode
MONITOR
: monitors a specific pid for (eventually) a specific size rangeAWAIT
: runner that waits once a MONITOR detects stockACCOUNT
: generates an account for the given username and password, don't forget to fill address too since it will be seeded into your account
Available payment methods
We currently support four different payment methods:
CC
for using a Credit card when checking outPP
for using PayPal when checking outPP ACO
for auto paying PayPal links (only available if an valid session is found, it falls back to normal PayPal checkout if ACO session is invalid or something goes wrong)SOFORT
for using Sofort when checking out
Tasks setup
Here is a table that explains the meaning of every field and, if applicable, a default value.
Accounts generator
You can generate an account by using ACCOUNT
as a mode and as EMAIL
you can use:
specific email like
pds@pepperscripts.com
your catchall like
@pepperscripts.com
(don't prefix it with RANDOM!)
In case you are going to use your catchall, first name and last name will be used in order to generate a random email prefix.
Basically every recipient component can be jigged with the XXX trick: put as many uppercase X (2 minimum) and they will be replaced with a random letter.
If you want you can also jig your phone number. So using like +4476XXXXXX will generate something like +4476112234.
Example taskfile
Here is an example task file:
In the example task we have 3 MONITOR
tasks that are going to monitor three different products for the same size range 36-39
.
Two AWAIT
tasks that, once prepared their session for a faster checkout, will listen for a MONITOR
input.
The first one will accept ANY of product, the second one will accept only monitors that detects stock for product 1122553-PRBY
. Other restocks will be ignored.
In the end two alone wolfs (the ones with MODE
field empty) that will run independently from other tasks.
Doing a proper usage of MONITOR and AWAIT mode will drastically reduce your proxy data consumption.
Last updated