Posted by Steve
Saturday, November 5, 2022 5:33 PM
Hi guys!
I know that we are all crazy to get one or several skins in the store and they never come out. It has been asked a lot in this forum what are the possibilities of the one we want coming out every day and of it coming out after a while. I just made a simple python script to calculate the odds of an item appearing in the store. Simply copy the code into any python compiler (such as https://www.programiz.com/python-programming/online-compiler/) and run:
Code:
daysWaiting = 1
numberOfSkinsInRotation = 300
numberOfSkinsYouWant = 1
numberOfSkinInShop = 4
dayProbability = 0
totalProbability = 0
while numberOfSkinInShop > 0:
dayProbability = dayProbability + (numberOfSkinsYouWant/(numberOfSkinsInRotation-numberOfSkinInShop+1))
numberOfSkinInShop -= 1
totalProbability = dayProbability
while daysWaiting > 1:
totalProbability = totalProbability + (1-totalProbability)*dayProbability
daysWaiting -= 1
print((totalProbability*100) , '%')
To calculate the probability, you just have to modify the first three lines by putting the days of waiting, the number of skins in rotation (I don't know exactly how many, I know there are a few more than 300) and how many skins you are waiting for in total. By giving "Run" it calculates the probability that it will come out after the indicated days!
References
- https://www.reddit.com/r/VALORANT/comments/ymcw0x/valorant_shop_probability_calculator/
- https://reddit.com/ymcw0x
More Like This
Reaver Vandal
Posted by Otto
Sunday, April 11, 2021 6:02 AM
has anyone else been losing every single game after the ranked reset?
Posted by Otto
Saturday, January 21, 2023 5:04 AM
Currently on a 20 game Lose streak on Comp and it's quite the experience...
Posted by Otto
Thursday, December 15, 2022 10:50 PM