Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class SM_Zombz
- {
- /*
- SHARED SETTINGS
- */
- SM_Debug = false; // used to debug the system (just logs a lot of stuff)
- /*
- SERVER SETTINGS
- */
- SM_NotificatonType = 2; // 1 for custom notification, 2 for mod notification.
- SM_ZombieDamagePlayer = 0.15; // how much damage a zombie does to a player
- SM_ZombieDamagePlayerStrength = 1; // strenth in wich a zombie does to a player (based on damage)
- SM_ZombieDamageCar = 0.02; // how much damage a zombie does to a car
- SM_ZombieDamageCarStrength = 1.5; // strenth in wich a zombie does to a car (based on damage)
- SM_AttackSpeed = 0.8; // delay from each zombie attack
- SM_BleedingEnabled = 1; // when a zombie attacks a player they can bleed
- SM_BleedTime = 20; // how long a player will bleed if they are attacked by a zombie
- SM_BleedChanceHigh = 100; // not recommended to change
- SM_BleedChanceLow = 90; // 100 - 90 = 10% chance
- SM_ZombieAgroRange = 50; // how far a zombie can track a player
- SM_ZombieTargetPosMemory = 7.5; // in seconds how long a zombie remembers the position it's walking to
- SM_ZombieSoundDelayAggressive = 3; // seconds between each aggresive sound a zombie makes
- SM_ZombieSoundDelayMoan = 15; // seconds between each moan sound a zombie makes
- SM_ZombieEat = 30; // how long a zombie eats a target
- SM_SoundDistance = 30; // how far a zombie sound travels
- SM_ZombieEatSoundDelay = 7; // seconds between each eating sound
- SM_ZombieSpeedIncreaseEnabled = true; // increase / decrease zombie speed based on distance
- SM_ZombieSpeedDistance = 35; // distance to increase / decrease zombie speed
- SM_ZombieSpeedMultiplyer = 1.5; // multiplier for zombie speed
- SM_ZombiesFastClose = true; // 1 = zombies walk fast close // 0 = zombies walk fast far away
- SM_MultiplierDistanceFromTarget = 1.5; // random of 10, multiplier, if 5, then will be 7.5 meter wander distance from target.
- SM_ZombieInBuildingSpeedDevidor = 2; // Devidor of default zombie speed, how fast a zombie moves in a building.
- SM_FiredNearEVHEnabled = true; // if a player shoots near a zombie, the zombie will walk to that shot position
- SM_SetVelocityOnHit = false; // moves the player / vehicle just slightly when hit.
- SM_ExplodingHeadEnabled = true; // exploding heads
- SM_Zombie_SpawnInGround = true; // when zombies spawn they spawn out of the ground
- SM_ZombieIdleDelay = 0.5; // How long it takes a idle zombie to recalculate finding a target (recommended 0.1-5 seconds)
- //Custom effects to display on screen when hit.
- SM_CustomScreenEffects = true; // scratches, bites etc.. on screen when attacked.
- SM_ScreenEffects[] =
- {
- "\SM_Zombz\textures\badger\SM_BloodEffect_1.paa",
- "\SM_Zombz\textures\badger\SM_BloodEffect_2.paa",
- "\SM_Zombz\textures\badger\SM_ZombieBite.paa",
- "\SM_Zombz\textures\badger\SM_ZombieStrike_1.paa",
- "\SM_Zombz\textures\badger\SM_ZombieStrike_2.paa"
- };
- //DO NOT TOUCH ( NOT IMPLEMENTED )
- SM_InfectionIncrease = 0.25;
- SM_Infection = false;
- SM_InfectionChanceHigh = 100;
- SM_InfectionChanceLow = 85;
- SM_InfectionDamage = 0.01;
- SM_InfectionDelay = 2;
- /*
- SERVER SETTINGS
- */
- SM_NotificationEnabled = true; //Enable notification of killing zombies?
- SM_ZombieGutsLength = 300; //How long zombie guts last.
- SM_TownSearchTypes[] = //You're also able to put town names
- {
- "NameCityCapital",
- "NameLocal",
- "NameCity",
- "NameVillage"
- };
- SM_ZombieMaxDistanceTown = 50; // max distance to spawn zombies from a player in a town
- SM_ZombieMinDistanceTown = 15; // min distance to spawn zombies from a player in a town
- SM_SearchForTownRadius = 1000; // will search all towns near a player within 1000 meters.
- SM_ZombiesPerPlayerInTown = 15; // How many zombies a player have in a town.
- SM_ZombiesPerWaveTown = 7; // How many zombies to spawn on a player per wave in town.
- SM_HordeMarkerColor = "ColorRed"; // used for SM_HordeMarkerStyle.
- SM_HordeMarkerStyle = "hd_warning"; // if you have a marker you want to use, set SM_HordeMarkerType to 6.
- SM_HordeMarkerText = ""; //"!!! --- HORDE --- !!!"; // pretty obvious...
- SM_HordeMarkerCleanupEnabled = true; // cleanup the horde marker.
- SM_HordeMarkerType = 1; // 1-5 https://puu.sh/rUpoG/f0e0e59919.png
- SM_HordeNotificationText = "A zombie horde has spawned!";
- SM_DespawnZombieOrKill = false; // eanbled just kills the zombie. disabled despawns the zombie. (on cleanup)
- SM_ZombieSide = "east"; // side to create the zombie.
- SM_HordeNotificationEnabled = true; // notification for hordes.
- SM_HordeMarkerEnabled = true; // markers for hordes.
- SM_ZombiesPerWave = 5; // zombies to spawn on a player per wave.
- SM_HordeMaxDistance = 75; // max distance to spawn horde from a player.
- SM_HordeMinDistance = 15; // min distance to spawn horde from a player.
- SM_HordeMaxDistanceTown = 75; // max distance to spawn horde from a player, in a town.
- SM_HordeMinDistanceTown = 15; // min distance to spawn horde from a player, in a town.
- SM_HordeSpawnMaxDistanceFromPosition = 35; // max meters to spread out horde zombies from their spawn position.
- SM_HordeSpawnMinDistanceFromPosition = 5; // min meters to spread out horde zombies from their spawn position.
- SM_HordeSpawnMaxDistanceFromPositionTown = 20; // max meters to spread out horde zombies from their spawn position, in a town.
- SM_HordeSpawnMinDistanceFromPositionTown = 5; // min meters to spread out horde zombies from their spawn position, in a town.
- SM_ZombieSpawnMaxDistanceFromPosition = 15; // max meters to spread out zombies from their spawn position.
- SM_ZombieSpawnMinDistanceFromPosition = 5; // min meters to spread out zombies from their spawn position.
- SM_ZombieSpawnMaxDistanceFromPositionTown = 10; // min meters to spread out zombies from their spawn position, in a town
- SM_ZombieSpawnMinDistanceFromPositionTown = 5; // max meters to spread out zombies from their spawn position, in a town
- SM_HordeMarkerCleanup = 120; // time it takes for the horde marker to cleanup.
- SM_HordeSpawnDelay = 120; // in seconds how long it takes to do check to spawn hordes. (check horde chance)
- SM_HordesEnabled = true; // hordes enabled 1 = on.
- SM_SpawnHordeChance = 2.5; // chance to spawn a horde.
- SM_MaxZombiesInHorde = 50; // max zombies to spawn in a horde.
- SM_MinZombiesInHorde = 20; // min zombies to spawn in a horde.
- SM_MaxZombiesInHordeTown = 50; // max zombies to spawn in a horde, in a town.
- SM_MinZombiesInHordeTown = 5; // min zombies to spawn in horde, in a town.
- SM_ZombieCleanupDeath = 150; // how long it takes for a zombie body to get cleand up.
- SM_ZombieWaveCount = 5; // how many players to spawn zombies on per wave.
- SM_ZombieItemCount = 3; // max amount of items to spawn on a zombie when it's killed.
- SM_ZombieSpawnDelay = 180; // in seconds how long it takes to spawn more zombies.
- SM_ZombieMaxDistance = 50; // max distance to spawn zombies from a player.
- SM_ZombieMinDistance = 15; // min distance to spawn zombies from a player.
- SM_ZombieCleanup = 120; // in seconds when the cleanup runs.
- SM_ZombieCleanupDistance = 300; // cleanup zombies that are past this distance (from the controlling player)
- SM_MaxZombies = 200; // max zombies to have on map.
- SM_ZombiesPerPlayer = 10; // max zombies a player can have.
- SM_ZombieHealth = 0.7; // health a zombie can have. ( 1 = dead )
- SM_GiveZombiePoptabs = true; // enable giving zombies poptabs?
- SM_GiveCrpyto = true; // enable giving player crpyto when killed a zombie. //Epoch only
- SM_MaxCrypto = 50; // max amount of crpyto to give to killing player. //Epoch only
- SM_MaxPoptabs = 50; // max amount of poptabs to give zombies.
- SM_PoptabChanceHigh = 80; // not recommended to change.
- SM_PopTabsChanceLow = 50; // 100 - 65 = 35% chance.
- SM_GivePlayerRespect = true; // enable giving players respect when they kill a zombie.
- SM_MaxRespect = 35; // max amount of respect to give a player when they kill a zombie.
- SM_MaxChanceOfLoot = 80; // not recommended to change.
- SM_MinChanceOfLoot = 50; // 100 - 85 = 15% chance of a zombie having loot.
- SM_MaxItemDrop = 2; // maximum amount of loot to have on a zombie.
- SM_ShuffleArrayDelay = 300; // Time to randomize loot, and zombie spawn classes.
- SM_Zombie_GlowingFace = false; // glowing zombie face.
- SM_RespawnDelayForPlayerEnabled = true; // Enables delaying of spawns for a player.
- SM_RespawnDelayForPlayer = 180; // How long (in seconds) it waits to spawn more zombies for a player.
- SM_RespawnDelayForPlayerTown = 180; // how long (in seconds) it waits to spawn more zombies for a player in a town.
- SM_DisableZombieSpawnsUntilInNewZoneEnabled = false; // disable spawning of new zombies until a player gets in a new zone. (Requires zones to be enabled!)
- SM_TownSearchEnabled = true; // enable searching for towns.
- /*
- {
- // 0 {1250,219},
- // 1 1300,
- // 2 14,
- // 3 5,
- // 4 30,
- // 5 5,
- // 6 10,
- // 7 "SM_Zombz_Marker4"
- // 8 true,
- // 9 true,
- // 10 "ELLIPSE",
- // 11 "",
- // 12 "ColorRed",
- // 13 0.1,
- // 14 "SolidFull",
- // 15 0.5,
- // 16 15,
- // 17 300,
- // 18 {
- "SM_Zombz_walker1",
- "SM_Zombz_Runner1",
- "SM_Zombz_Crawler1"
- }
- }
- 0 - 2d position.
- 1 - max distance from 2d position.
- 2 - zombies per wave.
- 3 - min distance to spawn zombies from player.
- 4 - max distance to spawn zombies from player.
- 5 - min distance to spawn zombies from spawn position.
- 6 - max distance to spawn zombies from spawn position.
- 7 - Marker type.
- 8 - enable / disable marker.
- 9 - enable / disable area highlighter.
- 10 - area highlighter shape.
- 11 - marker text.
- 12 - area highlighter color.
- 13 - area highlighter alpha. ( from 0 to 1 )
- 14 - area highlighter brush type.
- 15 - marker alpha. ( from 0 to 1 )
- 16 - max zombies per player.
- 17 - spawn delay for zombies in seconds, for a player. (only works with SM_RespawnDelayForPlayerEnabled enabled!)
- 18 - Zombie classes to spawn at the zone, use {} for default classes.
- */
- SM_HordeZonesEnabled = false; // Zoning for hordes.
- SM_HordeCanSpawnRandomly = true; // horde randomly spawn, if player is in zone, it will use zone config.
- SM_ZombieZonesEnabled = false; // zombies spawn in zones, via the config below.
- SM_ZombiesCanSpawnRandomly = true; // zombies randomly spawn, even if a player is not in a zone.
- SM_HordeUseZombieZones = false; // horde zones will use the zombie zones (to make the config smaller) (will also use SM_MaxZombiesInHorde and SM_MinZombiesInHorde)
- SM_ZombieZones[] =
- {
- // some place
- {
- {11250,21119},
- 300,
- 14,
- 5,
- 30,
- 5,
- 10,
- "SM_Zombz_Marker4",
- true,
- true,
- "ELLIPSE",
- "Dizz is a testz",
- "ColorRed",
- 0.1,
- "SolidFull",
- 0.5,
- 15,
- 300,
- {
- "SM_Zombz_walker1",
- "SM_Zombz_Runner1",
- "SM_Zombz_Crawler1"
- }
- },
- //some other place
- {
- {6119,4120},
- 420,
- 14,
- 5,
- 30,
- 5,
- 10,
- "SM_Zombz_Marker1",
- true,
- true,
- "ELLIPSE",
- "",
- "ColorRed",
- 0.1,
- "SolidFull",
- 0.5,
- 15,
- 300,
- {}
- }
- };
- /* HORDE ZONE CONFIGURATION */
- /*
- {
- // 0 {1250,219},
- // 1 1300,
- // 2 5,
- // 3 30,
- // 4 5,
- // 5 10,
- // 6 5,
- // 7 20,
- // 8 "SM_Zombz_Marker4"
- // 9 true,
- // 10 true,
- // 11 "ELLIPSE",
- // 12 "",
- // 13 "ColorRed",
- // 14 0.1,
- // 15 "SolidFull",
- // 16 0.5,
- // 17 {}
- }
- 0 - 2d position.
- 1 - max distance from 2d position.
- 2 - min distance to spawn horde from player.
- 3 - max distance to spawn horde from player.
- 4 - min distance to spawn horde from spawn position.
- 5 - max distance to spawn horde from spawn position.
- 6 - min zombies to spawn in horde.
- 7 - max zombies to spawn in horde.
- 8 - Marker type.
- 9 - enable / disable marker.
- 10 - enable / disable area highlighter.
- 11 - area highlighter shape.
- 12 - marker text.
- 13 - area highlighter color.
- 14 - area highlighter alpha. ( from 0 to 1 )
- 15 - area highlighter brush type.
- 16 - marker alpha. ( from 0 to 1 )
- 17 - horde classes to spawn at the zone, use {} for default classes.
- */
- SM_ZombieHordeZones[] =
- {
- // some place
- {
- {11250,21119},
- 300,
- 5,
- 30,
- 5,
- 10,
- "SM_Zombz_Marker4",
- true,
- true,
- "ELLIPSE",
- "Dizz is a horde zone!",
- "ColorGreen",
- 0.1,
- "SolidFull",
- 0.5,
- {}
- }
- };
- /* THESE ARE FOR VANILLA ARMA 3, EXILE AND EPOCH SAFEZONES / BASES ARE AUTOMATICALLY DETECTED! */
- SM_UserBaseCheck = false; // Custom base checking
- SM_UserBaseCheckDistance = 50; // meters to check for custom base objects / plotpile
- SM_UserBaseCheckType = 1; //1 = object // 2 = marker
- SM_UserBaseCheckMarkerObjects = ""; //Object or marker type to check for
- SM_UserSafezoneCheck = false; // custom safezone checking
- SM_UserSafezoneCheckDistance = 50; // meters to check for objects / markers
- SM_UserSafezoneCheckType = 1; //1 = object // 2 = marker;
- SM_UserSafezoneCheckMarkerObjects = ""; //Object or marker type to check for
- /* THESE ARE FOR VANILLA ARMA 3, EXILE AND EPOCH SAFEZONES / BASES ARE AUTOMATICALLY DETECTED! */
- //long configurable settings...
- //GET YOUR LOOT HERE, GET YA LOOT, 50% OFF FIRST TIME!
- SM_LootItems[] =
- {
- "hgun_P07_F",
- "hgun_ACPC2_F",
- "hgun_Rook40_F"
- };
- //Will only use this if Exile is enabled.
- SM_LootItemsExile[] =
- {
- "Exile_Item_Magazine04",
- "Exile_Item_Magazine03",
- "Exile_Item_Magazine02",
- "Exile_Item_Magazine01",
- "Exile_Item_Moobar",
- "Exile_Item_Raisins",
- "Exile_Item_PowerDrink",
- "Exile_Item_SeedAstics",
- "Exile_Item_CockONut",
- "Exile_Item_Noodles",
- "Exile_Item_DsNuts",
- "Exile_Item_BBQSandwich",
- "Exile_Item_BeefParts",
- "Exile_Item_Dogfood",
- "Exile_Item_CatFood",
- "Exile_Item_MacasCheese",
- "Exile_Item_ChristmasTinner",
- "Exile_Item_SausageGravy",
- "Exile_Item_Surstromming",
- "Exile_Item_Cheathas",
- "Exile_Item_GloriousKnakworst",
- "Exile_Item_Matches",
- "Exile_Item_CanOpener",
- "Exile_Item_EMRE",
- "Exile_Item_CookingPot"
- };
- //Will only use this if Epoch is enabled.
- SM_LootItemsEpoch[] =
- {
- "WhiskeyNoodle",
- "FoodWalkNSons",
- "ItemSodaAlpineDude",
- "ItemSodaOrangeSherbet",
- "ItemSodaPurple",
- "ItemSodaMocha",
- "ItemSodaBurst",
- "ItemSodaRbull",
- "emptyjar_epoch",
- "ItemSodaEmpty",
- "FoodMeeps",
- "FoodSnooter",
- "FoodBioMeat",
- "TacticalBacon",
- "sardines_epoch",
- "meatballs_epoch",
- "scam_epoch",
- "sweetcorn_epoch",
- "honey_epoch",
- "ItemEmptyTin",
- "ItemCoolerE"
- };
- /*
- RUNNER CLASSES:
- "SM_Zombz_Runner1"
- to
- "SM_Zombz_Runner37"
- FEMALE RUNNER CLASSES:
- "SM_Zombz_FemaleRunner1"
- to
- "SM_Zombz_FemaleRunner5"
- */
- //Zombie classes used in towns, leave at {} to use default classes.
- SM_ZombieClassesTown[] = {};
- SM_HordeClassesTown[] = {};
- //Default zombie classes.
- SM_HordeClasses[] = {}; //leave at {} for SM_ZombieClasses
- SM_ZombieClasses[] =
- {
- "SM_Zombz_Runner1",
- "SM_Zombz_FemaleRunner1",
- "SM_Zombz_FemaleRunner2",
- "SM_Zombz_FemaleRunner3",
- "SM_Zombz_walker1",
- "SM_Zombz_walker2",
- "SM_Zombz_walker3",
- "SM_Zombz_walker4",
- "SM_Zombz_walker5",
- "SM_Zombz_walker6",
- "SM_Zombz_walker7",
- "SM_Zombz_walker8",
- "SM_Zombz_walker9",
- "SM_Zombz_walker10",
- "SM_Zombz_walker11",
- "SM_Zombz_walker12",
- "SM_Zombz_walker13",
- "SM_Zombz_walker14",
- "SM_Zombz_walker15",
- "SM_Zombz_walker16",
- "SM_Zombz_walker17",
- "SM_Zombz_walker18",
- "SM_Zombz_walker19",
- "SM_Zombz_walker20",
- "SM_Zombz_walker21",
- "SM_Zombz_walker22",
- "SM_Zombz_walker23",
- "SM_Zombz_walker24",
- "SM_Zombz_walker25",
- "SM_Zombz_walker26",
- "SM_Zombz_walker27",
- "SM_Zombz_walker28",
- "SM_Zombz_walker29",
- "SM_Zombz_walker30",
- "SM_Zombz_walker31",
- "SM_Zombz_walker32",
- "SM_Zombz_walker33",
- "SM_Zombz_walker34",
- "SM_Zombz_walker35",
- "SM_Zombz_walker36",
- "SM_Zombz_walker37",
- "SM_Zombz_walker1",
- "SM_Zombz_walker2",
- "SM_Zombz_walker3",
- "SM_Zombz_walker4",
- "SM_Zombz_walker5",
- "SM_Zombz_walker6",
- "SM_Zombz_walker7",
- "SM_Zombz_walker8",
- "SM_Zombz_walker9",
- "SM_Zombz_walker10",
- "SM_Zombz_walker11",
- "SM_Zombz_walker12",
- "SM_Zombz_walker13",
- "SM_Zombz_walker14",
- "SM_Zombz_walker15",
- "SM_Zombz_walker16",
- "SM_Zombz_walker17",
- "SM_Zombz_walker18",
- "SM_Zombz_walker19",
- "SM_Zombz_walker20",
- "SM_Zombz_walker21",
- "SM_Zombz_walker22",
- "SM_Zombz_walker23",
- "SM_Zombz_walker24",
- "SM_Zombz_walker25",
- "SM_Zombz_walker26",
- "SM_Zombz_walker27",
- "SM_Zombz_walker28",
- "SM_Zombz_walker29",
- "SM_Zombz_walker30",
- "SM_Zombz_walker31",
- "SM_Zombz_walker32",
- "SM_Zombz_walker33",
- "SM_Zombz_walker34",
- "SM_Zombz_walker35",
- "SM_Zombz_walker36",
- "SM_Zombz_walker37",
- "SM_Zombz_FemaleWalker1",
- "SM_Zombz_FemaleWalker2",
- "SM_Zombz_FemaleWalker3",
- "SM_Zombz_FemaleWalker4",
- "SM_Zombz_FemaleWalker5",
- "SM_Zombz_FemaleCrawler1",
- "SM_Zombz_FemaleCrawler2",
- "SM_Zombz_FemaleCrawler3",
- "SM_Zombz_FemaleCrawler4",
- "SM_Zombz_FemaleCrawler5",
- "SM_Zombz_Crawler1",
- "SM_Zombz_Crawler2",
- "SM_Zombz_Crawler3",
- "SM_Zombz_Crawler4",
- "SM_Zombz_Crawler5"
- };
- // faces...
- SM_FacesArray[] =
- {
- "SM_Zombie1",
- "SM_Zombie2",
- "SM_Zombie3",
- "SM_Zombie4",
- "SM_Zombie5",
- "SM_Zombie6",
- "SM_Zombie7",
- "SM_Zombie8",
- "SM_Zombie9",
- "SM_Zombie10",
- "SM_Zombie11",
- "SM_Zombie13",
- "SM_Zombie14",
- "SM_Zombie15",
- "SM_Zombie16",
- "SM_Zombie17",
- "SM_Zombie18",
- "SM_Zombie19",
- "SM_Zombie20",
- "SM_Zombie21",
- "SM_Zombie22",
- "SM_Zombie23",
- "SM_Zombie24",
- "SM_Zombie25",
- "SM_Zombie26",
- "SM_Zombie27",
- "SM_Zombie28",
- "SM_Zombie29",
- "SM_Zombie30",
- "SM_Zombie31",
- "SM_Zombie32"
- };
- SM_FaceFemaleArray[] =
- {
- "SM_ZombieFemale1",
- "SM_ZombieFemale2",
- "SM_ZombieFemale3"
- };
- //Sounds start
- SM_ZombieBiteArray[] =
- {
- "SM_ZombieBite"
- };
- SM_AttackArray[] =
- {
- "attack_0",
- "attack_1",
- "attack_2",
- "attack_3",
- "attack_4",
- "attack_5",
- "attack_6",
- "attack_7",
- "attack_8",
- "attack_9",
- "attack_10",
- "attack_10",
- "attack_11",
- "attack_12",
- "attack_13"
- };
- SM_AggressiveArray[] =
- {
- "spotted_0",
- "spotted_1",
- "spotted_2",
- "spotted_3",
- "spotted_4",
- "spotted_5",
- "spotted_6",
- "spotted_7",
- "spotted_8",
- "spotted_9",
- "spotted_10",
- "spotted_11",
- "spotted_12",
- "spotted_13"
- };
- SM_JumpArray[] =
- {
- "attack_0",
- "attack_1",
- "attack_2",
- "attack_3",
- "attack_4",
- "attack_5",
- "attack_6",
- "attack_7",
- "attack_8",
- "attack_9",
- "attack_10",
- "attack_11",
- "attack_12",
- "attack_13"
- };
- SM_CrawlerEatingArray[] =
- {
- "attack_0",
- "attack_1",
- "attack_2",
- "attack_3",
- "attack_4",
- "attack_5",
- "attack_6",
- "attack_7",
- "attack_8",
- "attack_9",
- "attack_10",
- "attack_11",
- "attack_12",
- "attack_13"
- };
- SM_EatingArray[] =
- {
- "attack_0",
- "attack_1",
- "attack_2",
- "attack_3",
- "attack_4",
- "attack_5",
- "attack_6",
- "attack_7",
- "attack_8",
- "attack_9",
- "attack_10",
- "attack_11",
- "attack_12",
- "attack_13"
- };
- SM_MoanArray[] =
- {
- "idle_0",
- "idle_1",
- "idle_2",
- "idle_3",
- "idle_4",
- "idle_5",
- "idle_6",
- "idle_7",
- "idle_8",
- "idle_9",
- "idle_10",
- "idle_11",
- "idle_12",
- "idle_13",
- "idle_14",
- "idle_15",
- "idle_16",
- "idle_17",
- "idle_18",
- "idle_19",
- "idle_20",
- "idle_21",
- "idle_22",
- "idle_23",
- "idle_24",
- "idle_25",
- "idle_26",
- "idle_27",
- "idle_28",
- "idle_29",
- "idle_30",
- "idle_31",
- "idle_32",
- "idle_33",
- "idle_34",
- "idle_35"
- };
- SM_ScreamArray[] =
- {
- "chase_0",
- "chase_1",
- "chase_2",
- "chase_3",
- "chase_4",
- "chase_5",
- "chase_6",
- "chase_7",
- "chase_8",
- "chase_9",
- "chase_10",
- "chase_11",
- "chase_12",
- "chase_13",
- "chase_14"
- };
- SM_VehicleHitArray[] =
- {
- "attack_0",
- "attack_1",
- "attack_2",
- "attack_3",
- "attack_4",
- "attack_5",
- "attack_6",
- "attack_7",
- "attack_8",
- "attack_9",
- "attack_10",
- "attack_11",
- "attack_12",
- "attack_13"
- };
- SM_ThrowArray[] =
- {
- "attack_0",
- "attack_1",
- "attack_2",
- "attack_3",
- "attack_4",
- "attack_5",
- "attack_6",
- "attack_7",
- "attack_8",
- "attack_9",
- "attack_10",
- "attack_11",
- "attack_12",
- "attack_13"
- };
- SM_CrawlerAggressiveArray[] =
- {
- "spotted_0",
- "spotted_1",
- "spotted_2",
- "spotted_3",
- "spotted_4",
- "spotted_5",
- "spotted_6",
- "spotted_7",
- "spotted_8",
- "spotted_9",
- "spotted_10",
- "spotted_11",
- "spotted_12",
- "spotted_13"
- };
- SM_CrawlerAttackArray[] =
- {
- "attack_0",
- "attack_1",
- "attack_2",
- "attack_3",
- "attack_4",
- "attack_5",
- "attack_6",
- "attack_7",
- "attack_8",
- "attack_9",
- "attack_10",
- "attack_11",
- "attack_12",
- "attack_13"
- };
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement