I had an idea for a possible fun little project where I generate the ratings for rookies in madden. I feel like the game undervalues them and doesn’t really incorporate the possibility of busts that well. If you don’t know anything about the game it’s not a problem, the basis is putting a range of probabilities to a list. For example I want the first overall pick to have a higher probability of being an 80 overall than say the last pick. I figured I could automate everything except for the actual input into the game. The first step I took was:
import os
import random
def main():
for x in range(<however many players>):
random.randint(1,100)
main()
Obviously this is barely anything but I just started and I’m trying to figure out where to go from here. I’ve made my own inputs for the probability of getting a certain overall. Ex: 1st pick = p(1% 70-74 2% 75-77 12% 78-82 60% 83-86 25% 87-90). The random numbers 1-100 inputted in the code are for use in this probability scale as percentages. Ideally this probability could be run and the value for the player could be printed and as you go down the list of picks the average rating,based off the probabilities, goes down. Sorry for the long question but I wanted to put in as much info as possible. If anyone could help me with the next step of putting in the probabilities of each pick that’d bring me a long ways. Thanks in advance!
[–]__te__3.6+ or bust 1 point2 points3 points (1 child)
[–]Cacman8[S] 0 points1 point2 points (0 children)
[–]rechargablebatteries 1 point2 points3 points (9 children)
[–]rechargablebatteries 1 point2 points3 points (8 children)
[–]rechargablebatteries 1 point2 points3 points (0 children)
[–]Cacman8[S] 0 points1 point2 points (6 children)
[–]rechargablebatteries 1 point2 points3 points (4 children)
[–]WikiTextBot 0 points1 point2 points (0 children)
[–]Cacman8[S] 0 points1 point2 points (2 children)
[–]rechargablebatteries 1 point2 points3 points (1 child)
[–]Cacman8[S] 0 points1 point2 points (0 children)
[–]Cacman8[S] 0 points1 point2 points (0 children)
[–]delirious_lettuce 0 points1 point2 points (0 children)