[quote]Originally posted by joshuaaaaaa:
<strong>This does bring up another issue, that of sending major league players down to the minors without clearing waivers. I know this has been brought up before, so I won't rehash it. However, its very high on the list of enhancements I'd like to see to the game.</strong><hr></blockquote>
My list as well.. only not necessarily as waivers... Since "veteran" players don't have to go through waivers... if you try to demote them, they can actually just refuse the assignment and become a free agent. The game needs to have some code that certain players (those with over 10 years experience etc.) will automatically refuse assignment to the minors, giving the owner the option to either keep the player on the major league roster (and eat the roster spot) or end up releasing the player and eating the salary as this is what would happen in real life. My idea was players with over 10 years experience would automatically refuse the assignment, meaning the CPU would then likely release the player, forcing the player to languish the rest of the season as a free agent before retiring. Players between 5-10 years would sometimes accept the assignment, depending on their ratings and if they think they could get a better contract as a free agent.
Some thing like this:
[code]
if (player_exp > 10){
refuse assignment
}
else if(player_exp >= 5) && (player_skill >= good){
refuse assignment
}
else{
accept assignment
}
</pre><hr></blockquote>
Something along those lines
|