[quote]Originally posted by mtw:
<strong>What I'd like to see are callups limited to players who have major league contracts, are within a year of being major league ready (close to major league-level ratings), have had good seasons at AAA, or great seasons at AA, as to fairly mimic real life. If the AI has no players like this, then it shouldn't call up anybody. It should call up as many as it can reasonably find some playing time for.
</strong><hr></blockquote>
This is the key here and to me would be the ideal way the AI should handle September Call-ups.
[code]
IF p_contract_type = MajorLg{
THEN Call Him Up
}
ELSE{
IF season >= Great && ratings >= MajorLg-1{
THEN Call Him Up
}
}
</pre><hr></blockquote>
With some exceptions to the top rule for the promotion of major league contracts (perhaps those still learning a new position, etc.) I think that would be a good way to handle the September callups and is how I handle them for my own purposes.
[ 04-04-2002: Message edited by: ScottVib ]</p>
|