code:
// Probability distribution (kind of :), decreasing likelihood.
if ( r<50 )
type = MT_TROOP;
else if (r<90)
type = MT_SERGEANT;
else if (r<120)
type = MT_SHADOWS;
else if (r<130)
type = MT_PAIN;
else if (r<160)
type = MT_HEAD;
else if (r<162)
type = MT_VILE;
else if (r<172)
type = MT_UNDEAD;
else if (r<192)
type = MT_BABY;
else if (r<222)
type = MT_FATSO;
else if (r<246)
type = MT_KNIGHT;
else
type = MT_BRUISER;
I think I remember that once a long time ago saw an Icon of Sin spawn a spider mastermind but I guess it wass a pre 1.9 version of Doom2 I were playing.
I used v1.7a for a looong time (it's what comes with my CD), and I
never ever saw an SM get spawned... it was probably just an Arachnotron,
or you had some screwed up Dehacked patch on that you didn't realize
was on.
Just to clarify what each of the names means in the post above:
code:
// Probability distribution (kind of :), decreasing likelihood.
if ( r<50 )
type = MT_TROOP; // imp
else if (r<90)
type = MT_SERGEANT; // demon
else if (r<120)
type = MT_SHADOWS; // spectre
else if (r<130)
type = MT_PAIN; // pain elemental
else if (r<160)
type = MT_HEAD; // cacodemon
else if (r<162)
type = MT_VILE; // archvile
else if (r<172)
type = MT_UNDEAD; // revenant
else if (r<192)
type = MT_BABY; // arachnotron
else if (r<222)
type = MT_FATSO; // mancubus
else if (r<246)
type = MT_KNIGHT; // hellknight
else
type = MT_BRUISER; // baron of hell
fraggle said: Just to clarify what each of the names means in the post above:
code:
// Probability distribution (kind of :), decreasing likelihood.
if ( r<50 )
type = MT_TROOP; // imp
else if (r<90)
type = MT_SERGEANT; // demon
else if (r<120)
type = MT_SHADOWS; // spectre
else if (r<130)
type = MT_PAIN; // pain elemental
else if (r<160)
type = MT_HEAD; // cacodemon
else if (r<162)
type = MT_VILE; // archvile
else if (r<172)
type = MT_UNDEAD; // revenant
else if (r<192)
type = MT_BABY; // arachnotron
else if (r<222)
type = MT_FATSO; // mancubus
else if (r<246)
type = MT_KNIGHT; // hellknight
else
type = MT_BRUISER; // baron of hell
Enjay ASK ME ABOUT FOOTBALL / STEAM / DEAD CELEBRITIES / THE BLAIR WITCH PROJECT
Posts: 6094
Registered: 12-00
And for those that don't know (and I guess most of you will), I think "Bruiser" meaning Baron refers to the original working names for the Boss barons at the end of Ep 1 being the Bruiser Brothers (from the Doom Bible). Look at other things, like their sound lump names for more reference to this.