diff --git a/zm_ai_pack/maps/mp/zombies/_zm_ai_leaper.gsc b/zm_ai_pack/maps/mp/zombies/_zm_ai_leaper.gsc index a71d9cc..5e2bc9c 100644 --- a/zm_ai_pack/maps/mp/zombies/_zm_ai_leaper.gsc +++ b/zm_ai_pack/maps/mp/zombies/_zm_ai_leaper.gsc @@ -12,7 +12,13 @@ #include maps\mp\gametypes_zm\_globallogic_score; #include maps\mp\zombies\_zm_powerups; #include maps\mp\zombies\_zm_audio; -#include maps\mp\zm_highrise_elevators; +//#include maps\mp\zm_highrise_elevators; + +main() +{ + precache(); + init(); +} precache() { @@ -1005,7 +1011,8 @@ leaper_traverse_watcher() { self.elevator_parent = undefined; - if ( is_true( self maps\mp\zm_highrise_elevators::object_is_on_elevator() ) ) + object_is_on_elevator_func = getFunction( "maps\mp\zm_highrise_elevators", "object_is_on_elevator" ); + if ( isDefined( object_is_on_elevator_func ) && is_true( self [[ object_is_on_elevator_func ]]() ) ) { if ( isdefined( self.elevator_parent ) ) { diff --git a/zm_ai_pack/scripts/zm/zm_ai_pack_mod_debug_main.gsc b/zm_ai_pack/scripts/zm/zm_ai_pack_mod_debug_main.gsc index 271683c..3a27be3 100644 --- a/zm_ai_pack/scripts/zm/zm_ai_pack_mod_debug_main.gsc +++ b/zm_ai_pack/scripts/zm/zm_ai_pack_mod_debug_main.gsc @@ -46,7 +46,7 @@ command_thread() } switch ( args[ 1 ] ) { - case "print": + case "printorigin": player iPrintLn( player.origin ); break; case "points": @@ -54,17 +54,23 @@ command_thread() break; case "setdoground": level.next_dog_round = level.round_number + 1; + player iPrintLn( "Set next dog round to " + level.next_dog_round ); break; case "spawnmechz": + player iPrintLn( "Spawning one mechz" ); level.mechz_left_to_spawn = 1; level notify( "spawn_mechz" ); break; case "spawnbrutus": + player iPrintLn( "Spawning one brutus" ); level notify( "spawn_brutus", 1 ); break; case "printentities": level thread print_entities(); break; + default: + player iPrintLn( "Invalid command" ); + break; } } else if ( is_client ) diff --git a/zm_ai_pack/scripts/zm/zm_ai_pack_mod_main.gsc b/zm_ai_pack/scripts/zm/zm_ai_pack_mod_main.gsc index 4b0eddd..d59f75e 100644 --- a/zm_ai_pack/scripts/zm/zm_ai_pack_mod_main.gsc +++ b/zm_ai_pack/scripts/zm/zm_ai_pack_mod_main.gsc @@ -36,6 +36,9 @@ main() // level.ai_data[ "ghost" ] = spawnStruct(); // level.ai_data[ "ghost" ].main = maps\mp\zombies\_zm_ai_ghost::main; // level.ai_data[ "ghost" ].should_execute = !( level.script == "zm_buried" && level.gametype == "zclassic" ); + // level.ai_data[ "leaper" ] = spawnStruct(); + // level.ai_data[ "leaper" ].main = maps\mp\zombies\_zm_ai_leaper::main; + // level.ai_data[ "leaper" ].should_execute = level.script != "zm_highrise"; level.ai_data[ "brutus" ] = spawnStruct(); level.ai_data[ "brutus" ].main = maps\mp\zombies\_zm_ai_brutus::main; level.ai_data[ "brutus" ].should_execute = level.script != "zm_prison"; @@ -43,10 +46,10 @@ main() level.ai_data[ "mechz" ].main = maps\mp\zombies\_zm_ai_mechz::main; level.ai_data[ "mechz" ].init = maps\mp\zombies\_zm_ai_mechz::init; level.ai_data[ "mechz" ].should_execute = level.script != "zm_tomb"; - // level.ai_data[ "zombie_dog" ] = spawnStruct(); - // level.ai_data[ "zombie_dog" ].main = maps\mp\zombies\_zm_ai_dogs::init; - // level.ai_data[ "zombie_dog" ].init = maps\mp\zombies\_zm_ai_dogs::enable_dog_rounds; - // level.ai_data[ "zombie_dog" ].should_execute = !( level.gametype == "zstandard" && getGametypeSetting( "allowDogs" ) == 1 ); + level.ai_data[ "zombie_dog" ] = spawnStruct(); + level.ai_data[ "zombie_dog" ].main = maps\mp\zombies\_zm_ai_dogs::init; + level.ai_data[ "zombie_dog" ].init = maps\mp\zombies\_zm_ai_dogs::enable_dog_rounds; + level.ai_data[ "zombie_dog" ].should_execute = !( level.gametype == "zstandard" && getGametypeSetting( "allowDogs" ) == 1 ); keys = getArrayKeys( level.ai_data ); for ( i = 0; i < keys.size; i++ ) @@ -380,7 +383,7 @@ increment_enemy_count( who ) if ( is_true( who.is_leaper ) ) { - who thread [maps\mp\zombies\_zm_ai_leaper::leaper_cleanup](); + who thread maps\mp\zombies\_zm_ai_leaper::leaper_cleanup(); } else if ( is_true( who.is_mechz ) ) { diff --git a/zm_ai_pack/sound/vox/scripted/zmc/vox_zmba_event_dogstart_0.SN55.pc.snd.flac b/zm_ai_pack/sound/vox/scripted/zmc/vox_zmba_event_dogstart_0.SN55.pc.snd.flac new file mode 100644 index 0000000..6025615 Binary files /dev/null and b/zm_ai_pack/sound/vox/scripted/zmc/vox_zmba_event_dogstart_0.SN55.pc.snd.flac differ diff --git a/zm_ai_pack/sound/vox/scripted/zmc/vox_zmba_sam_event_dogstart_0.SN55.pc.snd.flac b/zm_ai_pack/sound/vox/scripted/zmc/vox_zmba_sam_event_dogstart_0.SN55.pc.snd.flac new file mode 100644 index 0000000..2fb8a39 Binary files /dev/null and b/zm_ai_pack/sound/vox/scripted/zmc/vox_zmba_sam_event_dogstart_0.SN55.pc.snd.flac differ diff --git a/zm_ai_pack/soundbank/mod.all.aliases.csv b/zm_ai_pack/soundbank/mod.all.aliases.csv index d591132..df496ef 100644 --- a/zm_ai_pack/soundbank/mod.all.aliases.csv +++ b/zm_ai_pack/soundbank/mod.all.aliases.csv @@ -238,4 +238,46 @@ fly_dog_step_run_default,sound\evt\zombie_global\hellhounds\step\step_09.LN55.pc fly_dog_step_run_default,sound\evt\zombie_global\hellhounds\step\step_10.LN55.pc.snd,,,,grp_ambience,7353,7353,,125,400,600,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, fly_dog_step_run_default,sound\evt\zombie_global\hellhounds\step\step_11.LN55.pc.snd,,,,grp_ambience,7353,7353,,125,400,600,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, mus_zombie_dog_end,sound\mus\zombie\zombie_global\mus_doground_end.SN65.pc.snd,,,,grp_music,18470,18470,,0,5000,5000,default,default,allon,allon,8,priority,8,oldest,32767,32767,,100,100,0,-1,,streamed,nonlooping,volume,-1,0,0,,2d,0,0,0,0,63,,no,yes,none,0,,,,no,0,0,0,,yes,yes,0,0,,yes,no,bus_reference, -mus_zombie_dog_start,sound\mus\zombie\zombie_global\mus_zombie_dog_start.SN65.pc.snd,,,,grp_music,18470,18470,,0,5000,5000,default,default,allon,allon,8,priority,8,oldest,32767,32767,,100,100,0,-1,,streamed,nonlooping,volume,-1,0,0,,2d,0,0,0,0,63,,no,yes,none,0,,,,no,0,0,0,,yes,yes,0,0,,yes,no,bus_reference, \ No newline at end of file +mus_zombie_dog_start,sound\mus\zombie\zombie_global\mus_zombie_dog_start.SN65.pc.snd,,,,grp_music,18470,18470,,0,5000,5000,default,default,allon,allon,8,priority,8,oldest,32767,32767,,100,100,0,-1,,streamed,nonlooping,volume,-1,0,0,,2d,0,0,0,0,63,,no,yes,none,0,,,,no,0,0,0,,yes,yes,0,0,,yes,no,bus_reference, +zmb_dog_round_start,sound\evt\zombie_global\hellhounds\dog_round_start.LN55.pc.snd,,,,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_bolt,sound\evt\zombie_global\hellhounds\spawn\strikes_00.LN55.pc.snd,,,,grp_hdrfx,11653,11653,,1250,4000,5000,default,default,allon,allon,2,priority,8,oldest,26218,42591,,10,50,63,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,0,,no,no,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_hdrfx, +zmb_hellhound_explode,sound\zmb\ai\hellhounds\explode\explode_00.LN55.pc.snd,,,zmb_hellhound_vocals_death,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_explode,sound\zmb\ai\hellhounds\explode\explode_01.LN55.pc.snd,,,zmb_hellhound_vocals_death,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_explode,sound\zmb\ai\hellhounds\explode\explode_02.LN55.pc.snd,,,zmb_hellhound_vocals_death,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_explode,sound\zmb\ai\hellhounds\explode\explode_03.LN55.pc.snd,,,zmb_hellhound_vocals_death,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_explode,sound\zmb\ai\hellhounds\explode\explode_04.LN55.pc.snd,,,zmb_hellhound_vocals_death,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_explode,sound\zmb\ai\hellhounds\explode\explode_05.LN55.pc.snd,,,zmb_hellhound_vocals_death,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_loop_fire,sound\evt\zombie_global\hellhounds\loop_00.LL55.pc.snd,,,,grp_ambience,3685,3685,,75,550,550,default,default,allon,allon,6,priority,8,oldest,31834,33727,,10,50,0,-1,,loaded,looping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_prespawn,sound\evt\zombie_global\hellhounds\spawn\pre_spawn.LN55.pc.snd,,,,grp_hdrfx,11653,11653,,500,4000,5000,default,default,allon,allon,2,priority,8,oldest,29497,36043,,10,50,63,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,0,,no,no,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_hdrfx, +zmb_hellhound_spawn,sound\evt\zombie_global\hellhounds\spawn\spawn_01.LN55.pc.snd,,,zmb_hellhound_spawn_flux_l,grp_hdrfx,11653,11653,,500,4000,5000,default,default,allon,allon,2,priority,8,oldest,29497,36043,,10,50,63,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,0,,no,no,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_hdrfx, +zmb_hellhound_spawn_flux_l,sound\evt\zombie_global\hellhounds\spawn\spn_flux_l.LN55.pc.snd,,,zmb_hellhound_spawn_flux_r,grp_hdrfx,5205,5205,,25,1000,1000,default,default,allon,allon,6,priority,8,oldest,29497,32767,,10,50,63,-1,,loaded,nonlooping,volume,-1,500,655,,3d,0,0,0,0,0,,no,no,left_player,4000,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_hdrfx, +zmb_hellhound_spawn_flux_r,sound\evt\zombie_global\hellhounds\spawn\spn_flux_r.LN55.pc.snd,,,,grp_hdrfx,5205,5205,,25,1000,1000,default,default,allon,allon,6,priority,8,oldest,32767,36043,,10,50,63,-1,,loaded,nonlooping,volume,-1,500,655,,3d,0,0,0,0,0,,no,no,right_player,4000,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_hdrfx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_00.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_01.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_02.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_03.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_04.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_05.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_06.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_07.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_08.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_09.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_10.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_amb,sound\zmb\ai\hellhounds\vox\move\move_11.LN55.pc.snd,,,,grp_ambience,8250,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_bite,sound\zmb\ai\hellhounds\vox\bite\bite_00.LN55.pc.snd,,,,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,450,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_bite,sound\zmb\ai\hellhounds\vox\bite\bite_01.LN55.pc.snd,,,,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,450,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_bite,sound\zmb\ai\hellhounds\vox\bite\bite_02.LN55.pc.snd,,,,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,450,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_bite,sound\zmb\ai\hellhounds\vox\bite\bite_03.LN55.pc.snd,,,,grp_ambience,11653,11653,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,450,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_close,sound\zmb\ai\hellhounds\vox\close\close_00.LN55.pc.snd,,,,grp_ambience,18470,18470,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_close,sound\zmb\ai\hellhounds\vox\close\close_01.LN55.pc.snd,,,,grp_ambience,18470,18470,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_close,sound\zmb\ai\hellhounds\vox\close\close_02.LN55.pc.snd,,,,grp_ambience,18470,18470,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_close,sound\zmb\ai\hellhounds\vox\close\close_03.LN55.pc.snd,,,,grp_ambience,18470,18470,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,yes,bus_fx, +zmb_hellhound_vocals_death,sound\zmb\ai\hellhounds\vox\death\death_00.LN55.pc.snd,,,,grp_ambience,16461,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_vocals_death,sound\zmb\ai\hellhounds\vox\death\death_01.LN55.pc.snd,,,,grp_ambience,16461,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_vocals_death,sound\zmb\ai\hellhounds\vox\death\death_02.LN55.pc.snd,,,,grp_ambience,16461,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_vocals_death,sound\zmb\ai\hellhounds\vox\death\death_03.LN55.pc.snd,,,,grp_ambience,16461,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_vocals_death,sound\zmb\ai\hellhounds\vox\death\death_04.LN55.pc.snd,,,,grp_ambience,16461,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_vocals_death,sound\zmb\ai\hellhounds\vox\death\death_05.LN55.pc.snd,,,,grp_ambience,16461,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +zmb_hellhound_vocals_death,sound\zmb\ai\hellhounds\vox\death\death_06.LN55.pc.snd,,,,grp_ambience,16461,16461,,75,550,550,default,default,allon,allon,6,priority,1,oldest,31834,33727,,10,50,0,-1,,loaded,nonlooping,volume,-1,0,655,,3d,0,0,0,0,25,,no,yes,none,0,,,,no,0,0,0,,yes,no,0,0,,yes,no,bus_fx, +vox_zmba_event_dogstart_0,sound\vox\scripted\zmc\vox_zmba_event_dogstart_0.SN55.pc.snd,,,,grp_voice,10386,10386,,0,5000,5000,default,default,allon,allon,8,priority,8,oldest,32767,32767,,100,100,0,-1,,streamed,nonlooping,volume,-1,0,0,,2d,0,0,0,0,0,,no,yes,none,0,,,,no,0,822242733,0,,yes,no,0,0,,yes,yes,bus_voice, +vox_zmba_event_dogstart,sound\vox\scripted\zmc\vox_zmba_sam_event_dogstart_0.SN55.pc.snd,,,,grp_voice,7353,7353,,0,5000,5000,default,default,allon,allon,8,priority,8,oldest,36779,36779,,100,100,0,-1,,streamed,nonlooping,volume,-1,0,0,,2d,0,0,0,0,0,,no,yes,none,0,,,,no,0,822242733,0,,yes,no,0,0,,yes,yes,bus_voice, \ No newline at end of file