Bumping a thread = writing a comment to bring a thread back to everyone's attention by making it the most recently commented thread.
It only helps you.
And maybe he/she is interested in the same thing, which is why he/she wants the thread not to be forgotten.
Comment has been collapsed.
I've been using ESGST for almost 2 years. This is the first time that I hear of "Advanced Points".
The closest thing I can think of is "Advanced Filters". If that setting is enabled, it give you the option to filter giveaways by their point cost. Maybe that's what you're referring to?
Btw, there's a dedicated thread for questions/issues/announcements related to ESGST that can be found here.
I recommend searching that thread for answers. Chances are whatever you're curious about has been asked and answered before.
Edit: Nvm. Just saw your reply to damianea103.
Comment has been collapsed.
There's a thing called Projected Chance which calculates your odds of winning a giveaway based on elapsed time, remaining time, the current number of entries and possibly other factors. "Advanced per point" is Projected Chance divided by the point cost of a giveaway.
I think it's supposed to be a way for you to maximize your odds of winning while minimizing how many points you spend. I've never used it.
Comment has been collapsed.
You're talking about the "advanced per point" winning chance?
Comment has been collapsed.
Ah, that makes more sense. There is no such thing as "advanced points", that's just in reference to the probability calculations. Basic chance is calculated solely from entries, and advanced is calculated using some special formula.
Comment has been collapsed.
Source code: https://github.com/rafaelgomesxyz/esgst/blob/main/src/modules/Giveaways/GiveawayWinningChance.jsx#L163
Relevant parts:
basicChance = (copies / entries) * 100;
advancedChance = (copies / ((entries / (Date.now() - startTime)) * (endTime - startTime))) * 100
chancePerPoint = basicChance / points;
projectedChancePerPoint = advancedChance / points;
`Giveaway Winning Chance (${chancePerPoint}% basic and ${projectedChancePerPoint}% advanced per point)`
In addition to incorporating the usual number of copies and number of entries, the formula takes into account how long until the giveaway ends (because you have a higher chance of winning quick giveaways)
Comment has been collapsed.
513 Comments - Last post 49 minutes ago by Calibr3
6 Comments - Last post 50 minutes ago by Warriot
171 Comments - Last post 1 hour ago by thenevernow
7 Comments - Last post 2 hours ago by ImpAtience
17,378 Comments - Last post 2 hours ago by MeguminShiro
8 Comments - Last post 3 hours ago by steveywonder75
15 Comments - Last post 3 hours ago by OwieczkaDollyv21
9,022 Comments - Last post 20 minutes ago by Venonat
89 Comments - Last post 25 minutes ago by Thomen
103 Comments - Last post 40 minutes ago by a10i
243 Comments - Last post 52 minutes ago by Fraden
3 Comments - Last post 1 hour ago by Calibr3
4,466 Comments - Last post 1 hour ago by actuallySIG
11,643 Comments - Last post 2 hours ago by moonlightdriver
So, I'm using ESGST (it's a chrome plugin), and it can show me what my chances of winning are.
Well, it mentioned something called
"Advanced Points". What are those?Edit: Turns out it's Advanced per point... still not sure what that is though (:
So, what is "Advanced Per Point", and how does it work?
Thanks!
Comment has been collapsed.