Wishlist watching

- The [DEFAULT] config settings only pertain to the main page aka All
 - Another new section called [WISHLIST] pertains specifically to entering into games on your wishlist
 - Either [DEFAULT] or [WISHLIST] can be enabled/disabled
 - Script will first look at your wishlist items if both config settings are enabled
This commit is contained in:
mcinj 2022-05-04 11:14:38 -04:00
parent befbdf8675
commit de80790beb
4 changed files with 143 additions and 99 deletions

View file

@ -1,8 +1,11 @@
[DEFAULT]
cookie = PHPSESSIONCOOKIEGOESHERE
# gift_types options: All, Wishlist, Recommended, Copies, DLC, New
# should we consider giveaways on the 'ALL' page? it is the main page
enabled = true
# gift_types options: All
gift_types = All
pinned = true
# should we consider pinned-at-the-top giveaways
pinned = false
# minimum number of points in your account before entering into giveaways
minimum_points = 50
# max number of entries in a giveaway for it to be considered
@ -12,4 +15,13 @@ max_time_left = 300
# the minimum point value for a giveaway to be considered
minimum_game_points = 5
# a comma separated list of keywords in game titles to ignore
blacklist_keywords = hentai,adult
blacklist_keywords = hentai,adult
[WISHLIST]
# should we consider giveaways on the 'Wishlist' page?
wishlist.enabled = true
# minimum number of points in your account before entering into giveaways
wishlist.minimum_points = 50
# max number of entries in a giveaway for it to be considered
wishlist.max_entries = 2000
# time left in minutes of a giveaway for it to be considered
wishlist.max_time_left = 300