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.
68 Comments - Last post 15 minutes ago by Microfish
1,565 Comments - Last post 35 minutes ago by Devirk
29 Comments - Last post 46 minutes ago by Ajarepeich
70 Comments - Last post 1 hour ago by SchizoDoll
272 Comments - Last post 1 hour ago by paco7533
115 Comments - Last post 3 hours ago by Tourfaint
17,584 Comments - Last post 3 hours ago by Glas
283 Comments - Last post 10 minutes ago by zpangwin
37 Comments - Last post 11 minutes ago by heavenhairsixes
290 Comments - Last post 22 minutes ago by xargu
170 Comments - Last post 38 minutes ago by GeoSol
4,765 Comments - Last post 47 minutes ago by blalilulelo
84 Comments - Last post 52 minutes ago by FateOfOne
117 Comments - Last post 54 minutes ago by gokugohanpan
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.