Here ya go Vintervalpen! This script will automatically set your max rolls based on class and race when you create a character. Copy and save this into notepad then import the file into zMud as an ASCII script. I haven't tested out all the combinations and the totals are based on the Max Roll post, so please pm me about any errors you find in the script.
P.S. You'll have to reconnect after importing the script, but after that it should all be automatic. Type stop anytime during the rolls to disable everything.
P.P.S. I added a new feature. If you don't want to wait hours for the max roll you can manually change the variable. Type setMax x anytime during the rolling process to change your max roll to x.
#CLASS {CharacterCreate} {setdef}
#ALIAS enableCreate {#T+ Race;#T+ Roll}
#ALIAS disableCreate {#T- Race;#T- Roll}
#ALIAS setMax {#VAR max %1}
#VAR class {cleric} {nul}
#VAR race {drow} {nul}
#VAR max {24} {nul}
#CLASS 0
#CLASS {CharacterCreate|Set} {enable}
#TRIGGER {Rolling stats for (&race) (&class).:*} {#IF (@class != "nul") {enableCreate;@{race}Set;#T- Set} {#SHOW ERROR Class nul}}
#CLASS 0
#CLASS {CharacterCreate|Race} {disable}
#ALIAS humanSet {#VAR max 24}
#ALIAS feralSet {#VAR max 25}
#ALIAS stormSet {#VAR max 23}
#ALIAS gnomeSet {#VAR max 26}
#ALIAS stoneSet {#IF (@class = "ranger") {#VAR max 20} {#VAR max 22}}
#ALIAS fireSet {#VAR max 22}
#ALIAS ogreSet {#IF (@class = "ranger") {#VAR max 25} {#VAR max 26}}
#ALIAS half-elfSet {#IF (@class = "adventurer") {#VAR max 23} {#VAR max 25}}
#ALIAS werebeastSet {#IF (@class = "ranger") {#VAR max 23} {#VAR max 24}}
#ALIAS avianSet {#IF (@class = "ninja") {#VAR max 26};#IF (@class = "dark-knight") {#VAR max 25};#IF (@class != "ninja"|"dark-knight") {#VAR max 24}}
#ALIAS duergarSet {#IF (@class = "thief") {#VAR max 24} {#VAR max 25}}
#ALIAS dwarfSet {#VAR max 26}
#ALIAS halflingSet {#IF (@class = "bard") {#VAR max 23} {#VAR max 22}}
#ALIAS slithSet {#VAR max 24}
#ALIAS minotaurSet {#IF (@class = "adventurer") {#VAR max 24} {#VAR max 23}}
#ALIAS drowSet {#IF (@class = "cleric") {#VAR max 24};#IF (@class = "adventurer") {#VAR max 23};#IF (@class != "cleric"|"adventurer") {#VAR max 25}}
#ALIAS elfSet {#IF (@class = "paladin") {#VAR max 24} {#VAR max 25}}
#ALIAS fearieSet {#VAR max 21}
#ALIAS illithidSet {#VAR max 24}
#ALIAS nulSet {#SHOW ERROR Race not set*;disableCreate}
#CLASS 0
#CLASS {CharacterCreate|Roll} {disable}
#ALIAS stop {disableCreate}
#TRIGGER {[(%d)] Cmds~:} {#IF (%1 < @max) {roll} {disableCreate};#SHOW MaxRoll: @max CurrentRoll: %1}
#CLASS 0
