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.
20 Comments - Last post 4 minutes ago by LosingMyEdge
493 Comments - Last post 42 minutes ago by sallachim
1,789 Comments - Last post 1 hour ago by moonlightdriver
205 Comments - Last post 1 hour ago by carlica
381 Comments - Last post 1 hour ago by OsManiaC
54 Comments - Last post 2 hours ago by sensualshakti
1,015 Comments - Last post 2 hours ago by sensualshakti
15 Comments - Last post 3 seconds ago by LupoSilente
22 Comments - Last post 18 seconds ago by Vincer
103 Comments - Last post 60 seconds ago by Choco316
1 Comments - Last post 2 minutes ago by PepetheGamer
7 Comments - Last post 3 minutes ago by Mitsukuni
25 Comments - Last post 10 minutes ago by ngoclong19
28 Comments - Last post 13 minutes ago by ashtwo
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.