Even more voice stuff.
This commit is contained in:
parent
aa560cb312
commit
6cca0eb623
14 changed files with 63 additions and 7 deletions
|
|
@ -183,7 +183,9 @@ extend Class SWWMHandler
|
|||
else if ( (!lastcombat || (gametic > lastcombat+50)) && !SWWMHDoomHandler.IsCuteGirl(e.Thing) ) // [HDoom] don't shout at the girls
|
||||
{
|
||||
int lc = 0;
|
||||
if ( !Random[DemoLines](0,(e.Thing.bBOSS||e.Thing.FindInventory("BossMarker"))?1:2) && (e.DamageType == 'CriticalConcussion') ) lc = AddOneliner("ballskill",1,15);
|
||||
Inventory buff = e.Inflictor?e.Inflictor.FindInventory('ParriedBuff'):null;
|
||||
if ( !Random[DemoLines](0,3) && buff && (e.Thing is 'Cyberdemon') && (e.Inflictor is 'Rocket') && (buff.tracer == e.Thing) ) lc = AddOneliner("cybully",1,15);
|
||||
else if ( !Random[DemoLines](0,(e.Thing.bBOSS||e.Thing.FindInventory("BossMarker"))?1:2) && (e.DamageType == 'CriticalConcussion') ) lc = AddOneliner("ballskill",1,15);
|
||||
else if ( !Random[DemoLines](0,(e.Thing.bBOSS||e.Thing.FindInventory("BossMarker"))?2:5) && (e.DamageType == 'Buttslam') ) lc = AddOneliner("asskill",1,15);
|
||||
if ( !lc )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -225,7 +225,17 @@ extend Class SWWMHandler
|
|||
override void WorldLoaded( WorldEvent e )
|
||||
{
|
||||
if ( e.IsReopen ) return;
|
||||
if ( gamestate != GS_TITLELEVEL ) AddOneliner("mapstart",3);
|
||||
if ( gamestate != GS_TITLELEVEL )
|
||||
{
|
||||
if ( (level.GetChecksum() ~== "D0E5ECD94BD38DF33F25515C00148693")
|
||||
|| (level.GetChecksum() ~== "D20297AE8447232F6DBE4851E3104668")
|
||||
|| (level.GetChecksum() ~== "EBBB8663AD4AB22294A8A1D211A026CD") )
|
||||
{
|
||||
if ( !AddOneliner("nutstart",3) )
|
||||
AddOneliner("mapstart",3);
|
||||
}
|
||||
else AddOneliner("mapstart",3);
|
||||
}
|
||||
if ( level.levelname ~== "Modder Test Map" )
|
||||
{
|
||||
level.ReplaceTextures("-noflat-","kinstile",0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue