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.
192 Comments - Last post 10 minutes ago by Golwar
318 Comments - Last post 18 minutes ago by Gamy7
31 Comments - Last post 54 minutes ago by EloyOn
27 Comments - Last post 55 minutes ago by FateOfOne
366 Comments - Last post 1 hour ago by Aliaxi
26 Comments - Last post 1 hour ago by Chris76de
25 Comments - Last post 2 hours ago by SupportForFun
55 Comments - Last post 2 minutes ago by Moony1986
68 Comments - Last post 8 minutes ago by zevnda
600 Comments - Last post 30 minutes ago by ExcelElmira
276 Comments - Last post 48 minutes ago by SlappyBag
623 Comments - Last post 48 minutes ago by Prosac
132 Comments - Last post 53 minutes ago by reigifts
3 Comments - Last post 55 minutes ago by mhetralla
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.