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
IDK what I did One of the Most Random Dart ever wtf
Posted by Otto
Sunday, May 2, 2021 7:43 PM
I'm sorry Cypher mains, but it's true
Posted by Otto
Saturday, June 26, 2021 7:14 PM
Where's Constant Valorant suddenly vanished?!
Posted by Otto
Sunday, January 10, 2021 12:45 AM