void set_maximizer() {
if(get_property("kingLiberated") == "true") {
set_property("maximizerMRUSize", "5");
set_property("maximizerList", "mainstat | mus | mys | mox | familiar weight | HP | MP | ML | DA | DR | +combat -tie | -combat -tie | initiative | exp | meat drop | item drop | 2.0 meat, 1.0 item | item, sea | weapon dmg | ranged dmg | elemental dmg | spell dmg | adv | pvp fights | hot res | cold res | spooky res | stench res | sleaze res | all res | mp regen | ML, 0.001 slime res | 4 clownosity, -tie | 7 raveosity, -tie | surgeonosity | +four songs");
} else {
set_property("maximizerMRUSize", "1");
buffer maximizerList;
// First, default mainstat string...
maximizerList.append("2 mainstat, .05 familiar weight, ");
if(my_primestat() == $stat[Moxie])
maximizerList.append("ranged damage, weapon damage, .1 initiative, +effective, ");
else if(my_primestat() == $stat[Muscle])
maximizerList.append("weapon damage, .1 initiative, +effective, ");
else
maximizerList.append("spell damage, .1 initiative, ");
if(my_class() == $class[Zombie Master])
maximizerList.append("0 mp regen, ");
if(my_path() == "Bees Hate You")
maximizerList.append("0 beeosity, ");
// Regular values
maximizerList.append(" | +combat -tie | -combat -tie | cold res, spooky res | hot res, stench res | item, food drop | familiar weight | DA, 5 DR | initiative | exp | meat drop +outfit frat warrior fatigues | elemental dmg | spell dmg | all res | mp regen | 4 clownosity, -tie | 7 raveosity, -tie | surgeonosity | ");
// The third crowd
maximizerList.append(get_property("nsChallenge2"));
maximizerList.append(" damage, ");
maximizerList.append(get_property("nsChallenge2"));
maximizerList.append(" spell damage");
set_property("maximizerList", maximizerList);
}
}