mirror of
https://github.com/JezuzLizard/t6-fastfile-mods.git
synced 2025-06-10 11:17:59 -05:00
Add avogadro.
This commit is contained in:
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();
|
||||
}
|
Reference in New Issue
Block a user