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
What characters let me play more aggressively?
Posted by Otto
Saturday, March 27, 2021 12:31 AM
How my team and I like to play a 4v1
Posted by Otto
Friday, May 14, 2021 12:02 AM
I found this guy who made Valorant in Minecraft
Posted by Otto
Tuesday, December 27, 2022 6:31 PM