mirror of
https://github.com/JezuzLizard/t6-fastfile-mods.git
synced 2025-04-22 06:25:44 +00:00
20 lines
447 B
Plaintext
20 lines
447 B
Plaintext
// 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 );
|
|
}
|