mirror of
https://github.com/JezuzLizard/t6-fastfile-mods.git
synced 2025-04-19 21:32:53 +00:00
Add avogadro.
This commit is contained in:
parent
01b08e0e78
commit
c753fd3adf
@ -11393,3 +11393,15 @@
|
||||
"script_noteworthy" "zombie_dog_spawner"
|
||||
"guid" "10894F27"
|
||||
}
|
||||
{
|
||||
"classname" "actor_zm_transit_avogadro"
|
||||
"model" "c_zom_electrician_fb"
|
||||
"export" "138"
|
||||
"origin" "120 1 39"
|
||||
"count" "9999"
|
||||
"spawnflags" "3"
|
||||
"script_disable_bleeder" "1"
|
||||
"script_forcespawn" "1"
|
||||
"script_noteworthy" "avogadro_zombie_spawner"
|
||||
"guid" "EB278249"
|
||||
}
|
1579
zm_ai_pack/maps/mp/zombies/_zm_ai_avogadro.gsc
Normal file
1579
zm_ai_pack/maps/mp/zombies/_zm_ai_avogadro.gsc
Normal file
File diff suppressed because it is too large
Load Diff
19
zm_ai_pack/scripts/zm/_zm_ai_avogadro.csc
Normal file
19
zm_ai_pack/scripts/zm/_zm_ai_avogadro.csc
Normal file
@ -0,0 +1,19 @@
|
||||
// T6 GSC SOURCE
|
||||
// Generated by https://github.com/xensik/gsc-tool
|
||||
#include clientscripts\mp\_utility;
|
||||
#include clientscripts\mp\zombies\_zm_utility;
|
||||
#include clientscripts\mp\_visionset_mgr;
|
||||
|
||||
precache()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
main()
|
||||
{
|
||||
if ( getDvar( "mapname" ) == "zm_transit" && getDvar( "g_gametype" ) == "zclassic" )
|
||||
{
|
||||
return;
|
||||
}
|
||||
clientscripts\mp\_visionset_mgr::vsmgr_register_overlay_info_style_electrified( "zm_ai_avogadro_electrified", 1, 15, 1 );
|
||||
}
|
17
zm_ai_pack/scripts/zm/avogadro.gsc
Normal file
17
zm_ai_pack/scripts/zm/avogadro.gsc
Normal file
@ -0,0 +1,17 @@
|
||||
main()
|
||||
{
|
||||
if ( getDvar( "mapname" ) == "zm_transit" && getDvar( "g_gametype" ) == "zclassic" )
|
||||
{
|
||||
return;
|
||||
}
|
||||
maps\mp\zombies\_zm_ai_avogadro::precache();
|
||||
}
|
||||
|
||||
init()
|
||||
{
|
||||
if ( getDvar( "mapname" ) == "zm_transit" && getDvar( "g_gametype" ) == "zclassic" )
|
||||
{
|
||||
return;
|
||||
}
|
||||
maps\mp\zombies\_zm_ai_avogadro::init();
|
||||
}
|
@ -26,7 +26,7 @@ include,tomb/zm_tomb_basic_no_anims
|
||||
//include,tomb/zm_tomb_giant_robot
|
||||
include,tomb/zm_tomb_mech_zombie
|
||||
|
||||
//include,transit/zm_transit_avogadro
|
||||
include,transit/zm_transit_avogadro
|
||||
include,transit/zm_transit_basic_no_anims
|
||||
include,transit/zm_transit_screecher
|
||||
include,transit/zombie_dog
|
@ -9,7 +9,7 @@ include,tomb/zm_tomb_basic
|
||||
//include,tomb/zm_tomb_giant_robot
|
||||
include,tomb/zm_tomb_mech_zombie
|
||||
|
||||
//include,transit/zm_transit_avogadro
|
||||
include,transit/zm_transit_avogadro
|
||||
include,transit/zm_transit_basic
|
||||
include,transit/zm_transit_screecher
|
||||
include,transit/zombie_dog
|
@ -88,3 +88,36 @@ material,mc/mtl_c_zom_avagadro_brain
|
||||
xmodel,c_zom_avagadro_fb
|
||||
script,character/clientscripts/c_zom_avogadro.csc
|
||||
script,aitype/clientscripts/zm_transit_avogadro.csc
|
||||
|
||||
image,fxt_env_lightning_bolt_trail2
|
||||
material,gfx_fxt_env_lightning_bolt_trail
|
||||
fx,maps/zombie/fx_zombie_tesla_bolt_secondary
|
||||
techniqueset,effect_z096f2e2
|
||||
image,fxt_env_lighting_bolt_ground
|
||||
material,gfx_fxt_env_lightning_bolt_ground
|
||||
fx,maps/zombie/fx_zmb_avog_ascend_cloud
|
||||
image,fxt_env_lightning_trail
|
||||
material,gfx_fxt_env_lightning_trail
|
||||
fx,maps/zombie/fx_zmb_avog_ascend_trail
|
||||
techniqueset,effect_zeqqz943
|
||||
material,gfx_fxt_smk_gen_z40
|
||||
material,gfx_fxt_env_lightning_bolt_streak
|
||||
image,~-gfxt_decal_scorch_mark
|
||||
material,mc/gfx_fxt_decal_scorch_mark
|
||||
material,wc/gfx_fxt_decal_scorch_mark
|
||||
material,gfx_fxt_env_electric_arc1_add_gr
|
||||
material,gfx_fxt_env_electric_arc2_add_gr
|
||||
material,gfx_fxt_light_hot_add_eo20_z20
|
||||
fx,maps/zombie/fx_zmb_tranzit_power_bolt_impact
|
||||
image,fxt_env_snow_flakes
|
||||
material,gfx_fxt_env_snow_flakes
|
||||
fx,maps/zombie/fx_zmb_avog_descend_impact
|
||||
fx,maps/zombie/fx_zmb_avog_ascend
|
||||
material,gfx_fxt_light_flare_halogen_vm
|
||||
fx,maps/zombie/fx_zmb_avog_ascend_aerial
|
||||
fx,maps/zombie/fx_zmb_avog_descend
|
||||
fx,maps/zombie/fx_zmb_avog_phase_trail
|
||||
|
||||
script,scripts/zm/avogadro.gsc
|
||||
script,scripts/zm/_zm_ai_avogadro.csc
|
||||
script,maps/mp/zombies/_zm_ai_avogadro.gsc
|
Loading…
x
Reference in New Issue
Block a user