diff --git a/Libraries/Core/Controllers/BotController.cs b/Libraries/Core/Controllers/BotController.cs index 5c725a62..b3f155cf 100644 --- a/Libraries/Core/Controllers/BotController.cs +++ b/Libraries/Core/Controllers/BotController.cs @@ -346,8 +346,10 @@ public class BotController( /// bot cap for map public int GetBotCap(string location) { - var botCap = _botConfig.MaxBotCap.FirstOrDefault(x => - string.Equals(x.Key.ToLower(), location.ToLower(), StringComparison.OrdinalIgnoreCase)); + if (!_botConfig.MaxBotCap.TryGetValue(location.ToLower(), out var maxCap)) + { + return _botConfig.MaxBotCap["default"]; + } if (location == "default") { _logger.Warning( @@ -355,7 +357,7 @@ public class BotController( ); } - return botCap.Value; + return maxCap; } /// diff --git a/Libraries/Core/Controllers/GameController.cs b/Libraries/Core/Controllers/GameController.cs index 44c50a47..c6774814 100644 --- a/Libraries/Core/Controllers/GameController.cs +++ b/Libraries/Core/Controllers/GameController.cs @@ -69,14 +69,11 @@ public class GameController( return; } - _profileActivityService.SetActivityTimestamp(sessionId); - // repeatableQuests are stored by in profile.Quests due to the responses of the client (e.g. Quests in // offraidData). Since we don't want to clutter the Quests list, we need to remove all completed (failed or // successful) repeatable quests. We also have to remove the Counters from the repeatableQuests var fullProfile = _profileHelper.GetFullProfile(sessionId); - if (fullProfile is null) { _logger.Error($"{nameof(fullProfile)} is null on GameController.GameStart"); @@ -85,6 +82,7 @@ public class GameController( fullProfile.SptData ??= new Spt { + //TODO: complete Version = "Replace_me" }; fullProfile.SptData.Migrations ??= new Dictionary(); @@ -135,6 +133,12 @@ public class GameController( _profileFixerService.AddMissingHideoutBonusesToProfile(pmcProfile); _hideoutHelper.SetHideoutImprovementsToCompleted(pmcProfile); _hideoutHelper.UnlockHideoutWallInProfile(pmcProfile); + + // Handle if player has been inactive for a long time, catch up on hideout update before the user goes to his hideout + if (!_profileActivityService.ActiveWithinLastMinutes(sessionId, _hideoutConfig.UpdateProfileHideoutWhenActiveWithinMinutes)) + { + _hideoutHelper.UpdatePlayerHideout(sessionId); + } } LogProfileDetails(fullProfile); @@ -152,6 +156,9 @@ public class GameController( } _seasonalEventService.GivePlayerSeasonalGifts(sessionId); + + // Set activity timestamp at the end of the method, so that code that checks for an older timestamp (Updating hideout) can still run + _profileActivityService.SetActivityTimestamp(sessionId); } /// diff --git a/Libraries/Core/Generators/BotWeaponGenerator.cs b/Libraries/Core/Generators/BotWeaponGenerator.cs index efb65a01..4feb9203 100644 --- a/Libraries/Core/Generators/BotWeaponGenerator.cs +++ b/Libraries/Core/Generators/BotWeaponGenerator.cs @@ -665,6 +665,7 @@ public class BotWeaponGenerator( return cartridges; } + // Fallback to the magazine if possible, e.g. for revolvers return GetCompatibleCartridgesFromMagazineTemplate(weaponTemplate); } diff --git a/Libraries/Core/Helpers/BotDifficultyHelper.cs b/Libraries/Core/Helpers/BotDifficultyHelper.cs index 5a67b74b..f4eb248f 100644 --- a/Libraries/Core/Helpers/BotDifficultyHelper.cs +++ b/Libraries/Core/Helpers/BotDifficultyHelper.cs @@ -32,7 +32,9 @@ public class BotDifficultyHelper( /// Difficulty object public DifficultyCategories GetBotDifficultySettings(string type, string desiredDifficulty, Bots botDb) { - var desiredType = type.ToLower(); + var desiredType = _botHelper.IsBotPmc(type) + ? _botHelper.GetPmcSideByRole(type).ToLower() + : type.ToLower(); if (!botDb.Types.ContainsKey(desiredType)) { // No bot found, get fallback difficulty values diff --git a/Libraries/Core/Helpers/HideoutHelper.cs b/Libraries/Core/Helpers/HideoutHelper.cs index 8c908631..e88f2c51 100644 --- a/Libraries/Core/Helpers/HideoutHelper.cs +++ b/Libraries/Core/Helpers/HideoutHelper.cs @@ -449,7 +449,7 @@ public class HideoutHelper( var production = pmcData.Hideout.Production[prodId]; // Check if we're already complete, skip - if (production.AvailableForFinish ?? false) + if ((production.AvailableForFinish ?? false) && !production.InProgress.GetValueOrDefault(false)) { return; } @@ -480,8 +480,9 @@ public class HideoutHelper( // Craft is complete, flas as such production.AvailableForFinish = true; - // Reset progress so its not over production time - production.Progress = production.ProductionTime; + // The client expects `Progress` to be 0, and `inProgress` to be false when a circle is complete + production.Progress = 0; + production.InProgress = false; } /// diff --git a/Libraries/Core/Models/Eft/Common/Globals.cs b/Libraries/Core/Models/Eft/Common/Globals.cs index f88cc28a..66afbd70 100644 --- a/Libraries/Core/Models/Eft/Common/Globals.cs +++ b/Libraries/Core/Models/Eft/Common/Globals.cs @@ -9512,6 +9512,13 @@ public record AudioSettings set; } + [JsonPropertyName("HeadphonesSettings")] + public HeadphoneSettings HeadphonesSettings + { + get; + set; + } + [JsonPropertyName("MetaXRAudioPluginSettings")] public MetaXRAudioPluginSettings? MetaXRAudioPluginSettings { @@ -9624,6 +9631,26 @@ public record EnvironmentSettings } } +public record HeadphoneSettings +{ + public double FadeDuration + { + get; + set; + } + + public string FadeIn + { + get; + set; + } + + public string FadeOut + { + get; + set; + } +} public record MetaXRAudioPluginSettings { public bool? EnabledPluginErrorChecker diff --git a/Libraries/Core/Models/Eft/Common/LocationBase.cs b/Libraries/Core/Models/Eft/Common/LocationBase.cs index 76df7d41..a29d3fd5 100644 --- a/Libraries/Core/Models/Eft/Common/LocationBase.cs +++ b/Libraries/Core/Models/Eft/Common/LocationBase.cs @@ -327,6 +327,20 @@ public record LocationBase set; } + [JsonPropertyName("HeatmapCellSize")] + public XYZ? HeatmapCellSize + { + get; + set; + } + + [JsonPropertyName("HeatmapLayers")] + public List? HeatmapLayers + { + get; + set; + } + [JsonPropertyName("IconX")] public double? IconX { @@ -1277,6 +1291,90 @@ public record BotLocationModifier get; set; } + + [JsonPropertyName("FogVisibilityDistanceCoef")] + public double? FogVisibilityDistanceCoef + { + get; + set; + } + + [JsonPropertyName("FogVisibilitySpeedCoef")] + public double? FogVisibilitySpeedCoef + { + get; + set; + } + + [JsonPropertyName("LockSpawnCheckRadius")] + public double? FogVisibLockSpawnCheckRadiusilitySpeedCoef + { + get; + set; + } + + [JsonPropertyName("LockSpawnCheckRadiusPvE")] + public double? LockSpawnCheckRadiusPvE + { + get; + set; + } + + [JsonPropertyName("LockSpawnStartTime")] + public double? LockSpawnStartTime + { + get; + set; + } + + [JsonPropertyName("LockSpawnStartTimePvE")] + public double? LockSpawnStartTimePvE + { + get; + set; + } + + [JsonPropertyName("LockSpawnStepTime")] + public double? LockSpawnStepTime + { + get; + set; + } + + [JsonPropertyName("LockSpawnStepTimePvE")] + public double? LockSpawnStepTimePvE + { + get; + set; + } + + [JsonPropertyName("NonWaveSpawnBotsLimitPerPlayer")] + public double? NonWaveSpawnBotsLimitPerPlayer + { + get; + set; + } + + [JsonPropertyName("NonWaveSpawnBotsLimitPerPlayerPvE")] + public double? NonWaveSpawnBotsLimitPerPlayerPvE + { + get; + set; + } + + [JsonPropertyName("RainVisibilityDistanceCoef")] + public double? RainVisibilityDistanceCoef + { + get; + set; + } + + [JsonPropertyName("RainVisibilitySpeedCoef")] + public double? RainVisibilitySpeedCoef + { + get; + set; + } } public record AdditionalHostilitySettings diff --git a/Libraries/Core/Models/Eft/Common/Tables/BotBase.cs b/Libraries/Core/Models/Eft/Common/Tables/BotBase.cs index e4cd5648..1c650e2d 100644 --- a/Libraries/Core/Models/Eft/Common/Tables/BotBase.cs +++ b/Libraries/Core/Models/Eft/Common/Tables/BotBase.cs @@ -1605,7 +1605,10 @@ public record Hideout set; } - public double? Seed + /// + /// 32 char hex value + /// + public string? Seed { get; set; diff --git a/Libraries/Core/Models/Spt/Config/HideoutConfig.cs b/Libraries/Core/Models/Spt/Config/HideoutConfig.cs index 5f540eb6..732ee58b 100644 --- a/Libraries/Core/Models/Spt/Config/HideoutConfig.cs +++ b/Libraries/Core/Models/Spt/Config/HideoutConfig.cs @@ -88,6 +88,12 @@ public record HideoutConfig : BaseConfig public record HideoutCraftToAdd { + [JsonPropertyName("newId")] + public string NewId + { + get; + set; + } [JsonPropertyName("requirements")] public List Requirements { diff --git a/Libraries/Core/Services/CreateProfileService.cs b/Libraries/Core/Services/CreateProfileService.cs index 1d0c3c8d..145449bc 100644 --- a/Libraries/Core/Services/CreateProfileService.cs +++ b/Libraries/Core/Services/CreateProfileService.cs @@ -1,3 +1,4 @@ +using System.Security.Cryptography; using Core.Generators; using Core.Helpers; using Core.Models.Eft.Common; @@ -63,7 +64,7 @@ public class CreateProfileService( pmcData.Customization.Head = request.HeadId; pmcData.Health.UpdateTime = _timeUtil.GetTimeStamp(); pmcData.Quests = []; - pmcData.Hideout.Seed = _timeUtil.GetTimeStamp() + 8 * 60 * 60 * 24 * 365; // 8 years in future why? who knows, we saw it in live + pmcData.Hideout.Seed = Convert.ToHexStringLower(RandomNumberGenerator.GetBytes(16)); pmcData.RepeatableQuests = []; pmcData.CarExtractCounts = new Dictionary(); pmcData.CoopExtractCounts = new Dictionary(); diff --git a/Libraries/Core/Services/PostDbLoadService.cs b/Libraries/Core/Services/PostDbLoadService.cs index b60777c2..f6db63ed 100644 --- a/Libraries/Core/Services/PostDbLoadService.cs +++ b/Libraries/Core/Services/PostDbLoadService.cs @@ -156,7 +156,14 @@ public class PostDbLoadService( var clonedCraft = _cloner.Clone( hideoutCraftDb.Recipes.FirstOrDefault(x => x.Id == craftToAdd.CraftIdToCopy) ); - clonedCraft.Id = _hashUtil.Generate(); + if (clonedCraft is null) + { + _logger.Warning($"Unable to find hideout craft: {craftToAdd.CraftIdToCopy}, skipping"); + + continue; + } + + clonedCraft.Id = craftToAdd.NewId; clonedCraft.Requirements = craftToAdd.Requirements; clonedCraft.EndProduct = craftToAdd.CraftOutputTpl; diff --git a/Libraries/SptAssets/Assets/configs/core.json b/Libraries/SptAssets/Assets/configs/core.json index 6ca97cde..0dada511 100644 --- a/Libraries/SptAssets/Assets/configs/core.json +++ b/Libraries/SptAssets/Assets/configs/core.json @@ -1,7 +1,7 @@ { "sptVersion": "4.0.0", "projectName": "SPT", - "compatibleTarkovVersion": "0.16.0.35146", + "compatibleTarkovVersion": "0.16.0.35328", "serverName": "SPT Server", "profileSaveIntervalSeconds": 15, "sptFriendNickname": "SPT", diff --git a/Libraries/SptAssets/Assets/configs/hideout.json b/Libraries/SptAssets/Assets/configs/hideout.json index 2e6ae009..11f8aa3e 100644 --- a/Libraries/SptAssets/Assets/configs/hideout.json +++ b/Libraries/SptAssets/Assets/configs/hideout.json @@ -210,6 +210,7 @@ }, "hideoutCraftsToAdd": [ { + "newId": "67c5e55af344981d56050e7d", "craftIdToCopy": "66582be04de4820934746cea", "craftOutputTpl": "665829424de4820934746ce6", "requirements": [ @@ -232,6 +233,7 @@ ] }, { + "newId": "67c5e56ef344981d56050e7e", "craftIdToCopy": "66582be04de4820934746cea", "craftOutputTpl": "6658291eefd94e2d665b14a4", "requirements": [ @@ -254,6 +256,7 @@ ] }, { + "newId": "67c5eb0d533c65affb6732f7", "craftIdToCopy": "66582be04de4820934746cea", "craftOutputTpl": "665829a6efd94e2d665b14a8", "requirements": [ @@ -276,6 +279,7 @@ ] }, { + "newId": "67c5eb17ec157da6c94dea6c", "craftIdToCopy": "66582be04de4820934746cea", "craftOutputTpl": "665886abdaadd1069736c539", "requirements": [ @@ -298,6 +302,7 @@ ] }, { + "newId": "67c5eb28a475f1532525477e", "craftIdToCopy": "66582be04de4820934746cea", "craftOutputTpl": "6658876e146af22739040fad", "requirements": [ @@ -320,6 +325,7 @@ ] }, { + "newId": "67c5eb3036d41e7e85c62f06", "craftIdToCopy": "66582be04de4820934746cea", "craftOutputTpl": "6658892e6e007c6f33662002", "requirements": [ diff --git a/Libraries/SptAssets/Assets/database/bots/core.json b/Libraries/SptAssets/Assets/database/bots/core.json index 6b8f5a4b..b547570a 100644 --- a/Libraries/SptAssets/Assets/database/bots/core.json +++ b/Libraries/SptAssets/Assets/database/bots/core.json @@ -31,7 +31,7 @@ "FLARE_POWER": 8.0, "MOVE_COEF": 1.2, "PRONE_POSE": 0.7, - "LOWER_POSE": 0.5, + "LOWER_POSE": 1, "MAX_POSE": 1.5, "FLARE_TIME": 1.5, "MAX_REQUESTS__PER_GROUP": 10, diff --git a/Libraries/SptAssets/Assets/database/bots/types/assault.json b/Libraries/SptAssets/Assets/database/bots/types/assault.json index 571dc8b8..a3eb1e90 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/assault.json +++ b/Libraries/SptAssets/Assets/database/bots/types/assault.json @@ -121,8 +121,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 30, "BASE_HIT_AFFECTION_DELAY_SEC": 1.77, - "BASE_HIT_AFFECTION_MAX_ANG": 28, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 36, + "BASE_HIT_AFFECTION_MIN_ANG": 20, "BASE_SHIEF": 1, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.7, @@ -209,14 +209,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -230,7 +230,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -394,6 +394,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -579,6 +580,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, @@ -614,8 +616,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 30, "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 30, + "BASE_HIT_AFFECTION_MIN_ANG": 20, "BASE_SHIEF": 0.5, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.8, @@ -708,14 +710,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -729,7 +731,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -893,6 +895,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -1078,6 +1081,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, @@ -1113,8 +1117,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 10, "BASE_HIT_AFFECTION_DELAY_SEC": 0.17, - "BASE_HIT_AFFECTION_MAX_ANG": 8, - "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_HIT_AFFECTION_MAX_ANG": 12, + "BASE_HIT_AFFECTION_MIN_ANG": 9, "BASE_SHIEF": 0.05, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.7, @@ -1206,14 +1210,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1227,7 +1231,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.01, + "GainSightCoef": 20, "HearingSense": 3.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1390,6 +1394,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.8, "MAX_VISION_GRASS_METERS_FLARE": 8, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -1567,6 +1572,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, @@ -1602,8 +1608,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 30, "BASE_HIT_AFFECTION_DELAY_SEC": 1.17, - "BASE_HIT_AFFECTION_MAX_ANG": 24, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 32, + "BASE_HIT_AFFECTION_MIN_ANG": 19, "BASE_SHIEF": 0.8, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.8, @@ -1696,14 +1702,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1717,7 +1723,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1881,6 +1887,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -2070,6 +2077,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bear.json b/Libraries/SptAssets/Assets/database/bots/types/bear.json index 686d2d4f..1478f37f 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bear.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bear.json @@ -159,8 +159,8 @@ "BAD_SHOOTS_MAX": 6, "BAD_SHOOTS_MIN": 2, "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_HIT_AFFECTION_MAX_ANG": 30, + "BASE_HIT_AFFECTION_MIN_ANG": 20, "BASE_SHIEF": 0.05, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.9, @@ -183,8 +183,8 @@ "MAX_TIME_DISCARD_AIM_SEC": 0.6, "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, + "NEXT_SHOT_MISS_CHANCE_100": 95, + "NEXT_SHOT_MISS_Y_OFFSET": 0.25, "OFFSET_RECAL_ANYWAY_TIME": 1, "PANIC_ACCURATY_COEF": 1.2, "PANIC_COEF": 1.2, @@ -248,14 +248,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -269,7 +269,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 5, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -311,8 +311,8 @@ "MOVE_TO_COVER_WHEN_TARGET": false, "NOT_LOOK_AT_WALL_IS_DANGER": true, "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 5, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 1, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 15, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 5, "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, "RUN_IF_FAR": 15, "RUN_IF_FAR_SQRT": 225, @@ -322,6 +322,8 @@ "SPOTTED_COVERS_RADIUS": 2.5, "SPOTTED_GRENADE_RADIUS": 16, "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_CAN_USE": false, + "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 2, "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, "STAY_IF_FAR": 25, @@ -485,7 +487,7 @@ "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 19, + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 25, "DIST_TO_ENEMY_YO_CAN_HEAL": 60, "DIST_TO_FOUND_SQRT": 400, "DIST_TO_STOP_RUN_ENEMY": 15, @@ -501,7 +503,7 @@ "FRIEND_DEAD_AGR_LOW": -0.2, "GROUP_ANY_PHRASE_DELAY": 45, "GROUP_EXACTLY_PHRASE_DELAY": 60, - "HEAL_DELAY_SEC": 1, + "HEAL_DELAY_SEC": 5, "HIT_DELAY_WHEN_HAVE_SMT": -1, "HIT_DELAY_WHEN_PEACE": -1, "HIT_POINT_DETECTION": 4, @@ -527,6 +529,7 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 20000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 9, @@ -640,6 +643,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -677,7 +681,7 @@ "BAD_SHOOTS_MAX": 1, "BAD_SHOOTS_MIN": 1, "BASE_HIT_AFFECTION_DELAY_SEC": 0.1, - "BASE_HIT_AFFECTION_MAX_ANG": 4, + "BASE_HIT_AFFECTION_MAX_ANG": 10, "BASE_HIT_AFFECTION_MIN_ANG": 2, "BASE_SHIEF": 0.03, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, @@ -766,14 +770,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -787,7 +791,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 10, "HearingSense": 1.25, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -811,7 +815,7 @@ "DIST_CANT_CHANGE_WAY_SQR": 25, "DIST_CHECK_SFETY": 15, "DOG_FIGHT_AFTER_LEAVE": 3, - "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 5, + "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 15, "ENEMY_DIST_TO_GO_OUT": 6, "GOOD_DIST_TO_POINT_COEF": 9999, "HIDE_TO_COVER_TIME": 5, @@ -841,7 +845,7 @@ "SPOTTED_GRENADE_RADIUS": 16, "SPOTTED_GRENADE_TIME": 7, "STATIONARY_CAN_USE": false, - "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 1, + "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 2, "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, "STATIONARY_WEAPON_NO_ENEMY_GETUP": 5, "STAY_IF_FAR": 25, @@ -956,6 +960,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 993, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.8, "MAX_VISION_GRASS_METERS_FLARE": 8, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -997,14 +1002,14 @@ "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 10, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 100, "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 30, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, "DAMAGE_REDUCTION_TIME_SEC": 20, "DANGER_POINT_CHOOSE_COEF": 1, "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 10, + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 25, "DIST_TO_ENEMY_YO_CAN_HEAL": 60, "DIST_TO_FOUND_SQRT": 400, "DIST_TO_STOP_RUN_ENEMY": 15, @@ -1046,6 +1051,7 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 20000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 9, @@ -1159,6 +1165,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1285,14 +1292,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1306,7 +1313,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.02, + "GainSightCoef": 15, "HearingSense": 1.25, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1330,7 +1337,7 @@ "DIST_CANT_CHANGE_WAY_SQR": 25, "DIST_CHECK_SFETY": 15, "DOG_FIGHT_AFTER_LEAVE": 1, - "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 5, + "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 15, "ENEMY_DIST_TO_GO_OUT": 5, "GOOD_DIST_TO_POINT_COEF": 9999, "HIDE_TO_COVER_TIME": 5, @@ -1360,7 +1367,7 @@ "SPOTTED_GRENADE_RADIUS": 23, "SPOTTED_GRENADE_TIME": 7, "STATIONARY_CAN_USE": false, - "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 1, + "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 2, "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, "STATIONARY_WEAPON_NO_ENEMY_GETUP": 5, "STAY_IF_FAR": 25, @@ -1516,14 +1523,14 @@ "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 10, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 100, "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 30, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, "DAMAGE_REDUCTION_TIME_SEC": 20, "DANGER_POINT_CHOOSE_COEF": 1, "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 10, + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 25, "DIST_TO_ENEMY_YO_CAN_HEAL": 60, "DIST_TO_FOUND_SQRT": 400, "DIST_TO_STOP_RUN_ENEMY": 15, @@ -1565,6 +1572,7 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 20000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 0.5, @@ -1676,6 +1684,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1713,8 +1722,8 @@ "BAD_SHOOTS_MAX": 3, "BAD_SHOOTS_MIN": 1, "BASE_HIT_AFFECTION_DELAY_SEC": 0.3, - "BASE_HIT_AFFECTION_MAX_ANG": 7, - "BASE_HIT_AFFECTION_MIN_ANG": 2, + "BASE_HIT_AFFECTION_MAX_ANG": 14, + "BASE_HIT_AFFECTION_MIN_ANG": 28, "BASE_SHIEF": 0.04, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.9, @@ -1802,14 +1811,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1823,7 +1832,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 7, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1847,7 +1856,7 @@ "DIST_CANT_CHANGE_WAY_SQR": 25, "DIST_CHECK_SFETY": 10, "DOG_FIGHT_AFTER_LEAVE": 4, - "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 5, + "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 15, "ENEMY_DIST_TO_GO_OUT": 3, "GOOD_DIST_TO_POINT_COEF": 9999, "HIDE_TO_COVER_TIME": 5, @@ -1877,7 +1886,7 @@ "SPOTTED_GRENADE_RADIUS": 16, "SPOTTED_GRENADE_TIME": 7, "STATIONARY_CAN_USE": false, - "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 1, + "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 2, "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, "STAY_IF_FAR": 25, @@ -2034,15 +2043,15 @@ "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 10, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 100, "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 30, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, "DAMAGE_REDUCTION_TIME_SEC": 20, "DANGER_POINT_CHOOSE_COEF": 1, "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 10, - "DIST_TO_ENEMY_YO_CAN_HEAL": 40, + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 25, + "DIST_TO_ENEMY_YO_CAN_HEAL": 50, "DIST_TO_FOUND_SQRT": 400, "DIST_TO_STOP_RUN_ENEMY": 15, "DOG_FIGHT_IN": 3, @@ -2083,6 +2092,7 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 20000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 5, @@ -2196,6 +2206,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -2966,8 +2977,8 @@ "5e023e6e34d52a55c3304f71": 10, "5e023e88277cce2b522ff2b1": 5, "5efb0c1bd79ff02a1f5e68d9": 3, - "6769b8e3c1a1466c850658a8": 3, - "6768c25aa7b238f14a08d3f6": 2 + "6768c25aa7b238f14a08d3f6": 2, + "6769b8e3c1a1466c850658a8": 3 }, "Caliber762x54R": { "560d61e84bdc2da74d8b4571": 90, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bossboar.json b/Libraries/SptAssets/Assets/database/bots/types/bossboar.json index 523f54c4..e4dc6234 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bossboar.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bossboar.json @@ -192,14 +192,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -213,7 +213,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -369,7 +369,7 @@ "Look": { "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -749,14 +749,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -770,7 +770,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -926,7 +926,7 @@ "Look": { "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -1306,14 +1306,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1327,7 +1327,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1483,7 +1483,7 @@ "Look": { "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -1863,14 +1863,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1884,7 +1884,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2040,7 +2040,7 @@ "Look": { "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bossboarsniper.json b/Libraries/SptAssets/Assets/database/bots/types/bossboarsniper.json index b410fe8e..feaa4312 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bossboarsniper.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bossboarsniper.json @@ -3,1595 +3,2022 @@ "body": { "5cde9f337d6c8b0474535da8": 1998, "5d28ad6986f77429275dba22": 1965, - "5fd22d311add82653b5a704c": 1296, - "5fd1eb3fbe3b7107d66cb645": 1304 + "5fd1eb3fbe3b7107d66cb645": 1304, + "5fd22d311add82653b5a704c": 1296 }, "feet": { - "5d28af5386f774292364a6e8": 1983, - "6033a430ed2e0509b15f9033": 1314, "5cc2e5d014c02e15d53d9c03": 1966, - "5d5e7f8986f7742798716582": 1300 + "5d28af5386f774292364a6e8": 1983, + "5d5e7f8986f7742798716582": 1300, + "6033a430ed2e0509b15f9033": 1314 }, "hands": { "5cc2e68f14c02e28b47de290": 3963, - "5fd7901bdd870108a754c0e6": 1296, - "5fd78fe9e3bfcf6cab4c9f54": 1304 + "5fd78fe9e3bfcf6cab4c9f54": 1304, + "5fd7901bdd870108a754c0e6": 1296 }, "head": { - "5cde9ff17d6c8b0474535daa": 1324, "5cc2e4d014c02e000d0115f8": 1319, - "5f68c4c217d579077152a252": 1312, + "5cde9ff17d6c8b0474535daa": 1324, "5d28afe786f774292668618d": 1310, - "5f68c4a7c174a17c0f4c8945": 1297 + "5f68c4a7c174a17c0f4c8945": 1297, + "5f68c4c217d579077152a252": 1312 }, "voice": { "Scav_1": 1098, - "Scav_4": 1095, - "Scav_3": 1082, - "Scav_6": 1114, "Scav_2": 1091, - "Scav_5": 1082 + "Scav_3": 1082, + "Scav_4": 1095, + "Scav_5": 1082, + "Scav_6": 1114 + } + }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 77, + "Backpack": 0, + "Earpiece": 75, + "Eyewear": 45, + "FaceCover": 52, + "FirstPrimaryWeapon": 100, + "Headwear": 98, + "Holster": 100, + "Pockets": 100, + "Scabbard": 1, + "SecondPrimaryWeapon": 0, + "SecuredContainer": 100, + "TacticalVest": 100 + }, + "equipmentMods": { + "back_plate": 75, + "front_plate": 100, + "left_side_plate": 54, + "right_side_plate": 54 + }, + "weaponMods": { + "mod_bipod": 0, + "mod_charge": 10, + "mod_foregrip": 92, + "mod_launcher": 0, + "mod_magazine": 100, + "mod_mount": 56, + "mod_mount_000": 89, + "mod_mount_001": 35, + "mod_mount_002": 20, + "mod_mount_003": 100, + "mod_mount_004": 0, + "mod_muzzle": 81, + "mod_pistol_grip": 0, + "mod_reciever": 100, + "mod_scope": 85, + "mod_scope_000": 100, + "mod_scope_001": 100, + "mod_scope_002": 100, + "mod_scope_003": 100, + "mod_sight_front": 71, + "mod_sight_rear": 81, + "mod_stock": 69, + "mod_stock_000": 100, + "mod_tactical": 12, + "mod_tactical_000": 59, + "mod_tactical_001": 0, + "mod_tactical_002": 0 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 60, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, + "BASE_HIT_AFFECTION_MAX_ANG": 18, + "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_SHIEF": 0.5, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.7, + "BOTTOM_COEF": 0.2, + "BOT_MOVE_IF_DELTA": 0.01, + "COEF_FROM_COVER": 0.65, + "COEF_IF_MOVE": 1.1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 96, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "MAX_AIM_PRECICING": 4, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 2.9, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 1.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.55, + "SCATTERING_DIST_MODIF_CLOSE": 0.8, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.65, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.3, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.1, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 130, + "VisibleDistance": 147, + "WaitInCoverBetweenShotsSec": 1.5 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15999, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STAY_IF_FAR": 25999, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 0, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 7, + "CLOSE_TO_SMOKE_TO_SHOOT": 5, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.7, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.3, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 30, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 2, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, + "CLOSE_DIST": 10, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 3.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 30, + "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, + "HEAR_DELAY_WHEN_PEACE": 0.75, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "IF_NO_ENEMY": false, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121, + "SHALL_GETUP_ON_ROTATE": false, + "SHALL_LAY_WITHOUT_CHECK": true + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "CHECK_HEAD_ANY_DIST": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 45, + "ENEMY_LIGHT_START_DIST": 40, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.5, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0005, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.4, + "MAX_VISION_GRASS_METERS_FLARE": 7, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 43, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": -1, + "GROUP_EXACTLY_PHRASE_DELAY": -1, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30999, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100999, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15 + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SPRINT_BETWEEN_CACHED_POINTS": -1, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 15.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.015, + "AMPLITUDE_SPEED": 0.001, + "BloodFall": 1.45, + "Caution": 0.03, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.3, + "MinScatter": 0.015, + "MovingSlowCoef": 1.4, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.2, + "SpeedUp": 0.6, + "SpeedUpAim": 1.8, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 140, + "ToLowBotSpeed": 2.8, + "ToSlowBotSpeed": 1.8, + "ToStopBotAngularSpeed": 80, + "ToUpBotSpeed": 4.3, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.1, + "CAN_SHOOTS_TIME_TO_AMBUSH": 333, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 50, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.4, + "LOW_DIST_TO_CHANGE_WEAPON": 10, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.2, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.1, + "RECOIL_TIME_NORMALIZE": 2, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 60, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, + "BASE_HIT_AFFECTION_MAX_ANG": 18, + "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_SHIEF": 0.5, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.7, + "BOTTOM_COEF": 0.2, + "BOT_MOVE_IF_DELTA": 0.01, + "COEF_FROM_COVER": 0.65, + "COEF_IF_MOVE": 1.1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 96, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "MAX_AIM_PRECICING": 4, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 2.9, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 1.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.55, + "SCATTERING_DIST_MODIF_CLOSE": 0.8, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.65, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.3, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.1, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 130, + "VisibleDistance": 147, + "WaitInCoverBetweenShotsSec": 1.5 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15999, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STAY_IF_FAR": 25999, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 0, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 7, + "CLOSE_TO_SMOKE_TO_SHOOT": 5, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.7, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.3, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 30, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 2, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, + "CLOSE_DIST": 10, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 3.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 30, + "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, + "HEAR_DELAY_WHEN_PEACE": 0.75, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "IF_NO_ENEMY": false, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121, + "SHALL_GETUP_ON_ROTATE": false, + "SHALL_LAY_WITHOUT_CHECK": true + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "CHECK_HEAD_ANY_DIST": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 45, + "ENEMY_LIGHT_START_DIST": 40, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.5, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0005, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.4, + "MAX_VISION_GRASS_METERS_FLARE": 7, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 43, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": -1, + "GROUP_EXACTLY_PHRASE_DELAY": -1, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30999, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100999, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15 + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SPRINT_BETWEEN_CACHED_POINTS": -1, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 15.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.015, + "AMPLITUDE_SPEED": 0.001, + "BloodFall": 1.45, + "Caution": 0.03, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.3, + "MinScatter": 0.015, + "MovingSlowCoef": 1.4, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.2, + "SpeedUp": 0.6, + "SpeedUpAim": 1.8, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 140, + "ToLowBotSpeed": 2.8, + "ToSlowBotSpeed": 1.8, + "ToStopBotAngularSpeed": 80, + "ToUpBotSpeed": 4.3, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.1, + "CAN_SHOOTS_TIME_TO_AMBUSH": 333, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 50, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.4, + "LOW_DIST_TO_CHANGE_WEAPON": 10, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.2, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.1, + "RECOIL_TIME_NORMALIZE": 2, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 60, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, + "BASE_HIT_AFFECTION_MAX_ANG": 18, + "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_SHIEF": 0.5, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.7, + "BOTTOM_COEF": 0.2, + "BOT_MOVE_IF_DELTA": 0.01, + "COEF_FROM_COVER": 0.65, + "COEF_IF_MOVE": 1.1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 96, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "MAX_AIM_PRECICING": 4, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 2.9, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 1.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.55, + "SCATTERING_DIST_MODIF_CLOSE": 0.8, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.65, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.3, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.1, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 130, + "VisibleDistance": 147, + "WaitInCoverBetweenShotsSec": 1.5 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15999, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STAY_IF_FAR": 25999, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 0, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 7, + "CLOSE_TO_SMOKE_TO_SHOOT": 5, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.7, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.3, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 30, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 2, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, + "CLOSE_DIST": 10, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 3.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 30, + "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, + "HEAR_DELAY_WHEN_PEACE": 0.75, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "IF_NO_ENEMY": false, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121, + "SHALL_GETUP_ON_ROTATE": false, + "SHALL_LAY_WITHOUT_CHECK": true + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "CHECK_HEAD_ANY_DIST": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 45, + "ENEMY_LIGHT_START_DIST": 40, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.5, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0005, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.4, + "MAX_VISION_GRASS_METERS_FLARE": 7, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 43, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": -1, + "GROUP_EXACTLY_PHRASE_DELAY": -1, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30999, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100999, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15 + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SPRINT_BETWEEN_CACHED_POINTS": -1, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 15.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.015, + "AMPLITUDE_SPEED": 0.001, + "BloodFall": 1.45, + "Caution": 0.03, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.3, + "MinScatter": 0.015, + "MovingSlowCoef": 1.4, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.2, + "SpeedUp": 0.6, + "SpeedUpAim": 1.8, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 140, + "ToLowBotSpeed": 2.8, + "ToSlowBotSpeed": 1.8, + "ToStopBotAngularSpeed": 80, + "ToUpBotSpeed": 4.3, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.1, + "CAN_SHOOTS_TIME_TO_AMBUSH": 333, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 50, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.4, + "LOW_DIST_TO_CHANGE_WEAPON": 10, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.2, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.1, + "RECOIL_TIME_NORMALIZE": 2, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 60, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, + "BASE_HIT_AFFECTION_MAX_ANG": 18, + "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_SHIEF": 0.5, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.7, + "BOTTOM_COEF": 0.2, + "BOT_MOVE_IF_DELTA": 0.01, + "COEF_FROM_COVER": 0.65, + "COEF_IF_MOVE": 1.1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 96, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "MAX_AIM_PRECICING": 4, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 2.9, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 1.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.55, + "SCATTERING_DIST_MODIF_CLOSE": 0.8, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.65, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.3, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.1, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 130, + "VisibleDistance": 147, + "WaitInCoverBetweenShotsSec": 1.5 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15999, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STAY_IF_FAR": 25999, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 0, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 7, + "CLOSE_TO_SMOKE_TO_SHOOT": 5, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.7, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.3, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 30, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 2, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, + "CLOSE_DIST": 10, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 3.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 30, + "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, + "HEAR_DELAY_WHEN_PEACE": 0.75, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "IF_NO_ENEMY": false, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121, + "SHALL_GETUP_ON_ROTATE": false, + "SHALL_LAY_WITHOUT_CHECK": true + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "CHECK_HEAD_ANY_DIST": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 45, + "ENEMY_LIGHT_START_DIST": 40, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.5, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0005, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.4, + "MAX_VISION_GRASS_METERS_FLARE": 7, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 43, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": -1, + "GROUP_EXACTLY_PHRASE_DELAY": -1, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30999, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100999, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15 + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SPRINT_BETWEEN_CACHED_POINTS": -1, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 15.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.015, + "AMPLITUDE_SPEED": 0.001, + "BloodFall": 1.45, + "Caution": 0.03, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.3, + "MinScatter": 0.015, + "MovingSlowCoef": 1.4, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.2, + "SpeedUp": 0.6, + "SpeedUpAim": 1.8, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 140, + "ToLowBotSpeed": 2.8, + "ToSlowBotSpeed": 1.8, + "ToStopBotAngularSpeed": 80, + "ToUpBotSpeed": 4.3, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.1, + "CAN_SHOOTS_TIME_TO_AMBUSH": 333, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 50, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.4, + "LOW_DIST_TO_CHANGE_WEAPON": 10, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.2, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.1, + "RECOIL_TIME_NORMALIZE": 2, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } } }, "experience": { + "aggressorBonus": { + "normal": 0.02 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": 300, - "max": 300 + "max": 300, + "min": 300 } }, "standingForKill": { "normal": -0.05 }, - "aggressorBonus": { - "normal": 0.02 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 50, - "max": 50 - }, - "Chest": { - "min": 140, - "max": 140 - }, - "Stomach": { - "min": 120, - "max": 120 - }, - "LeftArm": { - "min": 100, - "max": 100 - }, - "RightArm": { - "min": 100, - "max": 100 - }, - "LeftLeg": { - "min": 100, - "max": 100 - }, - "RightLeg": { - "min": 100, - "max": 100 - } - } - ] - }, - "skills": { - "Common": { - "BotReload": { - "min": 1000, - "max": 1000 - }, - "BotSound": { - "min": 1000, - "max": 1000 - } - } - }, - "inventory": { - "equipment": { - "Headwear": { - "60361a7497633951dc245eb4": 6747, - "59e770f986f7742cbe3164ef": 6693, - "5aa2ba19e5b5b00014028f4e": 6767, - "572b7fa124597762b472f9d2": 6673, - "61c18db6dfd64163ea78fbb4": 6753, - "5aa2a7e8e5b5b00016327c16": 3280, - "5b43271c5acfc432ff4dce65": 6561, - "5aa2ba46e5b5b000137b758d": 6741, - "5aa2b87de5b5b00016327c25": 3334, - "5b4327aa5acfc400175496e0": 463, - "5f60e6403b85f6263c14558c": 3268, - "618aef6d0a5a59657e5f55ee": 101, - "603618feffd42c541047f771": 6541, - "60b52e5bc7d8103275739d67": 459, - "5d96141523f0ea1b7f2aacab": 446 - }, - "Earpiece": { - "5645bcc04bdc2d363b8b4572": 4137, - "5c165d832e2216398b5a7e36": 5310, - "5b432b965acfc47a8774094e": 8995, - "6033fa48ffd42c541047f728": 6420 - }, - "FaceCover": { - "572b7fa524597762b747ce82": 2354, - "5bd073a586f7747e6f135799": 1091 - }, - "ArmorVest": { - "5c0e51be86f774598e797894": 4678, - "64be79e2bf8412471d0d9bcc": 4710, - "5b44d22286f774172b0c9de8": 12160, - "64be79c487d1510151095552": 4550, - "5c0e53c886f7747fa54205c7": 4602, - "5c0e5bab86f77461f55ed1f3": 9233, - "5df8a2ca86f7740bfe6df777": 4670, - "5c0e57ba86f7747fa141986d": 4727, - "5f5f41476bdad616ad46d631": 635, - "5e9dacf986f774054d6b89f4": 211, - "5c0e625a86f7742d77340f62": 192, - "5ab8e79e86f7742d8b372e78": 351, - "5ca2151486f774244a3b8d30": 341 - }, - "Eyewear": { - "5c1a1cc52e221602b3136e3d": 1157, - "557ff21e4bdc2d89578b4586": 1801 - }, - "ArmBand": {}, - "TacticalVest": { - "5e4abfed86f77406a2713cf7": 7416, - "64be7110bf597ba84a0a41ea": 7326, - "59e7643b86f7742cbf2c109a": 7246, - "5c0e3eb886f7742015526062": 7157, - "5929a2a086f7744f4b234d43": 7304, - "5fd4c60f875c30179f5d04c2": 7325, - "5ca20abf86f77418567a43f2": 7339, - "592c2d1a86f7746dbe2af32a": 7264, - "5d5d646386f7742797261fd9": 7271 - }, - "Backpack": {}, - "FirstPrimaryWeapon": { - "61f7c9e189e6fb1a5e3ea78d": 4794, - "588892092459774ac91d4b11": 2790, - "5de652c31b7e3716273428be": 8083, - "5c46fbd72e2216398b5a8c9c": 10520, - "5df24cf80dee1b22f862e9bc": 2872, - "5f2a9575926fd9352339381f": 1814, - "57838ad32459774a17445cd2": 2776, - "55801eed4bdc2d89578b4588": 4721, - "643ea5b23db6f9f57107d9fd": 4780, - "59e6687d86f77411d949b251": 4734, - "5ae08f0a5acfc408fb1398a1": 4823, - "587e02ff24597743df3deaeb": 4816, - "5c501a4d2e221602b412b540": 5759, - "5d43021ca4b9362eab4b5e25": 921, - "5aafa857e5b5b00018480968": 928, - "5df8ce05b11454561e39243b": 515 - }, - "SecondPrimaryWeapon": {}, - "Holster": { - "5448bd6b4bdc2dfc2f8b4569": 12920, - "5abccb7dd8ce87001773e277": 7323, - "576a581d2459771e7b1bc4f1": 7354, - "5a17f98cfcdbcb0980087290": 7150, - "56e0598dd2720bb5668b45a6": 30450, - "633ec7c2a6918cb895019c6c": 444 - }, - "Scabbard": { - "5c012ffc0db834001d23f03f": 1 - }, - "Pockets": { - "557ffd194bdc2d28148b457f": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - } - }, - "Ammo": { - "Caliber9x18PM": { - "573719762459775a626ccbc1": 1 - }, - "Caliber762x51": { - "58dd3ad986f77403051cba8f": 2580, - "5e023e53d4353e3302577c4c": 905, - "5a6086ea4f39f99cd479502f": 343, - "5a608bf24f39f98ffc77720e": 572 - }, - "Caliber366TKM": { - "5f0596629e22f464da6bbdd9": 2110, - "59e655cb86f77411dc52a77b": 785, - "59e6542b86f77411dc52a77a": 311 - }, - "Caliber762x54R": { - "560d61e84bdc2da74d8b4571": 1660, - "59e77a2386f7742ee578960a": 2060, - "5e023d48186a883be655e551": 472, - "5887431f2459777e1612938f": 1470, - "5e023d34e8a400319a28ed44": 813 - }, - "Caliber9x19PARA": { - "56d59d3ad2720bdb418b4577": 1 - }, - "Caliber9x39": { - "57a0dfb82459774d3078b56c": 2180, - "5c0d668f86f7747ccb7f13b2": 4050, - "61962d879bb3d20b0946d385": 1490, - "5c0d688c86f77413ae3407b2": 492, - "57a0e5022459774d1673f889": 105 - }, - "Caliber762x39": { - "5656d7c34bdc2d9d198b4587": 8950, - "64b7af434b75259c590fa893": 1410, - "59e0d99486f7744a32234762": 867, - "59e4cf5286f7741778269d8a": 3210 - }, - "Caliber556x45NATO": { - "59e6906286f7746c9f75e847": 605, - "59e68f6f86f7746c9f75e846": 1060, - "54527ac44bdc2d36668b4567": 273, - "59e6920f86f77411d82aa167": 233, - "59e690b686f7746c9f75e848": 161 - }, - "Caliber127x55": { - "5cadf6ddae9215051e1c23b2": 197, - "5cadf6eeae921500134b2799": 25 - } - }, - "mods": { - "61f7c9e189e6fb1a5e3ea78d": { - "mod_barrel": [ - "61f4012adfc9f01a816adda1" - ], - "mod_stock": [ - "61f7b234ea4ab34f2f59c3ec", - "61f803b8ced75b2e852e35f8" - ], - "patron_in_weapon_000": [ - "64b8f7968532cf95ee0a0dbf" - ] - }, - "61f4012adfc9f01a816adda1": { - "mod_handguard": [ - "61f7b85367ddd414173fdb36", - "61f8024263dc1250e26eb029" - ], - "mod_scope": [ - "61f804acfcba9556ea304cb8" - ] - }, - "61f804acfcba9556ea304cb8": { - "mod_scope": [ - "5dff77c759400025ea5150cf", - "5c0517910db83400232ffee5", - "618b9643526131765025ab35" - ] - }, - "5dff77c759400025ea5150cf": { - "mod_scope": [ - "5dff772da3651922b360bf91" - ] - }, - "5448bd6b4bdc2dfc2f8b4569": { - "mod_magazine": [ - "5448c12b4bdc2d02308b456f" - ], - "mod_reciever": [ - "6374a822e629013b9c0645c8" - ], - "mod_pistolgrip": [ - "6374a7e7417239a7bf00f042" - ] - }, - "6374a822e629013b9c0645c8": { - "mod_sight_rear": [ - "63c6adcfb4ba094317063742" - ] - }, - "5c0e51be86f774598e797894": { - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Back_plate": [ - "656efd66034e8e01c407f35c" - ], - "Soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "Soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "Soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ] - }, - "588892092459774ac91d4b11": { - "mod_stock": [ - "58889d0c2459775bc215d981" - ], - "mod_barrel": [ - "5888956924597752983e182d", - "5888945a2459774bf43ba385" - ], - "mod_pistol_grip": [ - "55d4b9964bdc2d1d4e8b456e", - "63f5feead259b42f0b4d6d0f", - "57c55efc2459772d2c6271e7", - "57c55f172459772d27602381", - "5b07db875acfc40dc528a5f6" - ], - "mod_scope": [ - "5c86592b2e2216000e69e77c", - "57c69dd424597774c03b7bbc" - ], - "mod_magazine": [ - "5888988e24597752fe43a6fa" - ] - }, - "5888956924597752983e182d": { - "mod_muzzle": [ - "5888996c24597754281f9419" - ], - "mod_handguard": [ - "5888976c24597754281f93f5" - ] - }, - "5c86592b2e2216000e69e77c": { - "mod_scope": [ - "5aa66be6e5b5b0214e506e97", - "56ea70acd2720b844b8b4594" - ] - }, - "64be79e2bf8412471d0d9bcc": { - "Soft_armor_front": [ - "6570495b45d573133d0d6adb" - ], - "Soft_armor_back": [ - "657049d23425b19bbc0502f0" - ] - }, - "5de652c31b7e3716273428be": { - "mod_stock": [ - "5de655be4a9f347bc92edb88" - ], - "mod_barrel": [ - "5de65547883dde217541644b" - ], - "mod_mount": [ - "5de6558e9f98ac2bc65950fc" - ], - "mod_magazine": [ - "5de653abf76fdc1ce94a5a2a" - ] - }, - "5de65547883dde217541644b": { - "mod_muzzle": [ - "5a9fbb74a2750c0032157181", - "5de6556a205ddc616a6bc4f7" - ] - }, - "5de6558e9f98ac2bc65950fc": { - "mod_scope": [ - "5dff77c759400025ea5150cf", - "57aca93d2459771f2c7e26db", - "5c0517910db83400232ffee5" - ] - }, - "5b44d22286f774172b0c9de8": { - "Front_plate": [ - "656f9d5900d62bcd2e02407c" - ], - "Back_plate": [ - "656f9d5900d62bcd2e02407c" - ], - "Soft_armor_front": [ - "65704de13e7bba58ea0285c8" - ], - "Soft_armor_back": [ - "65705c3c14f2ed6d7d0b7738" - ], - "Soft_armor_left": [ - "65705c777260e1139e091408" - ], - "soft_armor_right": [ - "65705cb314f2ed6d7d0b773c" - ], - "Collar": [ - "65705cea4916448ae1050897" - ] - }, - "5c46fbd72e2216398b5a8c9c": { - "mod_mount_001": [ - "5c471c2d2e22164bef5d077f" - ], - "mod_reciever": [ - "5c471bd12e221602b4129c3a" - ], - "mod_pistol_grip": [ - "5c471be12e221602b66cd9ac", - "6516b129609aaf354b34b3a8" - ], - "mod_barrel": [ - "5c471cb32e221602b177afaa" - ], - "mod_stock": [ - "6197b229af1f5202c57a9bea", - "5c471b5d2e221602b21d4e14" - ], - "mod_mount_000": [ - "5d0a29ead7ad1a0026013f27" - ], - "mod_magazine": [ - "5c471c442e221602b542a6f8" - ] - }, - "5c471c2d2e22164bef5d077f": { - "mod_handguard": [ - "5c471c6c2e221602b66cd9ae" - ], - "mod_sight_rear": [ - "5c471b7e2e2216152006e46c" - ] - }, - "5c471cb32e221602b177afaa": { - "mod_gas_block": [ - "5c471c842e221615214259b5" - ], - "mod_muzzle": [ - "5c471bfc2e221602b21d4e17" - ] - }, - "5c471bfc2e221602b21d4e17": { - "mod_sight_front": [ - "5c471ba12e221602b3137d76" - ], - "mod_muzzle": [ - "5e01e9e273d8eb11426f5bc3" - ] - }, - "6197b229af1f5202c57a9bea": { - "mod_stock": [ - "591aef7986f774139d495f03", - "5b0800175acfc400153aebd4", - "5d120a10d7ad1a4e1026ba85", - "591af10186f774139d495f0e", - "57ade1442459771557167e15", - "5947e98b86f774778f1448bc", - "5c0faeddd174af02a962601f", - "5947eab886f77475961d96c5" - ] - }, - "5d0a29ead7ad1a0026013f27": { - "mod_scope": [ - "5d0a3a58d7ad1a669c15ca14" - ] - }, - "5abccb7dd8ce87001773e277": { - "mod_magazine": [ - "5a17fb03fcdbcbcae668728f" - ], - "mod_stock": [ - "5a17fb9dfcdbcbcae6687291" - ], - "mod_pistol_grip": [ - "5a17fc70fcdbcb0176308b3d" - ], - "mod_sight_front": [ - "5aba62f8d8ce87001943946b" - ], - "mod_sight_rear": [ - "5aba639ed8ce8700182ece67" - ], - "mod_muzzle": [ - "5abcc328d8ce8700194394f3" - ] - }, - "64be79c487d1510151095552": { - "Soft_armor_front": [ - "6570495b45d573133d0d6adb" - ], - "Soft_armor_back": [ - "657049d23425b19bbc0502f0" - ] - }, - "5df24cf80dee1b22f862e9bc": { - "mod_stock": [ - "5df35e59c41b2312ea3334d5" - ], - "mod_barrel": [ - "5df256570dee1b22f862e9c4" - ], - "mod_mount": [ - "5df35e970b92095fd441e4d2" - ], - "mod_magazine": [ - "5df25b6c0b92095fd441e4cf" - ] - }, - "5df35e59c41b2312ea3334d5": { - "mod_handguard": [ - "5df25d3bfd6b4e6e2276dc9a" - ], - "mod_pistol_grip": [ - "5df38a5fb74cd90030650cb6" - ], - "mod_stock_axis": [ - "5df35ddddfc58d14537c2036" - ] - }, - "5df25d3bfd6b4e6e2276dc9a": { - "mod_mount_000": [ - "5df35eb2b11454561e3923e2" - ], - "mod_mount_001": [ - "5df35eb2b11454561e3923e2" - ], - "mod_mount_002": [ - "5df35ea9c41b2312ea3334d8" - ], - "mod_mount_003": [ - "5df35eb2b11454561e3923e2" - ], - "mod_foregrip": [ - "5df36948bb49d91fb446d5ad" - ] - }, - "5df256570dee1b22f862e9c4": { - "mod_muzzle": [ - "5b7d693d5acfc43bca706a3d", - "5d026791d7ad1a04a067ea63", - "5bbdb8bdd4351e4502011460", - "612e0e3c290d254f5e6b291d", - "5df35e7f2a78646d96665dd4", - "5d02677ad7ad1a04a15c0f95", - "5cdd7693d7f00c0010373aa5", - "5cdd7685d7f00c000f260ed2" - ] - }, - "5df35e970b92095fd441e4d2": { - "mod_scope": [ - "5dff77c759400025ea5150cf", - "57c69dd424597774c03b7bbc", - "5c86592b2e2216000e69e77c" - ] - }, - "5c0e3eb886f7742015526062": { - "Soft_armor_front": [ - "65764a4cd8537eb26a0355ee" - ], - "Soft_armor_back": [ - "65764bc22bc38ef78e076485" - ], - "Collar": [ - "65764c39526e320fbe035777" - ], - "Groin": [ - "65764c6b526e320fbe03577b" - ] - }, - "5f2a9575926fd9352339381f": { - "mod_barrel": [ - "5f2aa46b878ef416f538b567" - ], - "mod_handguard": [ - "5f2aa47a200e2c0ee46efa71" - ], - "mod_mount": [ - "5f2aa49f9b44de6b1b4e68d4" - ], - "mod_magazine": [ - "5b7bef1e5acfc43d82528402" - ] - }, - "5f2aa46b878ef416f538b567": { - "mod_muzzle": [ - "5f2aa43ba9b91d26f20ae6d2" - ] - }, - "5f2aa43ba9b91d26f20ae6d2": { - "mod_muzzle": [ - "5b7d693d5acfc43bca706a3d", - "5f2aa4559b44de6b1b4e68d1", - "5d02677ad7ad1a04a15c0f95", - "5d026791d7ad1a04a067ea63", - "5bbdb8bdd4351e4502011460", - "5cdd7685d7f00c000f260ed2", - "612e0e3c290d254f5e6b291d", - "607ffb988900dc2d9a55b6e4" - ] - }, - "5f2aa47a200e2c0ee46efa71": { - "mod_mount_000": [ - "5f2aa493cd375f14e15eea72" - ] - }, - "5f2aa493cd375f14e15eea72": { - "mod_foregrip": [ - "588226e62459776e3e094af7", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "588226ef24597767af46e39c" - ] - }, - "5f2aa49f9b44de6b1b4e68d4": { - "mod_scope": [ - "57c69dd424597774c03b7bbc" - ] - }, - "57c69dd424597774c03b7bbc": { - "mod_scope": [ - "5b3b99475acfc432ff4dcbee", - "5b2388675acfc4771e1be0be", - "57c5ac0824597754771e88a9", - "5a37cb10c4a282329a73b4e7", - "617151c1d92c473c770214ab", - "618ba27d9008e4636a67f61d" - ] - }, - "576a581d2459771e7b1bc4f1": { - "mod_magazine": [ - "576a5ed62459771e9c2096cb" - ], - "mod_pistol_grip": [ - "576a63cd2459771e796e0e11" - ] - }, - "5c0e53c886f7747fa54205c7": { - "front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "back_plate": [ - "656efd66034e8e01c407f35c" - ], - "soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ] - }, - "57838ad32459774a17445cd2": { - "mod_magazine": [ - "57838f0b2459774a256959b2", - "57838f9f2459774a150289a0" - ], - "mod_reciever": [ - "578395402459774a256959b5" - ], - "mod_stock": [ - "578395e82459774a0e553c7b" - ], - "mod_handguard": [ - "6565bb7eb4b12a56eb04b084" - ], - "mod_muzzle": [ - "57838c962459774a1651ec63" - ], - "mod_mount_000": [ - "576fd4ec2459777f0b518431" - ], - "mod_charge": [ - "5648ac824bdc2ded0b8b457d", - "6130ca3fd92c473c77020dbd" - ] - }, - "576fd4ec2459777f0b518431": { - "mod_tactical": [ - "57f3a5ae2459772b0e0bf19e" - ] - }, - "55801eed4bdc2d89578b4588": { - "mod_scope": [ - "544a3a774bdc2d3a388b4567" - ], - "mod_stock": [ - "61faa91878830f069b6b7967" - ], - "mod_sight_rear": [ - "56083e1b4bdc2dc8488b4572" - ], - "mod_tactical": [ - "56083eab4bdc2d26448b456a" - ], - "mod_muzzle": [ - "560e620e4bdc2d724b8b456b", - "5c4ee3d62e2216152006f302", - "5c4eec9b2e2216398b5aaba2" - ], - "mod_magazine": [ - "559ba5b34bdc2d1f1a8b4582" - ] - }, - "5a17f98cfcdbcb0980087290": { - "mod_magazine": [ - "5a17fb03fcdbcbcae668728f" - ], - "mod_pistol_grip": [ - "5a17fc70fcdbcb0176308b3d" - ], - "mod_sight_front": [ - "5aba62f8d8ce87001943946b" - ], - "mod_sight_rear": [ - "5aba637ad8ce87001773e17f" - ] - }, - "5c0e5bab86f77461f55ed1f3": { - "Front_plate": [ - "654a4dea7c17dec2f50cc86a" - ], - "Soft_armor_front": [ - "6571b27a6d84a2b8b6007f92" - ], - "Soft_armor_back": [ - "6571baa74cb80d995d0a1490" - ], - "Soft_armor_left": [ - "6571baac6d84a2b8b6007fa3" - ], - "soft_armor_right": [ - "6571bab0f41985531a038091" - ], - "Collar": [ - "6571babb4076795e5e07383f" - ], - "Groin": [ - "6571bac34076795e5e073843" - ], - "Groin_back": [ - "6571babf4cb80d995d0a1494" - ] - }, - "643ea5b23db6f9f57107d9fd": { - "mod_stock": [ - "6410745d5dd49d77bd078485" - ], - "mod_barrel": [ - "6410758c857473525b08bb77" - ], - "mod_reciever": [ - "64119cdbdcf48d656f0aa272" - ], - "mod_scope": [ - "641dc35e19604f20c800be18" - ], - "mod_magazine": [ - "6422e1ea3c0f06190302161a" - ] - }, - "6410758c857473525b08bb77": { - "mod_muzzle": [ - "64119d1f2c6d6f921a0929f8" - ], - "mod_sight_rear": [ - "64119d90dcf48d656f0aa275" - ] - }, - "64119d1f2c6d6f921a0929f8": { - "mod_sight_front": [ - "64119d672c6d6f921a0929fb" - ] - }, - "641dc35e19604f20c800be18": { - "mod_scope": [ - "5b3f7c1c5acfc40dc5296b1d" - ] - }, - "6516b129609aaf354b34b3a8": { - "mod_pistolgrip": [ - "5cf54404d7f00c108840b2ef" - ] - }, - "5df8a2ca86f7740bfe6df777": { - "Soft_armor_front": [ - "656fd7c32668ef0402028fb9" - ], - "Soft_armor_back": [ - "656fd89bf5a9631d4e042575" - ] - }, - "5d5d646386f7742797261fd9": { - "Soft_armor_front": [ - "65764e1e2bc38ef78e076489" - ], - "Soft_armor_back": [ - "65764fae2bc38ef78e07648d" - ], - "Groin": [ - "6576504b526e320fbe035783" - ], - "Groin_back": [ - "6576500f526e320fbe03577f" - ] - }, - "59e6687d86f77411d949b251": { - "mod_muzzle": [ - "59e8a00d86f7742ad93b569c", - "5a9fbb74a2750c0032157181" - ], - "mod_reciever": [ - "59e6449086f7746c9f75e822" - ], - "mod_sight_rear": [ - "59e8977386f77415a553c453" - ], - "mod_gas_block": [ - "5a01ad4786f77450561fda02" - ], - "mod_pistol_grip": [ - "628c9ab845c59e5b80768a81", - "628a664bccaab13006640e47", - "6087e663132d4d12c81fd96b", - "63f4da90f31d4a33b87bd054", - "623c3be0484b5003161840dc", - "59e6318286f77444dd62c4cc" - ], - "mod_stock": [ - "628a6678ccaab13006640e49" - ], - "mod_magazine": [ - "5cfe8010d7ad1a59283b14c6", - "64b9cf0ac12b9c38db26923a" - ] - }, - "5a01ad4786f77450561fda02": { - "mod_handguard": [ - "5648b4534bdc2d3d1c8b4580", - "5efaf417aeb21837e749c7f2" - ] - }, - "5648b4534bdc2d3d1c8b4580": { - "mod_foregrip": [ - "588226ef24597767af46e39c", - "5b057b4f5acfc4771e1bd3e9", - "588226d124597767ad33f787", - "5c791e872e2216001219c40a", - "588226e62459776e3e094af7", - "588226dd24597767ad33f789" - ] - }, - "628a6678ccaab13006640e49": { - "mod_stock": [ - "5b0800175acfc400153aebd4", - "57ade1442459771557167e15", - "591af10186f774139d495f0e", - "602e3f1254072b51b239f713", - "591aef7986f774139d495f03" - ] - }, - "5ae08f0a5acfc408fb1398a1": { - "mod_stock": [ - "5bbdb870d4351e00367fb67d", - "5bfd37c80db834001d23e842", - "5bfd36290db834001966869a" - ], - "mod_barrel": [ - "5bfd4cbe0db834001b73449f" - ], - "mod_mount": [ - "5b3f7bf05acfc433000ecf6b" - ], - "mod_magazine": [ - "5ae0973a5acfc4001562206c" - ] - }, - "5bfd4cbe0db834001b73449f": { - "mod_muzzle": [ - "5b86a0e586f7745b600ccb23", - "5bc5a35cd4351e450201232f", - "5bbdb83fd4351e44f824c44b", - "5bc5a351d4351e003477a414" - ] - }, - "5b3f7bf05acfc433000ecf6b": { - "mod_mount": [ - "5b3f7c005acfc4704b4a1de8", - "5d024f5cd7ad1a04a067e91a" - ] - }, - "5b3f7c005acfc4704b4a1de8": { - "mod_scope": [ - "5b3f7c1c5acfc40dc5296b1d" - ] - }, - "618b9643526131765025ab35": { - "mod_mount": [ - "618ba91477b82356f91ae0e8" - ], - "mod_scope": [ - "5b2388675acfc4771e1be0be", - "57c5ac0824597754771e88a9", - "617151c1d92c473c770214ab", - "5a37cb10c4a282329a73b4e7", - "5b3b99475acfc432ff4dcbee", - "618ba27d9008e4636a67f61d" - ] - }, - "5e01e9e273d8eb11426f5bc3": { - "mod_muzzle": [ - "5e01ea19e9dc277128008c0b" - ] - }, - "56e0598dd2720bb5668b45a6": { - "mod_magazine": [ - "5448c12b4bdc2d02308b456f" - ], - "mod_muzzle": [ - "56e05b06d2720bb2668b4586" - ], - "mod_pistolgrip": [ - "56e05a6ed2720bd0748b4567" - ] - }, - "5c0e57ba86f7747fa141986d": { - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Back_plate": [ - "657b22485f444d6dff0c6c2f" - ], - "Soft_armor_front": [ - "65707fc348c7a887f2010432" - ], - "Soft_armor_back": [ - "6570800612755ae0d907acf8" - ], - "Soft_armor_left": [ - "65708070f65e2491bf00972c" - ], - "soft_armor_right": [ - "657080a212755ae0d907ad04" - ], - "Collar": [ - "657080ca12755ae0d907ad5e" - ], - "Groin": [ - "65708122f65e2491bf009755" - ], - "Groin_back": [ - "65708165696fe382cf073255" - ] - }, - "5888945a2459774bf43ba385": { - "mod_muzzle": [ - "58889c7324597754281f9439" - ] - }, - "587e02ff24597743df3deaeb": { - "mod_barrel": [ - "634eff66517ccc8a960fc735" - ], - "mod_reciever": [ - "634f06262e5def262d0b30ca" - ], - "mod_stock": [ - "5d0236dad7ad1a0940739d29", - "5afd7ded5acfc40017541f5e" - ], - "mod_mount": [ - "587e08ee245977446b4410cf" - ], - "mod_magazine": [ - "587df583245977373c4f1129", - "5c5970672e221602b21d7855" - ] - }, - "634eff66517ccc8a960fc735": { - "mod_mount_000": [ - "634f05a21f9f536910079b56" - ] - }, - "634f05a21f9f536910079b56": { - "mod_gas_block": [ - "634f036a517ccc8a960fc746" - ], - "mod_sight_rear": [ - "574db213245977459a2f3f5d" - ] - }, - "634f036a517ccc8a960fc746": { - "mod_mount_000": [ - "653ece125a1690d9d90491e8" - ] - }, - "5d0236dad7ad1a0940739d29": { - "mod_pistol_grip": [ - "5d023784d7ad1a049d4aa7f2" - ], - "mod_tactical_000": [ - "5b3a337e5acfc4704b4a19a0" - ] - }, - "587e08ee245977446b4410cf": { - "mod_scope": [ - "5947db3f86f77447880cf76f", - "5c82342f2e221644f31c060e", - "5cf638cbd7f00c06595bc936", - "63d114019e35b334d82302f7" - ] - }, - "5c501a4d2e221602b412b540": { - "mod_gas_block": [ - "5c5039be2e221602b177c9ff" - ], - "mod_reciever": [ - "5c503d0a2e221602b542b7ef" - ], - "mod_sight_rear": [ - "5c503b1c2e221602b21d6e9d" - ], - "mod_stock": [ - "5f63405df5750b524b45f114", - "5c503af12e221602b177ca02" - ], - "mod_mount": [ - "5c82342f2e221644f31c060e" - ], - "mod_magazine": [ - "5c503ad32e2216398b5aada2" - ], - "mod_muzzle": [ - "5f63407e1b231926f2329f15" - ] - }, - "5c82342f2e221644f31c060e": { - "mod_tactical": [ - "57f3a5ae2459772b0e0bf19e" - ] - }, - "5afd7ded5acfc40017541f5e": { - "mod_pistol_grip": [ - "5afd7e445acfc4001637e35a" - ], - "mod_stock": [ - "5afd7e095acfc40017541f61" - ] - }, - "5efaf417aeb21837e749c7f2": { - "mod_foregrip": [ - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "5b057b4f5acfc4771e1bd3e9", - "588226ef24597767af46e39c", - "588226d124597767ad33f787", - "5c791e872e2216001219c40a" - ], - "mod_tactical_000": [ - "626becf9582c3e319310b837" - ] - }, - "5d43021ca4b9362eab4b5e25": { - "mod_pistol_grip": [ - "59db3b0886f77429d72fb895" - ], - "mod_reciever": [ - "5d4405aaa4b9361e6a4e6bd3" - ], - "mod_stock": [ - "5c793fc42e221600114ca25d" - ], - "mod_charge": [ - "55d44fd14bdc2d962f8b456e" - ], - "mod_magazine": [ - "5448c1d04bdc2dff2f8b4569", - "5aaa5e60e5b5b000140293d6" - ] - }, - "5d4405aaa4b9361e6a4e6bd3": { - "mod_scope": [ - "5c064c400db834001d23f468" - ], - "mod_barrel": [ - "5c0e2f94d174af029f650d56" - ], - "mod_handguard": [ - "5c0e2f5cd174af02a012cfc9" - ], - "mod_sight_rear": [ - "5dfa3d7ac41b2312ea33362a" - ] - }, - "5c064c400db834001d23f468": { - "mod_scope": [ - "5aa66c72e5b5b00016327c93" - ] - }, - "5aa66c72e5b5b00016327c93": { - "mod_scope_000": [ - "56ea70acd2720b844b8b4594" - ], - "mod_scope_001": [ - "5a33b2c9c4a282000c5a9511" - ], - "mod_scope_002": [ - "58d39d3d86f77445bb794ae7" - ], - "mod_scope_003": [ - "58d39d3d86f77445bb794ae7" - ] - }, - "5a33b2c9c4a282000c5a9511": { - "mod_scope": [ - "5a32aa8bc4a2826c6e06d737" - ] - }, - "58d39d3d86f77445bb794ae7": { - "mod_scope": [ - "58d39b0386f77443380bf13c", - "58d399e486f77442e0016fe7" - ] - }, - "58d39b0386f77443380bf13c": { - "mod_scope": [ - "58d399e486f77442e0016fe7" - ] - }, - "5c0e2f94d174af029f650d56": { - "mod_muzzle": [ - "5b3a16655acfc40016387a2a" - ], - "mod_gas_block": [ - "56eabcd4d2720b66698b4574" - ] - }, - "5c793fc42e221600114ca25d": { - "mod_stock_000": [ - "58d2946c86f7744e271174b5" - ] - }, - "602e3f1254072b51b239f713": { - "mod_stock_000": [ - "5beec8c20db834001d2c465c", - "56eabf3bd2720b75698b4569", - "58d2947e86f77447aa070d53" - ] - }, - "5aafa857e5b5b00018480968": { - "mod_sight_rear": [ - "5abcbb20d8ce87001773e258" - ], - "mod_stock": [ - "5addbf175acfc408fb13965b", - "5aaf8e43e5b5b00015693246" - ], - "mod_barrel": [ - "5addbac75acfc400194dbc56" - ], - "mod_mount": [ - "5addbfef5acfc400185c2857" - ], - "mod_magazine": [ - "64b9e2037fdfb81df81e3c25" - ] - }, - "5addbf175acfc408fb13965b": { - "mod_mount": [ - "5addbfd15acfc40015621bde", - "5addbfbb5acfc400194dbcf7" - ] - }, - "5addbac75acfc400194dbc56": { - "mod_muzzle": [ - "5addbb945acfc4001a5fc44e", - "5addbbb25acfc40015621bd9", - "5addbba15acfc400185c2854", - "5addbb825acfc408fb139400" - ] - }, - "5addbb945acfc4001a5fc44e": { - "mod_sight_front": [ - "5addba3e5acfc4001669f0ab" - ] - }, - "5addbfef5acfc400185c2857": { - "mod_scope": [ - "5dff77c759400025ea5150cf", - "57c69dd424597774c03b7bbc" - ] - }, - "5f5f41476bdad616ad46d631": { - "Front_plate": [ - "656f664200d62bcd2e024077" - ], - "Back_plate": [ - "657b2797c3dbcb01d60c35ea" - ], - "Left_side_plate": [ - "654a4f8bc721968a4404ef18" - ], - "Right_side_plate": [ - "654a4f8bc721968a4404ef18" - ], - "Soft_armor_front": [ - "65731b46cea9255e2102360a" - ], - "Soft_armor_back": [ - "65731b4fcea9255e2102360e" - ], - "Soft_armor_left": [ - "65731b576e709cddd001ec3f" - ], - "soft_armor_right": [ - "65731b60ff6dc44a7d068c4a" - ], - "Collar": [ - "65731b666e709cddd001ec43" - ], - "Groin": [ - "65731b716e709cddd001ec47" - ], - "Groin_back": [ - "65731b6b6042b0f210020ef6" - ] - }, - "57838c962459774a1651ec63": { - "mod_mount_000": [ - "59eb7ebe86f7740b373438ce" - ] - }, - "59eb7ebe86f7740b373438ce": { - "mod_foregrip": [ - "5c1bc4812e22164bef5cfde7" - ] - }, - "5df8ce05b11454561e39243b": { - "mod_pistol_grip": [ - "55d4b9964bdc2d1d4e8b456e" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ], - "mod_charge": [ - "5df8e053bb49d91fb446d6a6" - ], - "mod_reciever": [ - "5df8e4080b92095fd441e594" - ], - "mod_magazine": [ - "5df8f535bb49d91fb446d6b0" - ] - }, - "5649be884bdc2d79388b4577": { - "mod_stock_000": [ - "5ae30c9a5acfc408fb139a03" - ] - }, - "5df8e4080b92095fd441e594": { - "mod_barrel": [ - "5df917564a9f347bc92edca3" - ], - "mod_handguard": [ - "5df916dfbb49d91fb446d6b9" - ], - "mod_scope": [ - "5c07dd120db834001c39092d", - "544a3a774bdc2d3a388b4567", - "5c0517910db83400232ffee5", - "5aa66a9be5b5b0214e506e89" - ] - }, - "5df917564a9f347bc92edca3": { - "mod_gas_block": [ - "5dfa3d45dfc58d14537c20b0" - ], - "mod_muzzle": [ - "612e0d3767085e45ef14057f", - "5dfa3cd1b33c0951220c079b" - ] - }, - "5c0faeddd174af02a962601f": { - "mod_stock_000": [ - "58d2947e86f77447aa070d53", - "56eabf3bd2720b75698b4569", - "5beec8c20db834001d2c465c", - "602e620f9b513876d4338d9a" - ] - }, - "5e9dacf986f774054d6b89f4": { - "Front_plate": [ - "65573fa5655447403702a816" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Soft_armor_front": [ - "65732de75d3a3129fb05f3dd" - ], - "Soft_armor_back": [ - "65732df4d0acf75aea06c87b" - ], - "Soft_armor_left": [ - "65732e05d0acf75aea06c87f" - ], - "soft_armor_right": [ - "65732e0f6784ca384b0167ad" - ], - "Collar": [ - "65732e215d3a3129fb05f3e1" - ], - "Groin": [ - "65732e30dd8739f6440ef383" - ] - }, - "5addbbb25acfc40015621bd9": { - "mod_sight_front": [ - "5addba3e5acfc4001669f0ab" - ] - }, - "5aaf8e43e5b5b00015693246": { - "mod_mount": [ - "5ab24ef9e5b5b00fe93c9209" - ] - }, - "63d114019e35b334d82302f7": { - "mod_scope": [ - "57c69dd424597774c03b7bbc" - ] - }, - "5c0e625a86f7742d77340f62": { - "Front_plate": [ - "656f63c027aed95beb08f62c" - ], - "Back_plate": [ - "656fafe3498d1b7e3e071da4" - ], - "Left_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Right_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Soft_armor_front": [ - "65764275d8537eb26a0355e9" - ], - "Soft_armor_back": [ - "657642b0e6d5dd75f40688a5" - ], - "Soft_armor_left": [ - "6576434820cc24d17102b148" - ], - "soft_armor_right": [ - "657643732bc38ef78e076477" - ], - "Collar": [ - "657643a220cc24d17102b14c" - ] - }, - "633ec7c2a6918cb895019c6c": { - "mod_pistol_grip": [ - "633ec8e4025b096d320a3b1e" - ], - "mod_scope": [ - "57c69dd424597774c03b7bbc" - ], - "mod_magazine": [ - "633ec6ee025b096d320a3b15" - ], - "mod_tactical": [ - "5d2369418abbc306c62e0c80" - ] - }, - "633ec6ee025b096d320a3b15": { - "camora_000": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6eeae921500134b2799" - ], - "camora_001": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6eeae921500134b2799" - ], - "camora_002": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6eeae921500134b2799" - ], - "camora_003": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6eeae921500134b2799" - ], - "camora_004": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6eeae921500134b2799" - ] - }, - "5ab8e79e86f7742d8b372e78": { - "Front_plate": [ - "656f611f94b480b8a500c0db" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Soft_armor_front": [ - "65732688d9d89ff7ac0d9c4c" - ], - "Soft_armor_back": [ - "657326978c1cc6dcd9098b56" - ], - "Soft_armor_left": [ - "657326a28c1cc6dcd9098b5a" - ], - "soft_armor_right": [ - "657326b08c1cc6dcd9098b5e" - ], - "Collar": [ - "657326bc5d3a3129fb05f36b" - ] - }, - "5d120a10d7ad1a4e1026ba85": { - "mod_stock": [ - "5d120a28d7ad1a1c8962e295" - ] - }, - "5ca2151486f774244a3b8d30": { - "Front_plate": [ - "65573fa5655447403702a816" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Soft_armor_front": [ - "6575dd3e9e27f4a85e081142" - ], - "Soft_armor_back": [ - "6575dd519e27f4a85e081146" - ], - "Soft_armor_left": [ - "6575dd64945bf78edd04c438" - ], - "soft_armor_right": [ - "6575dd6e9d3a0ddf660b9047" - ], - "Collar": [ - "6575dd769d3a0ddf660b904b" - ], - "Groin": [ - "6575dd800546f8b1de093df6" - ], - "Groin_back": [ - "6575dd94945bf78edd04c43c" - ] - }, - "5c4eec9b2e2216398b5aaba2": { - "mod_muzzle": [ - "5c4eecc32e221602b412b440" - ] - }, - "5addbb825acfc408fb139400": { - "mod_sight_front": [ - "5aafa49ae5b5b00015042a58" - ] - }, - "5c4eecc32e221602b412b440": { - "mod_tactical": [ - "5c4eecde2e221602b3140418" - ] - }, - "5aa66a9be5b5b0214e506e89": { - "mod_scope": [ - "5aa66be6e5b5b0214e506e97" - ] - }, - "5dfa3cd1b33c0951220c079b": { - "mod_muzzle": [ - "5dfa3d2b0dee1b22f862eade" - ] - } - }, - "items": { - "TacticalVest": { - "57838f9f2459774a150289a0": 55, - "5cfe8010d7ad1a59283b14c6": 62, - "587df583245977373c4f1129": 98, - "64b9cf0ac12b9c38db26923a": 12, - "5c5970672e221602b21d7855": 10 - }, - "Pockets": { - "64b8f7968532cf95ee0a0dbf": 3643, - "5448c12b4bdc2d02308b456f": 6530, - "5888988e24597752fe43a6fa": 2840, - "5de653abf76fdc1ce94a5a2a": 5182, - "5c471c442e221602b542a6f8": 5360, - "5a17fb03fcdbcbcae668728f": 5454, - "5df25b6c0b92095fd441e4cf": 2928, - "5b7bef1e5acfc43d82528402": 1844, - "576a5ed62459771e9c2096cb": 5230, - "590c678286f77426c9660122": 5222, - "5710c24ad2720bc3458b45a3": 1303, - "559ba5b34bdc2d1f1a8b4582": 4788, - "6422e1ea3c0f06190302161a": 4851, - "5e023d48186a883be655e551": 221, - "5e023d34e8a400319a28ed44": 704, - "5c503ad32e2216398b5aada2": 5196, - "560d61e84bdc2da74d8b4571": 725, - "5448be9a4bdc2dfd2f8b456a": 995, - "5448c1d04bdc2dff2f8b4569": 549, - "5aaa5e60e5b5b000140293d6": 168, - "59e77a2386f7742ee578960a": 2017, - "64b9e2037fdfb81df81e3c25": 943, - "5df8f535bb49d91fb446d6b0": 528, - "5cadf6ddae9215051e1c23b2": 290, - "5cadf6eeae921500134b2799": 37 - }, - "Backpack": {}, - "SecuredContainer": { - "64b8f7968532cf95ee0a0dbf": 37590, - "573719762459775a626ccbc1": 10000, - "58dd3ad986f77403051cba8f": 68010, - "5f0596629e22f464da6bbdd9": 66570, - "560d61e84bdc2da74d8b4571": 49590, - "56d59d3ad2720bdb418b4577": 2862, - "57a0dfb82459774d3078b56c": 7034, - "59e77a2386f7742ee578960a": 66520, - "59e655cb86f77411dc52a77b": 26100, - "59e6542b86f77411dc52a77a": 11370, - "5e023d48186a883be655e551": 15430, - "5887431f2459777e1612938f": 39460, - "5e023d34e8a400319a28ed44": 27020, - "5c0d668f86f7747ccb7f13b2": 12160, - "5656d7c34bdc2d9d198b4587": 24540, - "5e023e53d4353e3302577c4c": 24760, - "64b7af434b75259c590fa893": 4839, - "5a6086ea4f39f99cd479502f": 11060, - "5a608bf24f39f98ffc77720e": 16600, - "59e0d99486f7744a32234762": 2825, - "59e6906286f7746c9f75e847": 2429, - "59e68f6f86f7746c9f75e846": 4038, - "61962d879bb3d20b0946d385": 4921, - "59e4cf5286f7741778269d8a": 10620, - "5cadf6ddae9215051e1c23b2": 158, - "54527ac44bdc2d36668b4567": 954, - "59e6920f86f77411d82aa167": 890, - "5c0d688c86f77413ae3407b2": 1704, - "59e690b686f7746c9f75e848": 610, - "57a0e5022459774d1673f889": 315, - "5cadf6eeae921500134b2799": 14 - }, - "SpecialLoot": {} - } - }, "firstName": [ "Верхний", "Крис", @@ -1619,2031 +2046,8 @@ "Дэн", "Бешеный" ], - "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3, - "IF_NO_ENEMY": false, - "SHALL_GETUP_ON_ROTATE": false, - "SHALL_LAY_WITHOUT_CHECK": true - }, - "Aiming": { - "MAX_AIM_PRECICING": 4, - "BETTER_PRECICING_COEF": 0.7, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.65, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "DAMAGE_TO_DISCARD_AIM_0_100": 96, - "MIN_TIME_DISCARD_AIM_SEC": 1.3, - "MAX_TIME_DISCARD_AIM_SEC": 2.9, - "XZ_COEF": 0.65, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.2, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, - "BASE_HIT_AFFECTION_MIN_ANG": 14, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_SHIEF": 0.5, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.55, - "SCATTERING_DIST_MODIF_CLOSE": 0.8, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -1, - "COEF_IF_MOVE": 1.1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 0.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 60, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.4, - "MAX_VISION_GRASS_METERS_FLARE": 7, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.5, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0005, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 43, - "ENEMY_LIGHT_ADD": 45, - "ENEMY_LIGHT_START_DIST": 40, - "CAN_LOOK_TO_WALL": false, - "CHECK_HEAD_ANY_DIST": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 2, - "RECOIL_PER_METER": 0.1, - "MAX_RECOIL_PER_METER": 0.2, - "HORIZONT_RECOIL_COEF": 0.4, - "WAIT_NEXT_SINGLE_SHOT": 0.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.1, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 333, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, - "LOW_DIST_TO_CHANGE_WEAPON": 10, - "FAR_DIST_TO_CHANGE_WEAPON": 50, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 30, - "CHANCE_RUN_FLASHED_100": 0, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.3, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 5, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, - "CLOSE_TO_SMOKE_TIME_DELTA": 7, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.7, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15999, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25999, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "SPRINT_BETWEEN_CACHED_POINTS": -1, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 15.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 2, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, - "DISPERSION_COEF": 3.6, - "CLOSE_DIST": 10, - "FAR_DIST": 30, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0.75, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": -1, - "GROUP_EXACTLY_PHRASE_DELAY": -1, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30999, - "STANDART_AMBUSH_DIST": 100999, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1 - }, - "Core": { - "VisibleAngle": 130, - "VisibleDistance": 147, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.1, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.3, - "WaitInCoverBetweenShotsSec": 1.5 - }, - "Scattering": { - "MinScatter": 0.015, - "WorkingScatter": 0.15, - "MaxScatter": 0.3, - "SpeedUp": 0.6, - "SpeedUpAim": 1.8, - "SpeedDown": -0.2, - "ToSlowBotSpeed": 1.8, - "ToLowBotSpeed": 2.8, - "ToUpBotSpeed": 4.3, - "MovingSlowCoef": 1.4, - "ToLowBotAngularSpeed": 140, - "ToStopBotAngularSpeed": 80, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.03, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.015, - "AMPLITUDE_SPEED": 0.001, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3, - "IF_NO_ENEMY": false, - "SHALL_GETUP_ON_ROTATE": false, - "SHALL_LAY_WITHOUT_CHECK": true - }, - "Aiming": { - "MAX_AIM_PRECICING": 4, - "BETTER_PRECICING_COEF": 0.7, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.65, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "DAMAGE_TO_DISCARD_AIM_0_100": 96, - "MIN_TIME_DISCARD_AIM_SEC": 1.3, - "MAX_TIME_DISCARD_AIM_SEC": 2.9, - "XZ_COEF": 0.65, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.2, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, - "BASE_HIT_AFFECTION_MIN_ANG": 14, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_SHIEF": 0.5, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.55, - "SCATTERING_DIST_MODIF_CLOSE": 0.8, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -1, - "COEF_IF_MOVE": 1.1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 0.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 60, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.4, - "MAX_VISION_GRASS_METERS_FLARE": 7, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.5, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0005, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 43, - "ENEMY_LIGHT_ADD": 45, - "ENEMY_LIGHT_START_DIST": 40, - "CAN_LOOK_TO_WALL": false, - "CHECK_HEAD_ANY_DIST": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 2, - "RECOIL_PER_METER": 0.1, - "MAX_RECOIL_PER_METER": 0.2, - "HORIZONT_RECOIL_COEF": 0.4, - "WAIT_NEXT_SINGLE_SHOT": 0.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.1, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 333, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, - "LOW_DIST_TO_CHANGE_WEAPON": 10, - "FAR_DIST_TO_CHANGE_WEAPON": 50, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 30, - "CHANCE_RUN_FLASHED_100": 0, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.3, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 5, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, - "CLOSE_TO_SMOKE_TIME_DELTA": 7, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.7, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15999, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25999, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "SPRINT_BETWEEN_CACHED_POINTS": -1, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 15.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 2, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, - "DISPERSION_COEF": 3.6, - "CLOSE_DIST": 10, - "FAR_DIST": 30, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0.75, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": -1, - "GROUP_EXACTLY_PHRASE_DELAY": -1, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30999, - "STANDART_AMBUSH_DIST": 100999, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1 - }, - "Core": { - "VisibleAngle": 130, - "VisibleDistance": 147, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.1, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.3, - "WaitInCoverBetweenShotsSec": 1.5 - }, - "Scattering": { - "MinScatter": 0.015, - "WorkingScatter": 0.15, - "MaxScatter": 0.3, - "SpeedUp": 0.6, - "SpeedUpAim": 1.8, - "SpeedDown": -0.2, - "ToSlowBotSpeed": 1.8, - "ToLowBotSpeed": 2.8, - "ToUpBotSpeed": 4.3, - "MovingSlowCoef": 1.4, - "ToLowBotAngularSpeed": 140, - "ToStopBotAngularSpeed": 80, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.03, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.015, - "AMPLITUDE_SPEED": 0.001, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3, - "IF_NO_ENEMY": false, - "SHALL_GETUP_ON_ROTATE": false, - "SHALL_LAY_WITHOUT_CHECK": true - }, - "Aiming": { - "MAX_AIM_PRECICING": 4, - "BETTER_PRECICING_COEF": 0.7, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.65, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "DAMAGE_TO_DISCARD_AIM_0_100": 96, - "MIN_TIME_DISCARD_AIM_SEC": 1.3, - "MAX_TIME_DISCARD_AIM_SEC": 2.9, - "XZ_COEF": 0.65, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.2, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, - "BASE_HIT_AFFECTION_MIN_ANG": 14, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_SHIEF": 0.5, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.55, - "SCATTERING_DIST_MODIF_CLOSE": 0.8, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -1, - "COEF_IF_MOVE": 1.1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 0.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 60, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.4, - "MAX_VISION_GRASS_METERS_FLARE": 7, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.5, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0005, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 43, - "ENEMY_LIGHT_ADD": 45, - "ENEMY_LIGHT_START_DIST": 40, - "CAN_LOOK_TO_WALL": false, - "CHECK_HEAD_ANY_DIST": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 2, - "RECOIL_PER_METER": 0.1, - "MAX_RECOIL_PER_METER": 0.2, - "HORIZONT_RECOIL_COEF": 0.4, - "WAIT_NEXT_SINGLE_SHOT": 0.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.1, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 333, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, - "LOW_DIST_TO_CHANGE_WEAPON": 10, - "FAR_DIST_TO_CHANGE_WEAPON": 50, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 30, - "CHANCE_RUN_FLASHED_100": 0, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.3, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 5, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, - "CLOSE_TO_SMOKE_TIME_DELTA": 7, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.7, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15999, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25999, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "SPRINT_BETWEEN_CACHED_POINTS": -1, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 15.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 2, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, - "DISPERSION_COEF": 3.6, - "CLOSE_DIST": 10, - "FAR_DIST": 30, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0.75, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": -1, - "GROUP_EXACTLY_PHRASE_DELAY": -1, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30999, - "STANDART_AMBUSH_DIST": 100999, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1 - }, - "Core": { - "VisibleAngle": 130, - "VisibleDistance": 147, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.1, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.3, - "WaitInCoverBetweenShotsSec": 1.5 - }, - "Scattering": { - "MinScatter": 0.015, - "WorkingScatter": 0.15, - "MaxScatter": 0.3, - "SpeedUp": 0.6, - "SpeedUpAim": 1.8, - "SpeedDown": -0.2, - "ToSlowBotSpeed": 1.8, - "ToLowBotSpeed": 2.8, - "ToUpBotSpeed": 4.3, - "MovingSlowCoef": 1.4, - "ToLowBotAngularSpeed": 140, - "ToStopBotAngularSpeed": 80, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.03, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.015, - "AMPLITUDE_SPEED": 0.001, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3, - "IF_NO_ENEMY": false, - "SHALL_GETUP_ON_ROTATE": false, - "SHALL_LAY_WITHOUT_CHECK": true - }, - "Aiming": { - "MAX_AIM_PRECICING": 4, - "BETTER_PRECICING_COEF": 0.7, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.65, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "DAMAGE_TO_DISCARD_AIM_0_100": 96, - "MIN_TIME_DISCARD_AIM_SEC": 1.3, - "MAX_TIME_DISCARD_AIM_SEC": 2.9, - "XZ_COEF": 0.65, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.2, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, - "BASE_HIT_AFFECTION_MIN_ANG": 14, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_SHIEF": 0.5, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.55, - "SCATTERING_DIST_MODIF_CLOSE": 0.8, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -1, - "COEF_IF_MOVE": 1.1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 0.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 60, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.4, - "MAX_VISION_GRASS_METERS_FLARE": 7, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.5, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0005, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 43, - "ENEMY_LIGHT_ADD": 45, - "ENEMY_LIGHT_START_DIST": 40, - "CAN_LOOK_TO_WALL": false, - "CHECK_HEAD_ANY_DIST": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 2, - "RECOIL_PER_METER": 0.1, - "MAX_RECOIL_PER_METER": 0.2, - "HORIZONT_RECOIL_COEF": 0.4, - "WAIT_NEXT_SINGLE_SHOT": 0.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.1, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 333, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, - "LOW_DIST_TO_CHANGE_WEAPON": 10, - "FAR_DIST_TO_CHANGE_WEAPON": 50, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 30, - "CHANCE_RUN_FLASHED_100": 0, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.3, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 5, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, - "CLOSE_TO_SMOKE_TIME_DELTA": 7, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.7, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15999, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25999, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "SPRINT_BETWEEN_CACHED_POINTS": -1, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 15.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 2, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, - "DISPERSION_COEF": 3.6, - "CLOSE_DIST": 10, - "FAR_DIST": 30, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0.75, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": -1, - "GROUP_EXACTLY_PHRASE_DELAY": -1, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30999, - "STANDART_AMBUSH_DIST": 100999, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1 - }, - "Core": { - "VisibleAngle": 130, - "VisibleDistance": 147, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.1, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.3, - "WaitInCoverBetweenShotsSec": 1.5 - }, - "Scattering": { - "MinScatter": 0.015, - "WorkingScatter": 0.15, - "MaxScatter": 0.3, - "SpeedUp": 0.6, - "SpeedUpAim": 1.8, - "SpeedDown": -0.2, - "ToSlowBotSpeed": 1.8, - "ToLowBotSpeed": 2.8, - "ToUpBotSpeed": 4.3, - "MovingSlowCoef": 1.4, - "ToLowBotAngularSpeed": 140, - "ToStopBotAngularSpeed": 80, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.03, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.015, - "AMPLITUDE_SPEED": 0.001, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 98, - "Earpiece": 75, - "FaceCover": 52, - "ArmorVest": 77, - "Eyewear": 45, - "ArmBand": 0, - "TacticalVest": 100, - "Backpack": 0, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 0, - "Holster": 100, - "Scabbard": 1, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_scope": 85, - "mod_magazine": 100, - "mod_sight_rear": 81, - "mod_stock": 69, - "mod_tactical_000": 59, - "mod_tactical_001": 0, - "mod_mount": 56, - "mod_bipod": 0, - "mod_muzzle": 81, - "mod_mount_000": 89, - "mod_mount_002": 20, - "mod_sight_front": 71, - "mod_tactical": 12, - "mod_mount_001": 35, - "mod_mount_003": 100, - "mod_foregrip": 92, - "mod_reciever": 100, - "mod_charge": 10, - "mod_mount_004": 0, - "mod_launcher": 0, - "mod_tactical_002": 0, - "mod_pistol_grip": 0, - "mod_scope_000": 100, - "mod_scope_001": 100, - "mod_scope_002": 100, - "mod_scope_003": 100, - "mod_stock_000": 100 - }, - "equipmentMods": { - "front_plate": 100, - "back_plate": 75, - "left_side_plate": 54, - "right_side_plate": 54 - } - }, "generation": { "items": { - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, "backpackLoot": { "weights": { "0": 1, @@ -3657,6 +2061,67 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, "pocketLoot": { "weights": { "0": 1, @@ -3667,6 +2132,21 @@ }, "whitelist": [] }, + "specialItems": { + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, "vestLoot": { "weights": { "0": 1, @@ -3678,28 +2158,1548 @@ "6": 0 }, "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 1 + } + } + }, + "health": { + "BodyParts": [ + { + "Chest": { + "max": 140, + "min": 140 }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 2, - "2": 1, - "3": 1, - "4": 0, - "5": 0 + "Head": { + "max": 50, + "min": 50 }, - "whitelist": [] + "LeftArm": { + "max": 100, + "min": 100 + }, + "LeftLeg": { + "max": 100, + "min": 100 + }, + "RightArm": { + "max": 100, + "min": 100 + }, + "RightLeg": { + "max": 100, + "min": 100 + }, + "Stomach": { + "max": 120, + "min": 120 + } + } + ], + "Energy": { + "max": 100, + "min": 100 + }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { + "Ammo": { + "Caliber127x55": { + "5cadf6ddae9215051e1c23b2": 197, + "5cadf6eeae921500134b2799": 25 + }, + "Caliber366TKM": { + "59e6542b86f77411dc52a77a": 311, + "59e655cb86f77411dc52a77b": 785, + "5f0596629e22f464da6bbdd9": 2110 + }, + "Caliber556x45NATO": { + "54527ac44bdc2d36668b4567": 273, + "59e68f6f86f7746c9f75e846": 1060, + "59e6906286f7746c9f75e847": 605, + "59e690b686f7746c9f75e848": 161, + "59e6920f86f77411d82aa167": 233 + }, + "Caliber762x39": { + "5656d7c34bdc2d9d198b4587": 8950, + "59e0d99486f7744a32234762": 867, + "59e4cf5286f7741778269d8a": 3210, + "64b7af434b75259c590fa893": 1410 + }, + "Caliber762x51": { + "58dd3ad986f77403051cba8f": 2580, + "5a6086ea4f39f99cd479502f": 343, + "5a608bf24f39f98ffc77720e": 572, + "5e023e53d4353e3302577c4c": 905 + }, + "Caliber762x54R": { + "560d61e84bdc2da74d8b4571": 1660, + "5887431f2459777e1612938f": 1470, + "59e77a2386f7742ee578960a": 2060, + "5e023d34e8a400319a28ed44": 813, + "5e023d48186a883be655e551": 472 + }, + "Caliber9x18PM": { + "573719762459775a626ccbc1": 1 + }, + "Caliber9x19PARA": { + "56d59d3ad2720bdb418b4577": 1 + }, + "Caliber9x39": { + "57a0dfb82459774d3078b56c": 2180, + "57a0e5022459774d1673f889": 105, + "5c0d668f86f7747ccb7f13b2": 4050, + "5c0d688c86f77413ae3407b2": 492, + "61962d879bb3d20b0946d385": 1490 + } + }, + "equipment": { + "ArmBand": {}, + "ArmorVest": { + "5ab8e79e86f7742d8b372e78": 351, + "5b44d22286f774172b0c9de8": 12160, + "5c0e51be86f774598e797894": 4678, + "5c0e53c886f7747fa54205c7": 4602, + "5c0e57ba86f7747fa141986d": 4727, + "5c0e5bab86f77461f55ed1f3": 9233, + "5c0e625a86f7742d77340f62": 192, + "5ca2151486f774244a3b8d30": 341, + "5df8a2ca86f7740bfe6df777": 4670, + "5e9dacf986f774054d6b89f4": 211, + "5f5f41476bdad616ad46d631": 635, + "64be79c487d1510151095552": 4550, + "64be79e2bf8412471d0d9bcc": 4710 + }, + "Backpack": {}, + "Earpiece": { + "5645bcc04bdc2d363b8b4572": 4137, + "5b432b965acfc47a8774094e": 8995, + "5c165d832e2216398b5a7e36": 5310, + "6033fa48ffd42c541047f728": 6420 + }, + "Eyewear": { + "557ff21e4bdc2d89578b4586": 1801, + "5c1a1cc52e221602b3136e3d": 1157 + }, + "FaceCover": { + "572b7fa524597762b747ce82": 2354, + "5bd073a586f7747e6f135799": 1091 + }, + "FirstPrimaryWeapon": { + "55801eed4bdc2d89578b4588": 4721, + "57838ad32459774a17445cd2": 2776, + "587e02ff24597743df3deaeb": 4816, + "588892092459774ac91d4b11": 2790, + "59e6687d86f77411d949b251": 4734, + "5aafa857e5b5b00018480968": 928, + "5ae08f0a5acfc408fb1398a1": 4823, + "5c46fbd72e2216398b5a8c9c": 10520, + "5c501a4d2e221602b412b540": 5759, + "5d43021ca4b9362eab4b5e25": 921, + "5de652c31b7e3716273428be": 8083, + "5df24cf80dee1b22f862e9bc": 2872, + "5df8ce05b11454561e39243b": 515, + "5f2a9575926fd9352339381f": 1814, + "61f7c9e189e6fb1a5e3ea78d": 4794, + "643ea5b23db6f9f57107d9fd": 4780 + }, + "Headwear": { + "572b7fa124597762b472f9d2": 6673, + "59e770f986f7742cbe3164ef": 6693, + "5aa2a7e8e5b5b00016327c16": 3280, + "5aa2b87de5b5b00016327c25": 3334, + "5aa2ba19e5b5b00014028f4e": 6767, + "5aa2ba46e5b5b000137b758d": 6741, + "5b43271c5acfc432ff4dce65": 6561, + "5b4327aa5acfc400175496e0": 463, + "5d96141523f0ea1b7f2aacab": 446, + "5f60e6403b85f6263c14558c": 3268, + "603618feffd42c541047f771": 6541, + "60361a7497633951dc245eb4": 6747, + "60b52e5bc7d8103275739d67": 459, + "618aef6d0a5a59657e5f55ee": 101, + "61c18db6dfd64163ea78fbb4": 6753 + }, + "Holster": { + "5448bd6b4bdc2dfc2f8b4569": 12920, + "56e0598dd2720bb5668b45a6": 30450, + "576a581d2459771e7b1bc4f1": 7354, + "5a17f98cfcdbcb0980087290": 7150, + "5abccb7dd8ce87001773e277": 7323, + "633ec7c2a6918cb895019c6c": 444 + }, + "Pockets": { + "557ffd194bdc2d28148b457f": 1 + }, + "Scabbard": { + "5c012ffc0db834001d23f03f": 1 + }, + "SecondPrimaryWeapon": {}, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": { + "5929a2a086f7744f4b234d43": 7304, + "592c2d1a86f7746dbe2af32a": 7264, + "59e7643b86f7742cbf2c109a": 7246, + "5c0e3eb886f7742015526062": 7157, + "5ca20abf86f77418567a43f2": 7339, + "5d5d646386f7742797261fd9": 7271, + "5e4abfed86f77406a2713cf7": 7416, + "5fd4c60f875c30179f5d04c2": 7325, + "64be7110bf597ba84a0a41ea": 7326 + } + }, + "items": { + "Backpack": {}, + "Pockets": { + "5448be9a4bdc2dfd2f8b456a": 995, + "5448c12b4bdc2d02308b456f": 6530, + "5448c1d04bdc2dff2f8b4569": 549, + "559ba5b34bdc2d1f1a8b4582": 4788, + "560d61e84bdc2da74d8b4571": 725, + "5710c24ad2720bc3458b45a3": 1303, + "576a5ed62459771e9c2096cb": 5230, + "5888988e24597752fe43a6fa": 2840, + "590c678286f77426c9660122": 5222, + "59e77a2386f7742ee578960a": 2017, + "5a17fb03fcdbcbcae668728f": 5454, + "5aaa5e60e5b5b000140293d6": 168, + "5b7bef1e5acfc43d82528402": 1844, + "5c471c442e221602b542a6f8": 5360, + "5c503ad32e2216398b5aada2": 5196, + "5cadf6ddae9215051e1c23b2": 290, + "5cadf6eeae921500134b2799": 37, + "5de653abf76fdc1ce94a5a2a": 5182, + "5df25b6c0b92095fd441e4cf": 2928, + "5df8f535bb49d91fb446d6b0": 528, + "5e023d34e8a400319a28ed44": 704, + "5e023d48186a883be655e551": 221, + "6422e1ea3c0f06190302161a": 4851, + "64b8f7968532cf95ee0a0dbf": 3643, + "64b9e2037fdfb81df81e3c25": 943 + }, + "SecuredContainer": { + "54527ac44bdc2d36668b4567": 954, + "560d61e84bdc2da74d8b4571": 49590, + "5656d7c34bdc2d9d198b4587": 24540, + "56d59d3ad2720bdb418b4577": 2862, + "573719762459775a626ccbc1": 10000, + "57a0dfb82459774d3078b56c": 7034, + "57a0e5022459774d1673f889": 315, + "5887431f2459777e1612938f": 39460, + "58dd3ad986f77403051cba8f": 68010, + "59e0d99486f7744a32234762": 2825, + "59e4cf5286f7741778269d8a": 10620, + "59e6542b86f77411dc52a77a": 11370, + "59e655cb86f77411dc52a77b": 26100, + "59e68f6f86f7746c9f75e846": 4038, + "59e6906286f7746c9f75e847": 2429, + "59e690b686f7746c9f75e848": 610, + "59e6920f86f77411d82aa167": 890, + "59e77a2386f7742ee578960a": 66520, + "5a6086ea4f39f99cd479502f": 11060, + "5a608bf24f39f98ffc77720e": 16600, + "5c0d668f86f7747ccb7f13b2": 12160, + "5c0d688c86f77413ae3407b2": 1704, + "5cadf6ddae9215051e1c23b2": 158, + "5cadf6eeae921500134b2799": 14, + "5e023d34e8a400319a28ed44": 27020, + "5e023d48186a883be655e551": 15430, + "5e023e53d4353e3302577c4c": 24760, + "5f0596629e22f464da6bbdd9": 66570, + "61962d879bb3d20b0946d385": 4921, + "64b7af434b75259c590fa893": 4839, + "64b8f7968532cf95ee0a0dbf": 37590 + }, + "SpecialLoot": {}, + "TacticalVest": { + "57838f9f2459774a150289a0": 55, + "587df583245977373c4f1129": 98, + "5c5970672e221602b21d7855": 10, + "5cfe8010d7ad1a59283b14c6": 62, + "64b9cf0ac12b9c38db26923a": 12 + } + }, + "mods": { + "5448bd6b4bdc2dfc2f8b4569": { + "mod_magazine": [ + "5448c12b4bdc2d02308b456f" + ], + "mod_pistolgrip": [ + "6374a7e7417239a7bf00f042" + ], + "mod_reciever": [ + "6374a822e629013b9c0645c8" + ] + }, + "55801eed4bdc2d89578b4588": { + "mod_magazine": [ + "559ba5b34bdc2d1f1a8b4582" + ], + "mod_muzzle": [ + "560e620e4bdc2d724b8b456b", + "5c4ee3d62e2216152006f302", + "5c4eec9b2e2216398b5aaba2" + ], + "mod_scope": [ + "544a3a774bdc2d3a388b4567" + ], + "mod_sight_rear": [ + "56083e1b4bdc2dc8488b4572" + ], + "mod_stock": [ + "61faa91878830f069b6b7967" + ], + "mod_tactical": [ + "56083eab4bdc2d26448b456a" + ] + }, + "5648b4534bdc2d3d1c8b4580": { + "mod_foregrip": [ + "588226ef24597767af46e39c", + "5b057b4f5acfc4771e1bd3e9", + "588226d124597767ad33f787", + "5c791e872e2216001219c40a", + "588226e62459776e3e094af7", + "588226dd24597767ad33f789" + ] + }, + "5649be884bdc2d79388b4577": { + "mod_stock_000": [ + "5ae30c9a5acfc408fb139a03" + ] + }, + "56e0598dd2720bb5668b45a6": { + "mod_magazine": [ + "5448c12b4bdc2d02308b456f" + ], + "mod_muzzle": [ + "56e05b06d2720bb2668b4586" + ], + "mod_pistolgrip": [ + "56e05a6ed2720bd0748b4567" + ] + }, + "576a581d2459771e7b1bc4f1": { + "mod_magazine": [ + "576a5ed62459771e9c2096cb" + ], + "mod_pistol_grip": [ + "576a63cd2459771e796e0e11" + ] + }, + "576fd4ec2459777f0b518431": { + "mod_tactical": [ + "57f3a5ae2459772b0e0bf19e" + ] + }, + "57838ad32459774a17445cd2": { + "mod_charge": [ + "5648ac824bdc2ded0b8b457d", + "6130ca3fd92c473c77020dbd" + ], + "mod_handguard": [ + "6565bb7eb4b12a56eb04b084" + ], + "mod_magazine": [ + "57838f0b2459774a256959b2", + "57838f9f2459774a150289a0" + ], + "mod_mount_000": [ + "576fd4ec2459777f0b518431" + ], + "mod_muzzle": [ + "57838c962459774a1651ec63" + ], + "mod_reciever": [ + "578395402459774a256959b5" + ], + "mod_stock": [ + "578395e82459774a0e553c7b" + ] + }, + "57838c962459774a1651ec63": { + "mod_mount_000": [ + "59eb7ebe86f7740b373438ce" + ] + }, + "57c69dd424597774c03b7bbc": { + "mod_scope": [ + "5b3b99475acfc432ff4dcbee", + "5b2388675acfc4771e1be0be", + "57c5ac0824597754771e88a9", + "5a37cb10c4a282329a73b4e7", + "617151c1d92c473c770214ab", + "618ba27d9008e4636a67f61d" + ] + }, + "587e02ff24597743df3deaeb": { + "mod_barrel": [ + "634eff66517ccc8a960fc735" + ], + "mod_magazine": [ + "587df583245977373c4f1129", + "5c5970672e221602b21d7855" + ], + "mod_mount": [ + "587e08ee245977446b4410cf" + ], + "mod_reciever": [ + "634f06262e5def262d0b30ca" + ], + "mod_stock": [ + "5d0236dad7ad1a0940739d29", + "5afd7ded5acfc40017541f5e" + ] + }, + "587e08ee245977446b4410cf": { + "mod_scope": [ + "5947db3f86f77447880cf76f", + "5c82342f2e221644f31c060e", + "5cf638cbd7f00c06595bc936", + "63d114019e35b334d82302f7" + ] + }, + "588892092459774ac91d4b11": { + "mod_barrel": [ + "5888956924597752983e182d", + "5888945a2459774bf43ba385" + ], + "mod_magazine": [ + "5888988e24597752fe43a6fa" + ], + "mod_pistol_grip": [ + "55d4b9964bdc2d1d4e8b456e", + "63f5feead259b42f0b4d6d0f", + "57c55efc2459772d2c6271e7", + "57c55f172459772d27602381", + "5b07db875acfc40dc528a5f6" + ], + "mod_scope": [ + "5c86592b2e2216000e69e77c", + "57c69dd424597774c03b7bbc" + ], + "mod_stock": [ + "58889d0c2459775bc215d981" + ] + }, + "5888945a2459774bf43ba385": { + "mod_muzzle": [ + "58889c7324597754281f9439" + ] + }, + "5888956924597752983e182d": { + "mod_handguard": [ + "5888976c24597754281f93f5" + ], + "mod_muzzle": [ + "5888996c24597754281f9419" + ] + }, + "58d39b0386f77443380bf13c": { + "mod_scope": [ + "58d399e486f77442e0016fe7" + ] + }, + "58d39d3d86f77445bb794ae7": { + "mod_scope": [ + "58d39b0386f77443380bf13c", + "58d399e486f77442e0016fe7" + ] + }, + "59e6687d86f77411d949b251": { + "mod_gas_block": [ + "5a01ad4786f77450561fda02" + ], + "mod_magazine": [ + "5cfe8010d7ad1a59283b14c6", + "64b9cf0ac12b9c38db26923a" + ], + "mod_muzzle": [ + "59e8a00d86f7742ad93b569c", + "5a9fbb74a2750c0032157181" + ], + "mod_pistol_grip": [ + "628c9ab845c59e5b80768a81", + "628a664bccaab13006640e47", + "6087e663132d4d12c81fd96b", + "63f4da90f31d4a33b87bd054", + "623c3be0484b5003161840dc", + "59e6318286f77444dd62c4cc" + ], + "mod_reciever": [ + "59e6449086f7746c9f75e822" + ], + "mod_sight_rear": [ + "59e8977386f77415a553c453" + ], + "mod_stock": [ + "628a6678ccaab13006640e49" + ] + }, + "59eb7ebe86f7740b373438ce": { + "mod_foregrip": [ + "5c1bc4812e22164bef5cfde7" + ] + }, + "5a01ad4786f77450561fda02": { + "mod_handguard": [ + "5648b4534bdc2d3d1c8b4580", + "5efaf417aeb21837e749c7f2" + ] + }, + "5a17f98cfcdbcb0980087290": { + "mod_magazine": [ + "5a17fb03fcdbcbcae668728f" + ], + "mod_pistol_grip": [ + "5a17fc70fcdbcb0176308b3d" + ], + "mod_sight_front": [ + "5aba62f8d8ce87001943946b" + ], + "mod_sight_rear": [ + "5aba637ad8ce87001773e17f" + ] + }, + "5a33b2c9c4a282000c5a9511": { + "mod_scope": [ + "5a32aa8bc4a2826c6e06d737" + ] + }, + "5aa66a9be5b5b0214e506e89": { + "mod_scope": [ + "5aa66be6e5b5b0214e506e97" + ] + }, + "5aa66c72e5b5b00016327c93": { + "mod_scope_000": [ + "56ea70acd2720b844b8b4594" + ], + "mod_scope_001": [ + "5a33b2c9c4a282000c5a9511" + ], + "mod_scope_002": [ + "58d39d3d86f77445bb794ae7" + ], + "mod_scope_003": [ + "58d39d3d86f77445bb794ae7" + ] + }, + "5aaf8e43e5b5b00015693246": { + "mod_mount": [ + "5ab24ef9e5b5b00fe93c9209" + ] + }, + "5aafa857e5b5b00018480968": { + "mod_barrel": [ + "5addbac75acfc400194dbc56" + ], + "mod_magazine": [ + "64b9e2037fdfb81df81e3c25" + ], + "mod_mount": [ + "5addbfef5acfc400185c2857" + ], + "mod_sight_rear": [ + "5abcbb20d8ce87001773e258" + ], + "mod_stock": [ + "5addbf175acfc408fb13965b", + "5aaf8e43e5b5b00015693246" + ] + }, + "5ab8e79e86f7742d8b372e78": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "657326bc5d3a3129fb05f36b" + ], + "Front_plate": [ + "656f611f94b480b8a500c0db" + ], + "Soft_armor_back": [ + "657326978c1cc6dcd9098b56" + ], + "Soft_armor_front": [ + "65732688d9d89ff7ac0d9c4c" + ], + "Soft_armor_left": [ + "657326a28c1cc6dcd9098b5a" + ], + "soft_armor_right": [ + "657326b08c1cc6dcd9098b5e" + ] + }, + "5abccb7dd8ce87001773e277": { + "mod_magazine": [ + "5a17fb03fcdbcbcae668728f" + ], + "mod_muzzle": [ + "5abcc328d8ce8700194394f3" + ], + "mod_pistol_grip": [ + "5a17fc70fcdbcb0176308b3d" + ], + "mod_sight_front": [ + "5aba62f8d8ce87001943946b" + ], + "mod_sight_rear": [ + "5aba639ed8ce8700182ece67" + ], + "mod_stock": [ + "5a17fb9dfcdbcbcae6687291" + ] + }, + "5addbac75acfc400194dbc56": { + "mod_muzzle": [ + "5addbb945acfc4001a5fc44e", + "5addbbb25acfc40015621bd9", + "5addbba15acfc400185c2854", + "5addbb825acfc408fb139400" + ] + }, + "5addbb825acfc408fb139400": { + "mod_sight_front": [ + "5aafa49ae5b5b00015042a58" + ] + }, + "5addbb945acfc4001a5fc44e": { + "mod_sight_front": [ + "5addba3e5acfc4001669f0ab" + ] + }, + "5addbbb25acfc40015621bd9": { + "mod_sight_front": [ + "5addba3e5acfc4001669f0ab" + ] + }, + "5addbf175acfc408fb13965b": { + "mod_mount": [ + "5addbfd15acfc40015621bde", + "5addbfbb5acfc400194dbcf7" + ] + }, + "5addbfef5acfc400185c2857": { + "mod_scope": [ + "5dff77c759400025ea5150cf", + "57c69dd424597774c03b7bbc" + ] + }, + "5ae08f0a5acfc408fb1398a1": { + "mod_barrel": [ + "5bfd4cbe0db834001b73449f" + ], + "mod_magazine": [ + "5ae0973a5acfc4001562206c" + ], + "mod_mount": [ + "5b3f7bf05acfc433000ecf6b" + ], + "mod_stock": [ + "5bbdb870d4351e00367fb67d", + "5bfd37c80db834001d23e842", + "5bfd36290db834001966869a" + ] + }, + "5afd7ded5acfc40017541f5e": { + "mod_pistol_grip": [ + "5afd7e445acfc4001637e35a" + ], + "mod_stock": [ + "5afd7e095acfc40017541f61" + ] + }, + "5b3f7bf05acfc433000ecf6b": { + "mod_mount": [ + "5b3f7c005acfc4704b4a1de8", + "5d024f5cd7ad1a04a067e91a" + ] + }, + "5b3f7c005acfc4704b4a1de8": { + "mod_scope": [ + "5b3f7c1c5acfc40dc5296b1d" + ] + }, + "5b44d22286f774172b0c9de8": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c" + ], + "Collar": [ + "65705cea4916448ae1050897" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c" + ], + "Soft_armor_back": [ + "65705c3c14f2ed6d7d0b7738" + ], + "Soft_armor_front": [ + "65704de13e7bba58ea0285c8" + ], + "Soft_armor_left": [ + "65705c777260e1139e091408" + ], + "soft_armor_right": [ + "65705cb314f2ed6d7d0b773c" + ] + }, + "5bfd4cbe0db834001b73449f": { + "mod_muzzle": [ + "5b86a0e586f7745b600ccb23", + "5bc5a35cd4351e450201232f", + "5bbdb83fd4351e44f824c44b", + "5bc5a351d4351e003477a414" + ] + }, + "5c064c400db834001d23f468": { + "mod_scope": [ + "5aa66c72e5b5b00016327c93" + ] + }, + "5c0e2f94d174af029f650d56": { + "mod_gas_block": [ + "56eabcd4d2720b66698b4574" + ], + "mod_muzzle": [ + "5b3a16655acfc40016387a2a" + ] + }, + "5c0e3eb886f7742015526062": { + "Collar": [ + "65764c39526e320fbe035777" + ], + "Groin": [ + "65764c6b526e320fbe03577b" + ], + "Soft_armor_back": [ + "65764bc22bc38ef78e076485" + ], + "Soft_armor_front": [ + "65764a4cd8537eb26a0355ee" + ] + }, + "5c0e51be86f774598e797894": { + "Back_plate": [ + "656efd66034e8e01c407f35c" + ], + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "Soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "Soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "Soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0e53c886f7747fa54205c7": { + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "back_plate": [ + "656efd66034e8e01c407f35c" + ], + "front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0e57ba86f7747fa141986d": { + "Back_plate": [ + "657b22485f444d6dff0c6c2f" + ], + "Collar": [ + "657080ca12755ae0d907ad5e" + ], + "Front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "Groin": [ + "65708122f65e2491bf009755" + ], + "Groin_back": [ + "65708165696fe382cf073255" + ], + "Soft_armor_back": [ + "6570800612755ae0d907acf8" + ], + "Soft_armor_front": [ + "65707fc348c7a887f2010432" + ], + "Soft_armor_left": [ + "65708070f65e2491bf00972c" + ], + "soft_armor_right": [ + "657080a212755ae0d907ad04" + ] + }, + "5c0e5bab86f77461f55ed1f3": { + "Collar": [ + "6571babb4076795e5e07383f" + ], + "Front_plate": [ + "654a4dea7c17dec2f50cc86a" + ], + "Groin": [ + "6571bac34076795e5e073843" + ], + "Groin_back": [ + "6571babf4cb80d995d0a1494" + ], + "Soft_armor_back": [ + "6571baa74cb80d995d0a1490" + ], + "Soft_armor_front": [ + "6571b27a6d84a2b8b6007f92" + ], + "Soft_armor_left": [ + "6571baac6d84a2b8b6007fa3" + ], + "soft_armor_right": [ + "6571bab0f41985531a038091" + ] + }, + "5c0e625a86f7742d77340f62": { + "Back_plate": [ + "656fafe3498d1b7e3e071da4" + ], + "Collar": [ + "657643a220cc24d17102b14c" + ], + "Front_plate": [ + "656f63c027aed95beb08f62c" + ], + "Left_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "657642b0e6d5dd75f40688a5" + ], + "Soft_armor_front": [ + "65764275d8537eb26a0355e9" + ], + "Soft_armor_left": [ + "6576434820cc24d17102b148" + ], + "soft_armor_right": [ + "657643732bc38ef78e076477" + ] + }, + "5c0faeddd174af02a962601f": { + "mod_stock_000": [ + "58d2947e86f77447aa070d53", + "56eabf3bd2720b75698b4569", + "5beec8c20db834001d2c465c", + "602e620f9b513876d4338d9a" + ] + }, + "5c46fbd72e2216398b5a8c9c": { + "mod_barrel": [ + "5c471cb32e221602b177afaa" + ], + "mod_magazine": [ + "5c471c442e221602b542a6f8" + ], + "mod_mount_000": [ + "5d0a29ead7ad1a0026013f27" + ], + "mod_mount_001": [ + "5c471c2d2e22164bef5d077f" + ], + "mod_pistol_grip": [ + "5c471be12e221602b66cd9ac", + "6516b129609aaf354b34b3a8" + ], + "mod_reciever": [ + "5c471bd12e221602b4129c3a" + ], + "mod_stock": [ + "6197b229af1f5202c57a9bea", + "5c471b5d2e221602b21d4e14" + ] + }, + "5c471bfc2e221602b21d4e17": { + "mod_muzzle": [ + "5e01e9e273d8eb11426f5bc3" + ], + "mod_sight_front": [ + "5c471ba12e221602b3137d76" + ] + }, + "5c471c2d2e22164bef5d077f": { + "mod_handguard": [ + "5c471c6c2e221602b66cd9ae" + ], + "mod_sight_rear": [ + "5c471b7e2e2216152006e46c" + ] + }, + "5c471cb32e221602b177afaa": { + "mod_gas_block": [ + "5c471c842e221615214259b5" + ], + "mod_muzzle": [ + "5c471bfc2e221602b21d4e17" + ] + }, + "5c4eec9b2e2216398b5aaba2": { + "mod_muzzle": [ + "5c4eecc32e221602b412b440" + ] + }, + "5c4eecc32e221602b412b440": { + "mod_tactical": [ + "5c4eecde2e221602b3140418" + ] + }, + "5c501a4d2e221602b412b540": { + "mod_gas_block": [ + "5c5039be2e221602b177c9ff" + ], + "mod_magazine": [ + "5c503ad32e2216398b5aada2" + ], + "mod_mount": [ + "5c82342f2e221644f31c060e" + ], + "mod_muzzle": [ + "5f63407e1b231926f2329f15" + ], + "mod_reciever": [ + "5c503d0a2e221602b542b7ef" + ], + "mod_sight_rear": [ + "5c503b1c2e221602b21d6e9d" + ], + "mod_stock": [ + "5f63405df5750b524b45f114", + "5c503af12e221602b177ca02" + ] + }, + "5c793fc42e221600114ca25d": { + "mod_stock_000": [ + "58d2946c86f7744e271174b5" + ] + }, + "5c82342f2e221644f31c060e": { + "mod_tactical": [ + "57f3a5ae2459772b0e0bf19e" + ] + }, + "5c86592b2e2216000e69e77c": { + "mod_scope": [ + "5aa66be6e5b5b0214e506e97", + "56ea70acd2720b844b8b4594" + ] + }, + "5ca2151486f774244a3b8d30": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "6575dd769d3a0ddf660b904b" + ], + "Front_plate": [ + "65573fa5655447403702a816" + ], + "Groin": [ + "6575dd800546f8b1de093df6" + ], + "Groin_back": [ + "6575dd94945bf78edd04c43c" + ], + "Soft_armor_back": [ + "6575dd519e27f4a85e081146" + ], + "Soft_armor_front": [ + "6575dd3e9e27f4a85e081142" + ], + "Soft_armor_left": [ + "6575dd64945bf78edd04c438" + ], + "soft_armor_right": [ + "6575dd6e9d3a0ddf660b9047" + ] + }, + "5d0236dad7ad1a0940739d29": { + "mod_pistol_grip": [ + "5d023784d7ad1a049d4aa7f2" + ], + "mod_tactical_000": [ + "5b3a337e5acfc4704b4a19a0" + ] + }, + "5d0a29ead7ad1a0026013f27": { + "mod_scope": [ + "5d0a3a58d7ad1a669c15ca14" + ] + }, + "5d120a10d7ad1a4e1026ba85": { + "mod_stock": [ + "5d120a28d7ad1a1c8962e295" + ] + }, + "5d43021ca4b9362eab4b5e25": { + "mod_charge": [ + "55d44fd14bdc2d962f8b456e" + ], + "mod_magazine": [ + "5448c1d04bdc2dff2f8b4569", + "5aaa5e60e5b5b000140293d6" + ], + "mod_pistol_grip": [ + "59db3b0886f77429d72fb895" + ], + "mod_reciever": [ + "5d4405aaa4b9361e6a4e6bd3" + ], + "mod_stock": [ + "5c793fc42e221600114ca25d" + ] + }, + "5d4405aaa4b9361e6a4e6bd3": { + "mod_barrel": [ + "5c0e2f94d174af029f650d56" + ], + "mod_handguard": [ + "5c0e2f5cd174af02a012cfc9" + ], + "mod_scope": [ + "5c064c400db834001d23f468" + ], + "mod_sight_rear": [ + "5dfa3d7ac41b2312ea33362a" + ] + }, + "5d5d646386f7742797261fd9": { + "Groin": [ + "6576504b526e320fbe035783" + ], + "Groin_back": [ + "6576500f526e320fbe03577f" + ], + "Soft_armor_back": [ + "65764fae2bc38ef78e07648d" + ], + "Soft_armor_front": [ + "65764e1e2bc38ef78e076489" + ] + }, + "5de652c31b7e3716273428be": { + "mod_barrel": [ + "5de65547883dde217541644b" + ], + "mod_magazine": [ + "5de653abf76fdc1ce94a5a2a" + ], + "mod_mount": [ + "5de6558e9f98ac2bc65950fc" + ], + "mod_stock": [ + "5de655be4a9f347bc92edb88" + ] + }, + "5de65547883dde217541644b": { + "mod_muzzle": [ + "5a9fbb74a2750c0032157181", + "5de6556a205ddc616a6bc4f7" + ] + }, + "5de6558e9f98ac2bc65950fc": { + "mod_scope": [ + "5dff77c759400025ea5150cf", + "57aca93d2459771f2c7e26db", + "5c0517910db83400232ffee5" + ] + }, + "5df24cf80dee1b22f862e9bc": { + "mod_barrel": [ + "5df256570dee1b22f862e9c4" + ], + "mod_magazine": [ + "5df25b6c0b92095fd441e4cf" + ], + "mod_mount": [ + "5df35e970b92095fd441e4d2" + ], + "mod_stock": [ + "5df35e59c41b2312ea3334d5" + ] + }, + "5df256570dee1b22f862e9c4": { + "mod_muzzle": [ + "5b7d693d5acfc43bca706a3d", + "5d026791d7ad1a04a067ea63", + "5bbdb8bdd4351e4502011460", + "612e0e3c290d254f5e6b291d", + "5df35e7f2a78646d96665dd4", + "5d02677ad7ad1a04a15c0f95", + "5cdd7693d7f00c0010373aa5", + "5cdd7685d7f00c000f260ed2" + ] + }, + "5df25d3bfd6b4e6e2276dc9a": { + "mod_foregrip": [ + "5df36948bb49d91fb446d5ad" + ], + "mod_mount_000": [ + "5df35eb2b11454561e3923e2" + ], + "mod_mount_001": [ + "5df35eb2b11454561e3923e2" + ], + "mod_mount_002": [ + "5df35ea9c41b2312ea3334d8" + ], + "mod_mount_003": [ + "5df35eb2b11454561e3923e2" + ] + }, + "5df35e59c41b2312ea3334d5": { + "mod_handguard": [ + "5df25d3bfd6b4e6e2276dc9a" + ], + "mod_pistol_grip": [ + "5df38a5fb74cd90030650cb6" + ], + "mod_stock_axis": [ + "5df35ddddfc58d14537c2036" + ] + }, + "5df35e970b92095fd441e4d2": { + "mod_scope": [ + "5dff77c759400025ea5150cf", + "57c69dd424597774c03b7bbc", + "5c86592b2e2216000e69e77c" + ] + }, + "5df8a2ca86f7740bfe6df777": { + "Soft_armor_back": [ + "656fd89bf5a9631d4e042575" + ], + "Soft_armor_front": [ + "656fd7c32668ef0402028fb9" + ] + }, + "5df8ce05b11454561e39243b": { + "mod_charge": [ + "5df8e053bb49d91fb446d6a6" + ], + "mod_magazine": [ + "5df8f535bb49d91fb446d6b0" + ], + "mod_pistol_grip": [ + "55d4b9964bdc2d1d4e8b456e" + ], + "mod_reciever": [ + "5df8e4080b92095fd441e594" + ], + "mod_stock": [ + "5649be884bdc2d79388b4577" + ] + }, + "5df8e4080b92095fd441e594": { + "mod_barrel": [ + "5df917564a9f347bc92edca3" + ], + "mod_handguard": [ + "5df916dfbb49d91fb446d6b9" + ], + "mod_scope": [ + "5c07dd120db834001c39092d", + "544a3a774bdc2d3a388b4567", + "5c0517910db83400232ffee5", + "5aa66a9be5b5b0214e506e89" + ] + }, + "5df917564a9f347bc92edca3": { + "mod_gas_block": [ + "5dfa3d45dfc58d14537c20b0" + ], + "mod_muzzle": [ + "612e0d3767085e45ef14057f", + "5dfa3cd1b33c0951220c079b" + ] + }, + "5dfa3cd1b33c0951220c079b": { + "mod_muzzle": [ + "5dfa3d2b0dee1b22f862eade" + ] + }, + "5dff77c759400025ea5150cf": { + "mod_scope": [ + "5dff772da3651922b360bf91" + ] + }, + "5e01e9e273d8eb11426f5bc3": { + "mod_muzzle": [ + "5e01ea19e9dc277128008c0b" + ] + }, + "5e9dacf986f774054d6b89f4": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "65732e215d3a3129fb05f3e1" + ], + "Front_plate": [ + "65573fa5655447403702a816" + ], + "Groin": [ + "65732e30dd8739f6440ef383" + ], + "Soft_armor_back": [ + "65732df4d0acf75aea06c87b" + ], + "Soft_armor_front": [ + "65732de75d3a3129fb05f3dd" + ], + "Soft_armor_left": [ + "65732e05d0acf75aea06c87f" + ], + "soft_armor_right": [ + "65732e0f6784ca384b0167ad" + ] + }, + "5efaf417aeb21837e749c7f2": { + "mod_foregrip": [ + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "5b057b4f5acfc4771e1bd3e9", + "588226ef24597767af46e39c", + "588226d124597767ad33f787", + "5c791e872e2216001219c40a" + ], + "mod_tactical_000": [ + "626becf9582c3e319310b837" + ] + }, + "5f2a9575926fd9352339381f": { + "mod_barrel": [ + "5f2aa46b878ef416f538b567" + ], + "mod_handguard": [ + "5f2aa47a200e2c0ee46efa71" + ], + "mod_magazine": [ + "5b7bef1e5acfc43d82528402" + ], + "mod_mount": [ + "5f2aa49f9b44de6b1b4e68d4" + ] + }, + "5f2aa43ba9b91d26f20ae6d2": { + "mod_muzzle": [ + "5b7d693d5acfc43bca706a3d", + "5f2aa4559b44de6b1b4e68d1", + "5d02677ad7ad1a04a15c0f95", + "5d026791d7ad1a04a067ea63", + "5bbdb8bdd4351e4502011460", + "5cdd7685d7f00c000f260ed2", + "612e0e3c290d254f5e6b291d", + "607ffb988900dc2d9a55b6e4" + ] + }, + "5f2aa46b878ef416f538b567": { + "mod_muzzle": [ + "5f2aa43ba9b91d26f20ae6d2" + ] + }, + "5f2aa47a200e2c0ee46efa71": { + "mod_mount_000": [ + "5f2aa493cd375f14e15eea72" + ] + }, + "5f2aa493cd375f14e15eea72": { + "mod_foregrip": [ + "588226e62459776e3e094af7", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "588226ef24597767af46e39c" + ] + }, + "5f2aa49f9b44de6b1b4e68d4": { + "mod_scope": [ + "57c69dd424597774c03b7bbc" + ] + }, + "5f5f41476bdad616ad46d631": { + "Back_plate": [ + "657b2797c3dbcb01d60c35ea" + ], + "Collar": [ + "65731b666e709cddd001ec43" + ], + "Front_plate": [ + "656f664200d62bcd2e024077" + ], + "Groin": [ + "65731b716e709cddd001ec47" + ], + "Groin_back": [ + "65731b6b6042b0f210020ef6" + ], + "Left_side_plate": [ + "654a4f8bc721968a4404ef18" + ], + "Right_side_plate": [ + "654a4f8bc721968a4404ef18" + ], + "Soft_armor_back": [ + "65731b4fcea9255e2102360e" + ], + "Soft_armor_front": [ + "65731b46cea9255e2102360a" + ], + "Soft_armor_left": [ + "65731b576e709cddd001ec3f" + ], + "soft_armor_right": [ + "65731b60ff6dc44a7d068c4a" + ] + }, + "602e3f1254072b51b239f713": { + "mod_stock_000": [ + "5beec8c20db834001d2c465c", + "56eabf3bd2720b75698b4569", + "58d2947e86f77447aa070d53" + ] + }, + "618b9643526131765025ab35": { + "mod_mount": [ + "618ba91477b82356f91ae0e8" + ], + "mod_scope": [ + "5b2388675acfc4771e1be0be", + "57c5ac0824597754771e88a9", + "617151c1d92c473c770214ab", + "5a37cb10c4a282329a73b4e7", + "5b3b99475acfc432ff4dcbee", + "618ba27d9008e4636a67f61d" + ] + }, + "6197b229af1f5202c57a9bea": { + "mod_stock": [ + "591aef7986f774139d495f03", + "5b0800175acfc400153aebd4", + "5d120a10d7ad1a4e1026ba85", + "591af10186f774139d495f0e", + "57ade1442459771557167e15", + "5947e98b86f774778f1448bc", + "5c0faeddd174af02a962601f", + "5947eab886f77475961d96c5" + ] + }, + "61f4012adfc9f01a816adda1": { + "mod_handguard": [ + "61f7b85367ddd414173fdb36", + "61f8024263dc1250e26eb029" + ], + "mod_scope": [ + "61f804acfcba9556ea304cb8" + ] + }, + "61f7c9e189e6fb1a5e3ea78d": { + "mod_barrel": [ + "61f4012adfc9f01a816adda1" + ], + "mod_stock": [ + "61f7b234ea4ab34f2f59c3ec", + "61f803b8ced75b2e852e35f8" + ], + "patron_in_weapon_000": [ + "64b8f7968532cf95ee0a0dbf" + ] + }, + "61f804acfcba9556ea304cb8": { + "mod_scope": [ + "5dff77c759400025ea5150cf", + "5c0517910db83400232ffee5", + "618b9643526131765025ab35" + ] + }, + "628a6678ccaab13006640e49": { + "mod_stock": [ + "5b0800175acfc400153aebd4", + "57ade1442459771557167e15", + "591af10186f774139d495f0e", + "602e3f1254072b51b239f713", + "591aef7986f774139d495f03" + ] + }, + "633ec6ee025b096d320a3b15": { + "camora_000": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6eeae921500134b2799" + ], + "camora_001": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6eeae921500134b2799" + ], + "camora_002": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6eeae921500134b2799" + ], + "camora_003": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6eeae921500134b2799" + ], + "camora_004": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6eeae921500134b2799" + ] + }, + "633ec7c2a6918cb895019c6c": { + "mod_magazine": [ + "633ec6ee025b096d320a3b15" + ], + "mod_pistol_grip": [ + "633ec8e4025b096d320a3b1e" + ], + "mod_scope": [ + "57c69dd424597774c03b7bbc" + ], + "mod_tactical": [ + "5d2369418abbc306c62e0c80" + ] + }, + "634eff66517ccc8a960fc735": { + "mod_mount_000": [ + "634f05a21f9f536910079b56" + ] + }, + "634f036a517ccc8a960fc746": { + "mod_mount_000": [ + "653ece125a1690d9d90491e8" + ] + }, + "634f05a21f9f536910079b56": { + "mod_gas_block": [ + "634f036a517ccc8a960fc746" + ], + "mod_sight_rear": [ + "574db213245977459a2f3f5d" + ] + }, + "6374a822e629013b9c0645c8": { + "mod_sight_rear": [ + "63c6adcfb4ba094317063742" + ] + }, + "63d114019e35b334d82302f7": { + "mod_scope": [ + "57c69dd424597774c03b7bbc" + ] + }, + "6410758c857473525b08bb77": { + "mod_muzzle": [ + "64119d1f2c6d6f921a0929f8" + ], + "mod_sight_rear": [ + "64119d90dcf48d656f0aa275" + ] + }, + "64119d1f2c6d6f921a0929f8": { + "mod_sight_front": [ + "64119d672c6d6f921a0929fb" + ] + }, + "641dc35e19604f20c800be18": { + "mod_scope": [ + "5b3f7c1c5acfc40dc5296b1d" + ] + }, + "643ea5b23db6f9f57107d9fd": { + "mod_barrel": [ + "6410758c857473525b08bb77" + ], + "mod_magazine": [ + "6422e1ea3c0f06190302161a" + ], + "mod_reciever": [ + "64119cdbdcf48d656f0aa272" + ], + "mod_scope": [ + "641dc35e19604f20c800be18" + ], + "mod_stock": [ + "6410745d5dd49d77bd078485" + ] + }, + "64be79c487d1510151095552": { + "Soft_armor_back": [ + "657049d23425b19bbc0502f0" + ], + "Soft_armor_front": [ + "6570495b45d573133d0d6adb" + ] + }, + "64be79e2bf8412471d0d9bcc": { + "Soft_armor_back": [ + "657049d23425b19bbc0502f0" + ], + "Soft_armor_front": [ + "6570495b45d573133d0d6adb" + ] + }, + "6516b129609aaf354b34b3a8": { + "mod_pistolgrip": [ + "5cf54404d7f00c108840b2ef" + ] + } + } + }, + "lastName": [], + "skills": { + "Common": { + "BotReload": { + "max": 1000, + "min": 1000 + }, + "BotSound": { + "max": 1000, + "min": 1000 } } } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/bossbully.json b/Libraries/SptAssets/Assets/database/bots/types/bossbully.json index f8b5c80e..7d3d03ad 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bossbully.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bossbully.json @@ -16,2787 +16,2030 @@ "BossBully": 1 } }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 0, + "Backpack": 0, + "Earpiece": 0, + "Eyewear": 36, + "FaceCover": 0, + "FirstPrimaryWeapon": 100, + "Headwear": 5, + "Holster": 100, + "Pockets": 100, + "Scabbard": 0, + "SecondPrimaryWeapon": 0, + "SecuredContainer": 100, + "TacticalVest": 0 + }, + "equipmentMods": {}, + "weaponMods": { + "mod_charge": 59, + "mod_foregrip": 82, + "mod_launcher": 0, + "mod_magazine": 100, + "mod_mount": 0, + "mod_mount_000": 27, + "mod_mount_001": 0, + "mod_mount_002": 0, + "mod_mount_003": 100, + "mod_muzzle": 45, + "mod_reciever": 100, + "mod_scope": 54, + "mod_sight_front": 75, + "mod_sight_rear": 30, + "mod_stock": 100, + "mod_stock_000": 100, + "mod_tactical": 0, + "mod_tactical_000": 0, + "mod_tactical_001": 54, + "mod_tactical_002": 0, + "mod_tactical_003": 74 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 4, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BETTER_PRECICING_COEF": 0.95, + "BOTTOM_COEF": 0.08, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.2, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 6, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.8, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": 0.2, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "ALLOW_REQUEST_SELF": false, + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 100, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 4 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.02, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 137, + "WaitInCoverBetweenShotsSec": 1 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": true, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 2, + "HITS_TO_LEAVE_COVER_UNKNOWN": 2, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 20, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": true, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 1, + "SHOOT_NEAR_TO_LEAVE": 3, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 95, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.05, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.98, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 43, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 40, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 95, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 160, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 30, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 30, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": true, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 55, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 55.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "USE_PATROL_POINT_ACTION_MOVE_BY_RESERVE_WAY": false, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 96, + "CHANCE_TO_CHANGE_WEAPON": 80, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 30, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 6, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 4, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BETTER_PRECICING_COEF": 0.95, + "BOTTOM_COEF": 0.08, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.2, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 6, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.8, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": 0.2, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "ALLOW_REQUEST_SELF": false, + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 100, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 4 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.02, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 137, + "WaitInCoverBetweenShotsSec": 1 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": true, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 2, + "HITS_TO_LEAVE_COVER_UNKNOWN": 2, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 20, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": true, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 1, + "SHOOT_NEAR_TO_LEAVE": 3, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 95, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.05, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.98, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 43, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 40, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 95, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 160, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 30, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 30, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": true, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 55, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 55.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "USE_PATROL_POINT_ACTION_MOVE_BY_RESERVE_WAY": false, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 96, + "CHANCE_TO_CHANGE_WEAPON": 80, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 30, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 6, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 4, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BETTER_PRECICING_COEF": 0.95, + "BOTTOM_COEF": 0.08, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.2, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 6, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.8, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": 0.2, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "ALLOW_REQUEST_SELF": false, + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 100, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 4 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.02, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 137, + "WaitInCoverBetweenShotsSec": 1 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": true, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 2, + "HITS_TO_LEAVE_COVER_UNKNOWN": 2, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 20, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": true, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 1, + "SHOOT_NEAR_TO_LEAVE": 3, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 95, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.05, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.98, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 43, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 40, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 95, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 160, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 30, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 30, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": true, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 55, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 55.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "USE_PATROL_POINT_ACTION_MOVE_BY_RESERVE_WAY": false, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 96, + "CHANCE_TO_CHANGE_WEAPON": 80, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 30, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 6, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 4, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BETTER_PRECICING_COEF": 0.95, + "BOTTOM_COEF": 0.08, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.2, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 6, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.8, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": 0.2, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "ALLOW_REQUEST_SELF": false, + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 100, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 4 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.02, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 137, + "WaitInCoverBetweenShotsSec": 1 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": true, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 2, + "HITS_TO_LEAVE_COVER_UNKNOWN": 2, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 20, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": true, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 1, + "SHOOT_NEAR_TO_LEAVE": 3, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 95, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.05, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.98, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 43, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 40, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 95, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 160, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 30, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 30, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": true, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 55, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 55.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "USE_PATROL_POINT_ACTION_MOVE_BY_RESERVE_WAY": false, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 96, + "CHANCE_TO_CHANGE_WEAPON": 80, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 30, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 6, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4 + } + } + }, "experience": { + "aggressorBonus": { + "normal": 0.05 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": 2500, - "max": 2500 + "max": 2500, + "min": 2500 } }, "standingForKill": { "normal": -0.2 }, - "aggressorBonus": { - "normal": 0.05 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 62, - "max": 62 - }, - "Chest": { - "min": 145, - "max": 145 - }, - "Stomach": { - "min": 125, - "max": 125 - }, - "LeftArm": { - "min": 100, - "max": 100 - }, - "RightArm": { - "min": 100, - "max": 100 - }, - "LeftLeg": { - "min": 110, - "max": 110 - }, - "RightLeg": { - "min": 110, - "max": 110 - } - } - ] - }, - "skills": { - "Common": {} - }, - "inventory": { - "equipment": { - "Headwear": { - "61c18db6dfd64163ea78fbb4": 327, - "5aa2b9ede5b5b000137b758b": 311, - "60bf74184a63fc79b60c57f6": 321 - }, - "Earpiece": {}, - "FaceCover": {}, - "ArmorVest": {}, - "Eyewear": { - "5aa2b986e5b5b00014028f4c": 6155, - "5aa2b9aee5b5b00015693121": 5964, - "5d6d2ef3a4b93618084f58bd": 6005, - "61c18d83b00456371a66814b": 6026 - }, - "ArmBand": {}, - "TacticalVest": {}, - "Backpack": {}, - "FirstPrimaryWeapon": { - "5ac66cb05acfc40198510a10": 16040, - "5ac66d015acfc400180ae6e4": 16210, - "576165642459773c7a400233": 7129, - "5dcbd56fdbd3d91b3e5468d5": 4243, - "668e71a8dadf42204c032ce1": 15920, - "5926bb2186f7744b1c6c6e60": 6093 - }, - "SecondPrimaryWeapon": {}, - "Holster": { - "602a9740da11d6478d5a06dc": 6464, - "5b3b713c5acfc4330140bd8d": 52810, - "6193a720f8ee7e52e42109ed": 6369 - }, - "Scabbard": {}, - "Pockets": { - "5af99e9186f7747c447120b8": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - } - }, - "Ammo": { - "Caliber556x45NATO": { - "59e6906286f7746c9f75e847": 6190, - "5c0d5ae286f7741e46554302": 463, - "59e690b686f7746c9f75e848": 319, - "59e6920f86f77411d82aa167": 451 - }, - "Caliber9x19PARA": { - "5c0d56a986f774449d5de529": 1770, - "5c925fa22e221601da359b7b": 2790, - "64b7bbb74b75259c590fa897": 1860, - "5efb0da7a29a85116f6ea05f": 541, - "5a3c16fe86f77452b62de32a": 416, - "5c3df7d588a4501f290594e5": 1640 - }, - "Caliber762x25TT": { - "5736026a245977644601dc61": 1 - }, - "Caliber12g": { - "5d6e68c4a4b9361b93413f79": 2790, - "5d6e68a8a4b9360b6c0d54e2": 409 - }, - "Caliber1143x23ACP": { - "5efb0cabfb3e451d70735af5": 111, - "5e81f423763d9f754677bf2e": 1690 - }, - "Caliber762x51": { - "5a608bf24f39f98ffc77720e": 3010, - "5e023e88277cce2b522ff2b1": 3540, - "5a6086ea4f39f99cd479502f": 1360, - "5e023e53d4353e3302577c4c": 605, - "6768c25aa7b238f14a08d3f6": 104 - } - }, - "mods": { - "5ac66cb05acfc40198510a10": { - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_muzzle": [ - "5943ee5a86f77413872d25ec", - "5a9fbb84a2750c00137fa685" - ], - "mod_pistol_grip": [ - "5649ae4a4bdc2d1b2b8b4588" - ], - "mod_stock": [ - "5ac78eaf5acfc4001926317a", - "6761779c48fa5c377e06fc3f" - ], - "mod_reciever": [ - "5d2c76ed48f03532f2136169" - ], - "mod_magazine": [ - "5ac66c5d5acfc4001718d314", - "6764139c44b3c96e7b0e2f7b" - ] - }, - "59c6633186f7740cf0493bb9": { - "mod_handguard": [ - "57cffd8224597763b03fc609" - ] - }, - "57cffd8224597763b03fc609": { - "mod_mount_003": [ - "57cffcd624597763133760c5" - ] - }, - "5ac78eaf5acfc4001926317a": { - "mod_stock": [ - "59ecc3dd86f7746dc827481c" - ] - }, - "5d2c76ed48f03532f2136169": { - "mod_scope": [ - "591c4efa86f7741030027726", - "57ae0171245977343c27bfcf" - ] - }, - "602a9740da11d6478d5a06dc": { - "mod_barrel": [ - "602a95edda11d6478d5a06da" - ], - "mod_reciever": [ - "60228924961b8d75ee233c32" - ], - "mod_magazine": [ - "602286df23506e50807090c6" - ] - }, - "60228924961b8d75ee233c32": { - "mod_sight_rear": [ - "60229948cacb6b0506369e27" - ], - "mod_sight_front": [ - "60228a76d62c9b14ed777a66" - ] - }, - "5ac66d015acfc400180ae6e4": { - "mod_gas_block": [ - "59d64ec286f774171d1e0a42" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4", - "6761779c48fa5c377e06fc3f" - ], - "mod_charge": [ - "5648ac824bdc2ded0b8b457d" - ], - "mod_muzzle": [ - "5a9fbb84a2750c00137fa685", - "5943ee5a86f77413872d25ec" - ], - "mod_reciever": [ - "5d2c76ed48f03532f2136169" - ], - "mod_magazine": [ - "5c0548ae0db834001966a3c2", - "5ac66c5d5acfc4001718d314", - "6764139c44b3c96e7b0e2f7b" - ] - }, - "59d64ec286f774171d1e0a42": { - "mod_handguard": [ - "5648b4534bdc2d3d1c8b4580" - ] - }, - "5648b4534bdc2d3d1c8b4580": { - "mod_foregrip": [ - "558032614bdc2de7118b4585" - ] - }, - "5b3b713c5acfc4330140bd8d": { - "mod_barrel": [ - "5b3baf8f5acfc40dc5296692" - ], - "mod_pistol_grip": [ - "5b3cadf35acfc400194776a0" - ], - "mod_magazine": [ - "571a29dc2459771fb2755a6a" - ] - }, - "576165642459773c7a400233": { - "mod_handguard": [ - "58272b392459774b4c7b3ccd" - ], - "mod_pistol_grip": [ - "5b30ac585acfc433000eb79c" - ], - "mod_muzzle": [ - "59c0ec5b86f77435b128bfca", - "58272d7f2459774f6311ddfd" - ], - "mod_reciever": [ - "57616c112459773cce774d66" - ], - "mod_stock": [ - "57616ca52459773c69055192" - ], - "mod_charge": [ - "5648ac824bdc2ded0b8b457d" - ], - "mod_magazine": [ - "57616a9e2459773c7a400234" - ], - "patron_in_weapon": [ - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2" - ] - }, - "58272b392459774b4c7b3ccd": { - "mod_foregrip": [ - "5cf4fb76d7f00c065703d3ac" - ] - }, - "6193a720f8ee7e52e42109ed": { - "mod_barrel": [ - "6194f02d9bb3d20b0946d2f0" - ], - "mod_reciever": [ - "6194f5a318a3974e5e7421eb" - ], - "mod_trigger": [ - "6193d3cded0429009f543e6a" - ], - "mod_hammer": [ - "6193d3be7c6c7b169525f0da" - ], - "mod_catch": [ - "6193d5d4f8ee7e52e4210a1b" - ], - "mod_mount_000": [ - "619624b26db0f2477964e6b0" - ], - "mod_magazine": [ - "6193d3149fb0c665d5490e32" - ] - }, - "6194f5a318a3974e5e7421eb": { - "mod_sight_rear": [ - "6194f2df645b5d229654ad77" - ], - "mod_sight_front": [ - "6194f3286db0f2477964e67d" - ] - }, - "5dcbd56fdbd3d91b3e5468d5": { - "mod_pistol_grip": [ - "5c48a2c22e221602b313fb6c" - ], - "mod_handguard": [ - "5dcbd6b46ec07c0c4347a564" - ], - "mod_barrel": [ - "5dcbe9431e1f4616d354987e" - ], - "mod_scope": [ - "59f9d81586f7744c7506ee62", - "57c69dd424597774c03b7bbc" - ], - "mod_magazine": [ - "5df8f541c41b2312ea3335e3", - "5a3501acc4a282000d72293a", - "6761770e48fa5c377e06fc3c" - ], - "patron_in_weapon": [ - "5a608bf24f39f98ffc77720e", - "5e023e88277cce2b522ff2b1", - "5a6086ea4f39f99cd479502f", - "5e023e53d4353e3302577c4c", - "6768c25aa7b238f14a08d3f6" - ] - }, - "5dcbe9431e1f4616d354987e": { - "mod_muzzle": [ - "5d1f819086f7744b355c219b" - ] - }, - "668e71a8dadf42204c032ce1": { - "mod_muzzle_000": [ - "668670e3fb75ee4a5e02eb16" - ], - "mod_stock": [ - "669cf78806768ff39504fc1c" - ], - "mod_reciever": [ - "6680326874b8f2050c0b9178" - ], - "mod_barrel": [ - "66867023c3d473265104f384" - ], - "mod_mount_000": [ - "668ea3f68117e4968b0cff4a" - ], - "mod_magazine": [ - "66866f622a2296a8d9099639" - ] - }, - "669cf78806768ff39504fc1c": { - "mod_stock_000": [ - "5fbcc437d724d907e2077d5c" - ] - }, - "6680326874b8f2050c0b9178": { - "mod_scope": [ - "6477772ea8a38bb2050ed4db" - ] - }, - "668ea3f68117e4968b0cff4a": { - "mod_tactical_001": [ - "6272370ee4013c5d7e31f418" - ] - }, - "5926bb2186f7744b1c6c6e60": { - "mod_reciever": [ - "5926c0df86f77462f647f764" - ], - "mod_charge": [ - "5926c32286f774616e42de99" - ], - "mod_magazine": [ - "5926c3b286f774640d189b6b", - "5a351711c4a282000b1521a4" - ], - "patron_in_weapon": [ - "64b7bbb74b75259c590fa897", - "5efb0da7a29a85116f6ea05f", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5c3df7d588a4501f290594e5" - ] - }, - "5926c0df86f77462f647f764": { - "mod_handguard": [ - "5d010d1cd7ad1a59283b1ce7" - ], - "mod_stock": [ - "5926d3c686f77410de68ebc8" - ], - "mod_muzzle": [ - "5c0000c00db834001a6697fc", - "5926e16e86f7742f5a0f7ecb" - ], - "mod_sight_rear": [ - "5926d2be86f774134d668e4e" - ] - }, - "5d010d1cd7ad1a59283b1ce7": { - "mod_tactical_003": [ - "5a7b483fe899ef0016170d15" - ], - "mod_foregrip": [ - "5c791e872e2216001219c40a" - ] - }, - "5c0000c00db834001a6697fc": { - "mod_muzzle": [ - "5a9fb739a2750c003215717f" - ] - }, - "5d1f819086f7744b355c219b": { - "mod_muzzle": [ - "5cff9e84d7ad1a049e54ed55" - ] - }, - "57c69dd424597774c03b7bbc": { - "mod_scope": [ - "57c5ac0824597754771e88a9" - ] - } - }, - "items": { - "TacticalVest": {}, - "Pockets": { - "5ac66c5d5acfc4001718d314": 10000, - "602286df23506e50807090c6": 10000, - "590c678286f77426c9660122": 10000, - "5710c24ad2720bc3458b45a3": 10000, - "5c0548ae0db834001966a3c2": 6100, - "571a29dc2459771fb2755a6a": 10000, - "675aaab74bca0b001d02f356": 10000, - "5df8a6a186f77412640e2e80": 2868, - "57616a9e2459773c7a400234": 10000, - "6193d3149fb0c665d5490e32": 10000, - "5df8f541c41b2312ea3335e3": 4174, - "66866f622a2296a8d9099639": 10000, - "5926c3b286f774640d189b6b": 10000, - "5ad7217186f7746744498875": 27, - "5c94bbff86f7747ee735c08f": 430, - "5a3501acc4a282000d72293a": 4112, - "59faff1d86f7746c51718c9c": 1608, - "591382d986f774465a6413a7": 38, - "593aa4be86f77457f56379f8": 247, - "62987da96188c076bc0d8c51": 18, - "591ae8f986f77406f854be45": 20, - "5938994586f774523a425196": 83, - "5780cf942459777df90dcb72": 256, - "64ccc268c41e91416064ebc7": 29, - "64ccc1d4a0f13c24561edf27": 23, - "5ad5d20586f77449be26d877": 96, - "5a0f068686f7745b0d4ea242": 18, - "64ccc1ec1779ad6ba200a137": 25, - "5914578086f774123569ffa4": 66, - "5a0f045e86f7745b0f0d0e42": 19, - "5d8e15b686f774445103b190": 21, - "6761770e48fa5c377e06fc3c": 200, - "63a39c69af870e651d58e6aa": 16, - "5c1e2a1e86f77431ea0ea84c": 18, - "5a351711c4a282000b1521a4": 2082, - "59136e1e86f774432f15d133": 35, - "5913611c86f77479e0084092": 126, - "675ea3d6312c0a5c4e04e317": 397, - "61aa81fcb225ac1ead7957c3": 24, - "6581998038c79576a2569e11": 176, - "63a39fc0af870e651d58e6ae": 10, - "5a0f08bc86f77478f33b84c2": 28, - "6582dbe43a2e5248357dbe9a": 174, - "61a64428a8c6aa1b795f0ba1": 25, - "5a0eee1486f77402aa773226": 23, - "64ccc246ff54fb38131acf29": 27, - "59136f6f86f774447a1ed173": 13, - "5eff09cd30a7dc22fd1ddfed": 41, - "658199972dc4e60f6d556a2f": 218, - "5a0f006986f7741ffd2fe484": 28, - "5938603e86f77435642354f4": 330, - "5a0ee4b586f7743698200d22": 7, - "5937ee6486f77408994ba448": 176, - "591afe0186f77431bd616a11": 154, - "6582dc4b6ba9e979af6b79f4": 82, - "5d8e0e0e86f774321140eb56": 13, - "5a13f46386f7741dd7384b04": 26, - "59136a4486f774447a1ed172": 75, - "5938504186f7740991483f30": 201, - "5d80c88d86f77440556dbf07": 9, - "5a0ee30786f774023b6ee08f": 16, - "61aa5b7db225ac1ead7957c1": 25, - "5780cfa52459777dfb276eb1": 89, - "6761a6f90575f25e020816a4": 100, - "5a0ee34586f774023b6ee092": 24, - "61aa5b518f5e7a39b41416e2": 12, - "59148c8a86f774197930e983": 82, - "591383f186f7744a4c5edcf3": 68, - "5d95d6fa86f77424484aa5e9": 22, - "5d80cb8786f774405611c7d9": 11, - "63a3a93f8a56922e82001f5d": 8, - "5913915886f774123603c392": 30, - "61a64492ba05ef10d62adcc1": 19, - "5d80cb3886f77440556dbf09": 21, - "64ccc2111779ad6ba200a139": 26, - "62987e26a77ec735f90a2995": 49, - "63a39f6e64283b5e9c56b289": 20, - "62987c658081af308d7558c6": 23, - "5ad5d49886f77455f9731921": 172, - "5ad5cfbd86f7742c825d6104": 17, - "5d80cd1a86f77402aa362f42": 12, - "5ad5db3786f7743568421cce": 17, - "5da743f586f7744014504f72": 11, - "5a0f075686f7745bcc42ee12": 23, - "5780d0532459777a5108b9a2": 33, - "5a0eec9686f77402ac5c39f2": 23, - "5a0ee76686f7743698200d5c": 22, - "63a71eb5b7f4570d3a29316b": 23, - "63a71ed21031ac76fe773c7f": 19, - "63a39fd1c9b3aa4b61683efb": 53, - "5a0ea69f86f7741cd5406619": 28, - "62a9cb937377a65d7b070cef": 17, - "63a39ce4cd6db0635c1975fa": 21, - "64ccc206793ca11c8f450a38": 15, - "5913651986f774432f15d132": 18, - "5a0f0f5886f7741c4e32a472": 23, - "61aa5ba8018e9821b7368da9": 18, - "63a39e49cd6db0635c1975fc": 20, - "5d80c6fc86f774403a401e3c": 12, - "64ccc24de61ea448b507d34d": 30, - "64ccc1fe088064307e14a6f7": 22, - "5a0eb38b86f774153b320eb0": 32, - "5ad5ccd186f774446d5706e9": 31, - "5c1e2d1f86f77431e9280bee": 13, - "5d80c66d86f774405611c7d6": 15, - "5a0dc95c86f77452440fc675": 39, - "5913877a86f774432f15d444": 17, - "59387a4986f77401cc236e62": 29, - "5d80c6c586f77440351beef1": 13, - "5780cf692459777de4559321": 23, - "5d80c95986f77440351beef3": 10, - "64ccc1f4ff54fb38131acf27": 21, - "5d8e3ecc86f774414c78d05e": 8, - "63a39667c9b3aa4b61683e98": 27, - "5d80c78786f774403a401e3e": 10, - "5a13ef7e86f7741290491063": 17, - "5a0ec70e86f7742c0b518fba": 26, - "5a0eb6ac86f7743124037a28": 24, - "63a39c7964283b5e9c56b280": 96, - "63a71e781031ac76fe773c7d": 37, - "5ede7b0c6d23e5473e6e8c66": 10, - "5a145d4786f7744cbb6f4a12": 13, - "5780cf9e2459777df90dcb73": 17, - "5a0ee72c86f77436955d3435": 19, - "5d80c62a86f7744036212b3f": 4, - "5672c92d4bdc2d180f8b4567": 19, - "5a0eecf686f7740350630097": 7, - "61aa5aed32a4743c3453d319": 20, - "5a13ef0686f7746e5a411744": 21, - "5a0eff2986f7741fd654e684": 22, - "5a0eed4386f77405112912aa": 15, - "5a0eeb8e86f77461257ed71a": 28, - "63a39df18a56922e82001f25": 41, - "5a0ee62286f774369454a7ac": 13, - "5a13f35286f77413ef1436b0": 10, - "5a1452ee86f7746f33111763": 4, - "5a13ee1986f774794d4c14cd": 17, - "63a39fdf1e21260da44a0256": 35, - "5a0dc45586f7742f6b0b73e3": 21, - "5ad5d7d286f77450166e0a89": 11, - "59148f8286f7741b951ea113": 24, - "5a0ee37f86f774023657a86f": 5, - "5780d07a2459777de4559324": 23, - "62987cb98081af308d7558c8": 22, - "5d80c93086f7744036212b41": 11, - "5780d0652459777df90dcb74": 13, - "61a6444b8c141d68246e2d2f": 25, - "6582dc5740562727a654ebb1": 16, - "63a39dfe3901f439517cafba": 25, - "5a13f24186f77410e57c5626": 10, - "5e42c71586f7747f245e1343": 16, - "5a144dfd86f77445cb5a0982": 8, - "5d80c8f586f77440373c4ed0": 16, - "5d80c60f86f77440373c4ece": 5, - "5a0eebed86f77461230ddb3d": 21, - "5ad7242b86f7740a6a3abd43": 32, - "5a0eeb1a86f774688b70aa5c": 19, - "5da5cdcd86f774529238fb9b": 8, - "5d95d6be86f77424444eb3a7": 26, - "5d80cb5686f77440545d1286": 19, - "5a145ebb86f77458f1796f05": 28, - "63a71e86b7f4570d3a293169": 17, - "5ad5d64486f774079b080af8": 18, - "63a39f08cd6db0635c197600": 38, - "5ad7247386f7747487619dc3": 8, - "5a0ea64786f7741707720468": 20, - "62a09ec84f842e1bd12da3f2": 33, - "5448ba0b4bdc2d02308b456c": 23, - "5a0eedb386f77403506300be": 18, - "5d80ccac86f77470841ff452": 8, - "5938144586f77473c2087145": 17, - "5addaffe86f77470b455f900": 6, - "5d947d3886f774447b415893": 8, - "5780cf722459777a5108b9a1": 21, - "5d80ca9086f774403a401e40": 9, - "63a39cb1c9b3aa4b61683ee2": 14, - "63a399193901f439517cafb6": 10, - "63a39f18c2d53c2c6839c1d3": 11, - "5c1f79a086f7746ed066fb8f": 7, - "5a144bdb86f7741d374bbde0": 14, - "63a71e922b25f7513905ca20": 4, - "5d947d4e86f774447b415895": 16, - "5a145d7b86f7744cbb6f4a13": 7, - "5780cf7f2459777de4559322": 9, - "5d80cbd886f77470855c26c2": 10, - "5d80ccdd86f77474f7575e02": 8, - "5a0ea79b86f7741d4a35298e": 18, - "5780cda02459777b272ede61": 18, - "5d9f1fa686f774726974a992": 7, - "5d80cab086f77440535be201": 14, - "5783c43d2459774bbe137486": 10000, - "62987dfc402c7f69bf010923": 7, - "5ede7a8229445733cb4c18e2": 6, - "5a0ec6d286f7742c0b518fb5": 5, - "6761a6ccd9bbb27ad703c48a": 4, - "5da46e3886f774653b7a83fe": 9, - "5a13eebd86f7746fd639aa93": 6, - "64ccc25f95763a1ae376e447": 2, - "5d8e0db586f7744450412a42": 6 - }, - "Backpack": { - "5c1d0d6d86f7744bb2683e1f": 1, - "5c1d0c5f86f7744bb2683cf0": 1, - "5c1e495a86f7743109743dfb": 1, - "5c1d0dc586f7744baf2e7b79": 1, - "5c1d0efb86f7744baf2e7b7b": 1, - "5c1d0f4986f7744bb01837fa": 1, - "5c94bbff86f7747ee735c08f": 1, - "5e42c83786f7742a021fdf3c": 1, - "5e42c81886f7742a01529f57": 1, - "59136a4486f774447a1ed172": 1, - "5780cf7f2459777de4559322": 1, - "5d80c60f86f77440373c4ece": 1, - "5d80c62a86f7744036212b3f": 1, - "5ede7a8229445733cb4c18e2": 1, - "5da743f586f7744014504f72": 1, - "5d8e15b686f774445103b190": 1, - "5a13f24186f77410e57c5626": 1, - "5448ba0b4bdc2d02308b456c": 1, - "5a1452ee86f7746f33111763": 1, - "5a13f35286f77413ef1436b0": 1, - "5a0eec9686f77402ac5c39f2": 1, - "5a13ef7e86f7741290491063": 1, - "5a0ee30786f774023b6ee08f": 1, - "5a0ee76686f7743698200d5c": 1, - "5913877a86f774432f15d444": 1, - "5780d0652459777df90dcb74": 1, - "5d80c88d86f77440556dbf07": 1, - "5ede7b0c6d23e5473e6e8c66": 1, - "5d8e0e0e86f774321140eb56": 1, - "5d80cb3886f77440556dbf09": 1, - "5d95d6fa86f77424484aa5e9": 1, - "5d80cb5686f77440545d1286": 1, - "5d80c6fc86f774403a401e3c": 1, - "5d9f1fa686f774726974a992": 1, - "5d947d3886f774447b415893": 1, - "5e42c71586f7747f245e1343": 1, - "5ad5d7d286f77450166e0a89": 1, - "5addaffe86f77470b455f900": 1, - "5ad5d64486f774079b080af8": 1, - "591afe0186f77431bd616a11": 1, - "5c1e2d1f86f77431e9280bee": 1, - "5c1f79a086f7746ed066fb8f": 1, - "5c1e2a1e86f77431ea0ea84c": 1, - "5a144bdb86f7741d374bbde0": 1, - "5a0ee4b586f7743698200d22": 1, - "5a145d4786f7744cbb6f4a12": 1, - "5a145d7b86f7744cbb6f4a13": 1, - "5a0eecf686f7740350630097": 1, - "5a0eee1486f77402aa773226": 1 - }, - "SecuredContainer": { - "59e6906286f7746c9f75e847": 100000, - "5c0d56a986f774449d5de529": 53830, - "5c0d5ae286f7741e46554302": 13110, - "5736026a245977644601dc61": 100000, - "5d6e68c4a4b9361b93413f79": 53610, - "5efb0cabfb3e451d70735af5": 3485, - "5a608bf24f39f98ffc77720e": 11510, - "5c925fa22e221601da359b7b": 68960, - "64b7bbb74b75259c590fa897": 47520, - "5e023e88277cce2b522ff2b1": 16000, - "59e690b686f7746c9f75e848": 10930, - "5e81f423763d9f754677bf2e": 51420, - "5efb0da7a29a85116f6ea05f": 15390, - "59e6920f86f77411d82aa167": 13020, - "5d6e68a8a4b9360b6c0d54e2": 7787, - "5a3c16fe86f77452b62de32a": 9024, - "5a6086ea4f39f99cd479502f": 6073, - "5e023e53d4353e3302577c4c": 2751, - "6768c25aa7b238f14a08d3f6": 421, - "5c3df7d588a4501f290594e5": 51000 - }, - "SpecialLoot": {} - } - }, "firstName": [ "Решала" ], - "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.95, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 6, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.2, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.08, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.8, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 4, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": 0.2, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 40, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 95, - "ENEMY_LIGHT_ADD": 43, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 96, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 30, - "LOW_DIST_TO_CHANGE_WEAPON": 6, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": true, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 95, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.05, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 20, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": true, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": true, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 3, - "SHOOT_NEAR_SEC_PERIOD": 1, - "HITS_TO_LEAVE_COVER": 2, - "HITS_TO_LEAVE_COVER_UNKNOWN": 2, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 55.1, - "CHANGE_WAY_TIME": 325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 55, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHECK_MAGAZINE": false, - "USE_PATROL_POINT_ACTION_MOVE_BY_RESERVE_WAY": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.98, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 30, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 160, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 30, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "STANDART_AMBUSH_DIST": 100, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "CAN_TAKE_ITEMS": false, - "TALK_WITH_QUERY": true, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 4, - "CHANCE_USE_RESERVE_PATROL_100": 100, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "ALLOW_REQUEST_SELF": false - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 137, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.02, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 1 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.95, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 6, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.2, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.08, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.8, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 4, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": 0.2, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 40, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 95, - "ENEMY_LIGHT_ADD": 43, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 96, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 30, - "LOW_DIST_TO_CHANGE_WEAPON": 6, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": true, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 95, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.05, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 20, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": true, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": true, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 3, - "SHOOT_NEAR_SEC_PERIOD": 1, - "HITS_TO_LEAVE_COVER": 2, - "HITS_TO_LEAVE_COVER_UNKNOWN": 2, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 55.1, - "CHANGE_WAY_TIME": 325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 55, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHECK_MAGAZINE": false, - "USE_PATROL_POINT_ACTION_MOVE_BY_RESERVE_WAY": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.98, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 30, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 160, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 30, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "STANDART_AMBUSH_DIST": 100, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "CAN_TAKE_ITEMS": false, - "TALK_WITH_QUERY": true, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 4, - "CHANCE_USE_RESERVE_PATROL_100": 100, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "ALLOW_REQUEST_SELF": false - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 137, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.02, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 1 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.95, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 6, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.2, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.08, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.8, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 4, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": 0.2, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 40, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 95, - "ENEMY_LIGHT_ADD": 43, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 96, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 30, - "LOW_DIST_TO_CHANGE_WEAPON": 6, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": true, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 95, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.05, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 20, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": true, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": true, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 3, - "SHOOT_NEAR_SEC_PERIOD": 1, - "HITS_TO_LEAVE_COVER": 2, - "HITS_TO_LEAVE_COVER_UNKNOWN": 2, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 55.1, - "CHANGE_WAY_TIME": 325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 55, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHECK_MAGAZINE": false, - "USE_PATROL_POINT_ACTION_MOVE_BY_RESERVE_WAY": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.98, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 30, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 160, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 30, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "STANDART_AMBUSH_DIST": 100, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "CAN_TAKE_ITEMS": false, - "TALK_WITH_QUERY": true, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 4, - "CHANCE_USE_RESERVE_PATROL_100": 100, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "ALLOW_REQUEST_SELF": false - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 137, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.02, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 1 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.95, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 6, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.2, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.08, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.8, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 4, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": 0.2, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 40, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 95, - "ENEMY_LIGHT_ADD": 43, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 96, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 30, - "LOW_DIST_TO_CHANGE_WEAPON": 6, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": true, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 95, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.05, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 20, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": true, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": true, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 3, - "SHOOT_NEAR_SEC_PERIOD": 1, - "HITS_TO_LEAVE_COVER": 2, - "HITS_TO_LEAVE_COVER_UNKNOWN": 2, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 55.1, - "CHANGE_WAY_TIME": 325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 55, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHECK_MAGAZINE": false, - "USE_PATROL_POINT_ACTION_MOVE_BY_RESERVE_WAY": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.98, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 30, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 160, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 30, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "STANDART_AMBUSH_DIST": 100, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "CAN_TAKE_ITEMS": false, - "TALK_WITH_QUERY": true, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 4, - "CHANCE_USE_RESERVE_PATROL_100": 100, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "ALLOW_REQUEST_SELF": false - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 137, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.02, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 1 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 5, - "Earpiece": 0, - "FaceCover": 0, - "ArmorVest": 0, - "Eyewear": 36, - "ArmBand": 0, - "TacticalVest": 0, - "Backpack": 0, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 0, - "Holster": 100, - "Scabbard": 0, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_launcher": 0, - "mod_muzzle": 45, - "mod_reciever": 100, - "mod_sight_rear": 30, - "mod_stock": 100, - "mod_magazine": 100, - "mod_mount_000": 27, - "mod_charge": 59, - "mod_mount_003": 100, - "mod_scope": 54, - "mod_tactical": 0, - "mod_sight_front": 75, - "mod_foregrip": 82, - "mod_tactical_002": 0, - "mod_mount_001": 0, - "mod_tactical_000": 0, - "mod_tactical_001": 54, - "mod_mount_002": 0, - "mod_stock_000": 100, - "mod_mount": 0, - "mod_tactical_003": 74 - }, - "equipmentMods": {} - }, "generation": { "items": { - "specialItems": { - "weights": { - "0": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "1": 1, - "2": 2 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, "backpackLoot": { "weights": { "0": 1, @@ -2810,6 +2053,65 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 1, + "2": 5, + "3": 2, + "4": 1, + "5": 1 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "1": 1, + "2": 2 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 2 + }, + "whitelist": [] + }, "pocketLoot": { "weights": { "0": 1, @@ -2820,6 +2122,20 @@ }, "whitelist": [] }, + "specialItems": { + "weights": { + "0": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, "vestLoot": { "weights": { "0": 1, @@ -2831,28 +2147,712 @@ "6": 1 }, "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 2 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 1, - "2": 5, - "3": 2, - "4": 1, - "5": 1 - }, - "whitelist": [] } } + }, + "health": { + "BodyParts": [ + { + "Chest": { + "max": 145, + "min": 145 + }, + "Head": { + "max": 62, + "min": 62 + }, + "LeftArm": { + "max": 100, + "min": 100 + }, + "LeftLeg": { + "max": 110, + "min": 110 + }, + "RightArm": { + "max": 100, + "min": 100 + }, + "RightLeg": { + "max": 110, + "min": 110 + }, + "Stomach": { + "max": 125, + "min": 125 + } + } + ], + "Energy": { + "max": 100, + "min": 100 + }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { + "Ammo": { + "Caliber1143x23ACP": { + "5e81f423763d9f754677bf2e": 1690, + "5efb0cabfb3e451d70735af5": 111 + }, + "Caliber12g": { + "5d6e68a8a4b9360b6c0d54e2": 409, + "5d6e68c4a4b9361b93413f79": 2790 + }, + "Caliber556x45NATO": { + "59e6906286f7746c9f75e847": 6190, + "59e690b686f7746c9f75e848": 319, + "59e6920f86f77411d82aa167": 451, + "5c0d5ae286f7741e46554302": 463 + }, + "Caliber762x25TT": { + "5736026a245977644601dc61": 1 + }, + "Caliber762x51": { + "5a6086ea4f39f99cd479502f": 1360, + "5a608bf24f39f98ffc77720e": 3010, + "5e023e53d4353e3302577c4c": 605, + "5e023e88277cce2b522ff2b1": 3540, + "6768c25aa7b238f14a08d3f6": 104 + }, + "Caliber9x19PARA": { + "5a3c16fe86f77452b62de32a": 416, + "5c0d56a986f774449d5de529": 1770, + "5c3df7d588a4501f290594e5": 1640, + "5c925fa22e221601da359b7b": 2790, + "5efb0da7a29a85116f6ea05f": 541, + "64b7bbb74b75259c590fa897": 1860 + } + }, + "equipment": { + "ArmBand": {}, + "ArmorVest": {}, + "Backpack": {}, + "Earpiece": {}, + "Eyewear": { + "5aa2b986e5b5b00014028f4c": 6155, + "5aa2b9aee5b5b00015693121": 5964, + "5d6d2ef3a4b93618084f58bd": 6005, + "61c18d83b00456371a66814b": 6026 + }, + "FaceCover": {}, + "FirstPrimaryWeapon": { + "576165642459773c7a400233": 7129, + "5926bb2186f7744b1c6c6e60": 6093, + "5ac66cb05acfc40198510a10": 16040, + "5ac66d015acfc400180ae6e4": 16210, + "5dcbd56fdbd3d91b3e5468d5": 4243, + "668e71a8dadf42204c032ce1": 15920 + }, + "Headwear": { + "5aa2b9ede5b5b000137b758b": 311, + "60bf74184a63fc79b60c57f6": 321, + "61c18db6dfd64163ea78fbb4": 327 + }, + "Holster": { + "5b3b713c5acfc4330140bd8d": 52810, + "602a9740da11d6478d5a06dc": 6464, + "6193a720f8ee7e52e42109ed": 6369 + }, + "Pockets": { + "5af99e9186f7747c447120b8": 1 + }, + "Scabbard": {}, + "SecondPrimaryWeapon": {}, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": {} + }, + "items": { + "Backpack": { + "5448ba0b4bdc2d02308b456c": 1, + "5780cf7f2459777de4559322": 1, + "5780d0652459777df90dcb74": 1, + "59136a4486f774447a1ed172": 1, + "5913877a86f774432f15d444": 1, + "591afe0186f77431bd616a11": 1, + "5a0ee30786f774023b6ee08f": 1, + "5a0ee4b586f7743698200d22": 1, + "5a0ee76686f7743698200d5c": 1, + "5a0eec9686f77402ac5c39f2": 1, + "5a0eecf686f7740350630097": 1, + "5a0eee1486f77402aa773226": 1, + "5a13ef7e86f7741290491063": 1, + "5a13f24186f77410e57c5626": 1, + "5a13f35286f77413ef1436b0": 1, + "5a144bdb86f7741d374bbde0": 1, + "5a1452ee86f7746f33111763": 1, + "5a145d4786f7744cbb6f4a12": 1, + "5a145d7b86f7744cbb6f4a13": 1, + "5ad5d64486f774079b080af8": 1, + "5ad5d7d286f77450166e0a89": 1, + "5addaffe86f77470b455f900": 1, + "5c1d0c5f86f7744bb2683cf0": 1, + "5c1d0d6d86f7744bb2683e1f": 1, + "5c1d0dc586f7744baf2e7b79": 1, + "5c1d0efb86f7744baf2e7b7b": 1, + "5c1d0f4986f7744bb01837fa": 1, + "5c1e2a1e86f77431ea0ea84c": 1, + "5c1e2d1f86f77431e9280bee": 1, + "5c1e495a86f7743109743dfb": 1, + "5c1f79a086f7746ed066fb8f": 1, + "5c94bbff86f7747ee735c08f": 1, + "5d80c60f86f77440373c4ece": 1, + "5d80c62a86f7744036212b3f": 1, + "5d80c6fc86f774403a401e3c": 1, + "5d80c88d86f77440556dbf07": 1, + "5d80cb3886f77440556dbf09": 1, + "5d80cb5686f77440545d1286": 1, + "5d8e0e0e86f774321140eb56": 1, + "5d8e15b686f774445103b190": 1, + "5d947d3886f774447b415893": 1, + "5d95d6fa86f77424484aa5e9": 1, + "5d9f1fa686f774726974a992": 1, + "5da743f586f7744014504f72": 1, + "5e42c71586f7747f245e1343": 1, + "5e42c81886f7742a01529f57": 1, + "5e42c83786f7742a021fdf3c": 1, + "5ede7a8229445733cb4c18e2": 1, + "5ede7b0c6d23e5473e6e8c66": 1 + }, + "Pockets": { + "5448ba0b4bdc2d02308b456c": 23, + "5672c92d4bdc2d180f8b4567": 19, + "5710c24ad2720bc3458b45a3": 10000, + "571a29dc2459771fb2755a6a": 10000, + "57616a9e2459773c7a400234": 10000, + "5780cda02459777b272ede61": 18, + "5780cf692459777de4559321": 23, + "5780cf722459777a5108b9a1": 21, + "5780cf7f2459777de4559322": 9, + "5780cf942459777df90dcb72": 256, + "5780cf9e2459777df90dcb73": 17, + "5780cfa52459777dfb276eb1": 89, + "5780d0532459777a5108b9a2": 33, + "5780d0652459777df90dcb74": 13, + "5780d07a2459777de4559324": 23, + "5783c43d2459774bbe137486": 10000, + "590c678286f77426c9660122": 10000, + "5913611c86f77479e0084092": 126, + "5913651986f774432f15d132": 18, + "59136a4486f774447a1ed172": 75, + "59136e1e86f774432f15d133": 35, + "59136f6f86f774447a1ed173": 13, + "591382d986f774465a6413a7": 38, + "591383f186f7744a4c5edcf3": 68, + "5913877a86f774432f15d444": 17, + "5913915886f774123603c392": 30, + "5914578086f774123569ffa4": 66, + "59148c8a86f774197930e983": 82, + "59148f8286f7741b951ea113": 24, + "591ae8f986f77406f854be45": 20, + "591afe0186f77431bd616a11": 154, + "5926c3b286f774640d189b6b": 10000, + "5937ee6486f77408994ba448": 176, + "5938144586f77473c2087145": 17, + "5938504186f7740991483f30": 201, + "5938603e86f77435642354f4": 330, + "59387a4986f77401cc236e62": 29, + "5938994586f774523a425196": 83, + "593aa4be86f77457f56379f8": 247, + "59faff1d86f7746c51718c9c": 1608, + "5a0dc45586f7742f6b0b73e3": 21, + "5a0dc95c86f77452440fc675": 39, + "5a0ea64786f7741707720468": 20, + "5a0ea69f86f7741cd5406619": 28, + "5a0ea79b86f7741d4a35298e": 18, + "5a0eb38b86f774153b320eb0": 32, + "5a0eb6ac86f7743124037a28": 24, + "5a0ec6d286f7742c0b518fb5": 5, + "5a0ec70e86f7742c0b518fba": 26, + "5a0ee30786f774023b6ee08f": 16, + "5a0ee34586f774023b6ee092": 24, + "5a0ee37f86f774023657a86f": 5, + "5a0ee4b586f7743698200d22": 7, + "5a0ee62286f774369454a7ac": 13, + "5a0ee72c86f77436955d3435": 19, + "5a0ee76686f7743698200d5c": 22, + "5a0eeb1a86f774688b70aa5c": 19, + "5a0eeb8e86f77461257ed71a": 28, + "5a0eebed86f77461230ddb3d": 21, + "5a0eec9686f77402ac5c39f2": 23, + "5a0eecf686f7740350630097": 7, + "5a0eed4386f77405112912aa": 15, + "5a0eedb386f77403506300be": 18, + "5a0eee1486f77402aa773226": 23, + "5a0eff2986f7741fd654e684": 22, + "5a0f006986f7741ffd2fe484": 28, + "5a0f045e86f7745b0f0d0e42": 19, + "5a0f068686f7745b0d4ea242": 18, + "5a0f075686f7745bcc42ee12": 23, + "5a0f08bc86f77478f33b84c2": 28, + "5a0f0f5886f7741c4e32a472": 23, + "5a13ee1986f774794d4c14cd": 17, + "5a13eebd86f7746fd639aa93": 6, + "5a13ef0686f7746e5a411744": 21, + "5a13ef7e86f7741290491063": 17, + "5a13f24186f77410e57c5626": 10, + "5a13f35286f77413ef1436b0": 10, + "5a13f46386f7741dd7384b04": 26, + "5a144bdb86f7741d374bbde0": 14, + "5a144dfd86f77445cb5a0982": 8, + "5a1452ee86f7746f33111763": 4, + "5a145d4786f7744cbb6f4a12": 13, + "5a145d7b86f7744cbb6f4a13": 7, + "5a145ebb86f77458f1796f05": 28, + "5a3501acc4a282000d72293a": 4112, + "5a351711c4a282000b1521a4": 2082, + "5ac66c5d5acfc4001718d314": 10000, + "5ad5ccd186f774446d5706e9": 31, + "5ad5cfbd86f7742c825d6104": 17, + "5ad5d20586f77449be26d877": 96, + "5ad5d49886f77455f9731921": 172, + "5ad5d64486f774079b080af8": 18, + "5ad5d7d286f77450166e0a89": 11, + "5ad5db3786f7743568421cce": 17, + "5ad7217186f7746744498875": 27, + "5ad7242b86f7740a6a3abd43": 32, + "5ad7247386f7747487619dc3": 8, + "5addaffe86f77470b455f900": 6, + "5c0548ae0db834001966a3c2": 6100, + "5c1e2a1e86f77431ea0ea84c": 18, + "5c1e2d1f86f77431e9280bee": 13, + "5c1f79a086f7746ed066fb8f": 7, + "5c94bbff86f7747ee735c08f": 430, + "5d80c60f86f77440373c4ece": 5, + "5d80c62a86f7744036212b3f": 4, + "5d80c66d86f774405611c7d6": 15, + "5d80c6c586f77440351beef1": 13, + "5d80c6fc86f774403a401e3c": 12, + "5d80c78786f774403a401e3e": 10, + "5d80c88d86f77440556dbf07": 9, + "5d80c8f586f77440373c4ed0": 16, + "5d80c93086f7744036212b41": 11, + "5d80c95986f77440351beef3": 10, + "5d80ca9086f774403a401e40": 9, + "5d80cab086f77440535be201": 14, + "5d80cb3886f77440556dbf09": 21, + "5d80cb5686f77440545d1286": 19, + "5d80cb8786f774405611c7d9": 11, + "5d80cbd886f77470855c26c2": 10, + "5d80ccac86f77470841ff452": 8, + "5d80ccdd86f77474f7575e02": 8, + "5d80cd1a86f77402aa362f42": 12, + "5d8e0db586f7744450412a42": 6, + "5d8e0e0e86f774321140eb56": 13, + "5d8e15b686f774445103b190": 21, + "5d8e3ecc86f774414c78d05e": 8, + "5d947d3886f774447b415893": 8, + "5d947d4e86f774447b415895": 16, + "5d95d6be86f77424444eb3a7": 26, + "5d95d6fa86f77424484aa5e9": 22, + "5d9f1fa686f774726974a992": 7, + "5da46e3886f774653b7a83fe": 9, + "5da5cdcd86f774529238fb9b": 8, + "5da743f586f7744014504f72": 11, + "5df8a6a186f77412640e2e80": 2868, + "5df8f541c41b2312ea3335e3": 4174, + "5e42c71586f7747f245e1343": 16, + "5ede7a8229445733cb4c18e2": 6, + "5ede7b0c6d23e5473e6e8c66": 10, + "5eff09cd30a7dc22fd1ddfed": 41, + "602286df23506e50807090c6": 10000, + "6193d3149fb0c665d5490e32": 10000, + "61a64428a8c6aa1b795f0ba1": 25, + "61a6444b8c141d68246e2d2f": 25, + "61a64492ba05ef10d62adcc1": 19, + "61aa5aed32a4743c3453d319": 20, + "61aa5b518f5e7a39b41416e2": 12, + "61aa5b7db225ac1ead7957c1": 25, + "61aa5ba8018e9821b7368da9": 18, + "61aa81fcb225ac1ead7957c3": 24, + "62987c658081af308d7558c6": 23, + "62987cb98081af308d7558c8": 22, + "62987da96188c076bc0d8c51": 18, + "62987dfc402c7f69bf010923": 7, + "62987e26a77ec735f90a2995": 49, + "62a09ec84f842e1bd12da3f2": 33, + "62a9cb937377a65d7b070cef": 17, + "63a39667c9b3aa4b61683e98": 27, + "63a399193901f439517cafb6": 10, + "63a39c69af870e651d58e6aa": 16, + "63a39c7964283b5e9c56b280": 96, + "63a39cb1c9b3aa4b61683ee2": 14, + "63a39ce4cd6db0635c1975fa": 21, + "63a39df18a56922e82001f25": 41, + "63a39dfe3901f439517cafba": 25, + "63a39e49cd6db0635c1975fc": 20, + "63a39f08cd6db0635c197600": 38, + "63a39f18c2d53c2c6839c1d3": 11, + "63a39f6e64283b5e9c56b289": 20, + "63a39fc0af870e651d58e6ae": 10, + "63a39fd1c9b3aa4b61683efb": 53, + "63a39fdf1e21260da44a0256": 35, + "63a3a93f8a56922e82001f5d": 8, + "63a71e781031ac76fe773c7d": 37, + "63a71e86b7f4570d3a293169": 17, + "63a71e922b25f7513905ca20": 4, + "63a71eb5b7f4570d3a29316b": 23, + "63a71ed21031ac76fe773c7f": 19, + "64ccc1d4a0f13c24561edf27": 23, + "64ccc1ec1779ad6ba200a137": 25, + "64ccc1f4ff54fb38131acf27": 21, + "64ccc1fe088064307e14a6f7": 22, + "64ccc206793ca11c8f450a38": 15, + "64ccc2111779ad6ba200a139": 26, + "64ccc246ff54fb38131acf29": 27, + "64ccc24de61ea448b507d34d": 30, + "64ccc25f95763a1ae376e447": 2, + "64ccc268c41e91416064ebc7": 29, + "6581998038c79576a2569e11": 176, + "658199972dc4e60f6d556a2f": 218, + "6582dbe43a2e5248357dbe9a": 174, + "6582dc4b6ba9e979af6b79f4": 82, + "6582dc5740562727a654ebb1": 16, + "66866f622a2296a8d9099639": 10000, + "675aaab74bca0b001d02f356": 10000, + "675ea3d6312c0a5c4e04e317": 397, + "6761770e48fa5c377e06fc3c": 200, + "6761a6ccd9bbb27ad703c48a": 4, + "6761a6f90575f25e020816a4": 100 + }, + "SecuredContainer": { + "5736026a245977644601dc61": 100000, + "59e6906286f7746c9f75e847": 100000, + "59e690b686f7746c9f75e848": 10930, + "59e6920f86f77411d82aa167": 13020, + "5a3c16fe86f77452b62de32a": 9024, + "5a6086ea4f39f99cd479502f": 6073, + "5a608bf24f39f98ffc77720e": 11510, + "5c0d56a986f774449d5de529": 53830, + "5c0d5ae286f7741e46554302": 13110, + "5c3df7d588a4501f290594e5": 51000, + "5c925fa22e221601da359b7b": 68960, + "5d6e68a8a4b9360b6c0d54e2": 7787, + "5d6e68c4a4b9361b93413f79": 53610, + "5e023e53d4353e3302577c4c": 2751, + "5e023e88277cce2b522ff2b1": 16000, + "5e81f423763d9f754677bf2e": 51420, + "5efb0cabfb3e451d70735af5": 3485, + "5efb0da7a29a85116f6ea05f": 15390, + "64b7bbb74b75259c590fa897": 47520, + "6768c25aa7b238f14a08d3f6": 421 + }, + "SpecialLoot": {}, + "TacticalVest": {} + }, + "mods": { + "5648b4534bdc2d3d1c8b4580": { + "mod_foregrip": [ + "558032614bdc2de7118b4585" + ] + }, + "576165642459773c7a400233": { + "mod_charge": [ + "5648ac824bdc2ded0b8b457d" + ], + "mod_handguard": [ + "58272b392459774b4c7b3ccd" + ], + "mod_magazine": [ + "57616a9e2459773c7a400234" + ], + "mod_muzzle": [ + "59c0ec5b86f77435b128bfca", + "58272d7f2459774f6311ddfd" + ], + "mod_pistol_grip": [ + "5b30ac585acfc433000eb79c" + ], + "mod_reciever": [ + "57616c112459773cce774d66" + ], + "mod_stock": [ + "57616ca52459773c69055192" + ], + "patron_in_weapon": [ + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2" + ] + }, + "57c69dd424597774c03b7bbc": { + "mod_scope": [ + "57c5ac0824597754771e88a9" + ] + }, + "57cffd8224597763b03fc609": { + "mod_mount_003": [ + "57cffcd624597763133760c5" + ] + }, + "58272b392459774b4c7b3ccd": { + "mod_foregrip": [ + "5cf4fb76d7f00c065703d3ac" + ] + }, + "5926bb2186f7744b1c6c6e60": { + "mod_charge": [ + "5926c32286f774616e42de99" + ], + "mod_magazine": [ + "5926c3b286f774640d189b6b", + "5a351711c4a282000b1521a4" + ], + "mod_reciever": [ + "5926c0df86f77462f647f764" + ], + "patron_in_weapon": [ + "64b7bbb74b75259c590fa897", + "5efb0da7a29a85116f6ea05f", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5c3df7d588a4501f290594e5" + ] + }, + "5926c0df86f77462f647f764": { + "mod_handguard": [ + "5d010d1cd7ad1a59283b1ce7" + ], + "mod_muzzle": [ + "5c0000c00db834001a6697fc", + "5926e16e86f7742f5a0f7ecb" + ], + "mod_sight_rear": [ + "5926d2be86f774134d668e4e" + ], + "mod_stock": [ + "5926d3c686f77410de68ebc8" + ] + }, + "59c6633186f7740cf0493bb9": { + "mod_handguard": [ + "57cffd8224597763b03fc609" + ] + }, + "59d64ec286f774171d1e0a42": { + "mod_handguard": [ + "5648b4534bdc2d3d1c8b4580" + ] + }, + "5ac66cb05acfc40198510a10": { + "mod_gas_block": [ + "59c6633186f7740cf0493bb9" + ], + "mod_magazine": [ + "5ac66c5d5acfc4001718d314", + "6764139c44b3c96e7b0e2f7b" + ], + "mod_muzzle": [ + "5943ee5a86f77413872d25ec", + "5a9fbb84a2750c00137fa685" + ], + "mod_pistol_grip": [ + "5649ae4a4bdc2d1b2b8b4588" + ], + "mod_reciever": [ + "5d2c76ed48f03532f2136169" + ], + "mod_stock": [ + "5ac78eaf5acfc4001926317a", + "6761779c48fa5c377e06fc3f" + ] + }, + "5ac66d015acfc400180ae6e4": { + "mod_charge": [ + "5648ac824bdc2ded0b8b457d" + ], + "mod_gas_block": [ + "59d64ec286f774171d1e0a42" + ], + "mod_magazine": [ + "5c0548ae0db834001966a3c2", + "5ac66c5d5acfc4001718d314", + "6764139c44b3c96e7b0e2f7b" + ], + "mod_muzzle": [ + "5a9fbb84a2750c00137fa685", + "5943ee5a86f77413872d25ec" + ], + "mod_pistol_grip": [ + "5649ade84bdc2d1b2b8b4587" + ], + "mod_reciever": [ + "5d2c76ed48f03532f2136169" + ], + "mod_stock": [ + "5ac50c185acfc400163398d4", + "6761779c48fa5c377e06fc3f" + ] + }, + "5ac78eaf5acfc4001926317a": { + "mod_stock": [ + "59ecc3dd86f7746dc827481c" + ] + }, + "5b3b713c5acfc4330140bd8d": { + "mod_barrel": [ + "5b3baf8f5acfc40dc5296692" + ], + "mod_magazine": [ + "571a29dc2459771fb2755a6a" + ], + "mod_pistol_grip": [ + "5b3cadf35acfc400194776a0" + ] + }, + "5c0000c00db834001a6697fc": { + "mod_muzzle": [ + "5a9fb739a2750c003215717f" + ] + }, + "5d010d1cd7ad1a59283b1ce7": { + "mod_foregrip": [ + "5c791e872e2216001219c40a" + ], + "mod_tactical_003": [ + "5a7b483fe899ef0016170d15" + ] + }, + "5d1f819086f7744b355c219b": { + "mod_muzzle": [ + "5cff9e84d7ad1a049e54ed55" + ] + }, + "5d2c76ed48f03532f2136169": { + "mod_scope": [ + "591c4efa86f7741030027726", + "57ae0171245977343c27bfcf" + ] + }, + "5dcbd56fdbd3d91b3e5468d5": { + "mod_barrel": [ + "5dcbe9431e1f4616d354987e" + ], + "mod_handguard": [ + "5dcbd6b46ec07c0c4347a564" + ], + "mod_magazine": [ + "5df8f541c41b2312ea3335e3", + "5a3501acc4a282000d72293a", + "6761770e48fa5c377e06fc3c" + ], + "mod_pistol_grip": [ + "5c48a2c22e221602b313fb6c" + ], + "mod_scope": [ + "59f9d81586f7744c7506ee62", + "57c69dd424597774c03b7bbc" + ], + "patron_in_weapon": [ + "5a608bf24f39f98ffc77720e", + "5e023e88277cce2b522ff2b1", + "5a6086ea4f39f99cd479502f", + "5e023e53d4353e3302577c4c", + "6768c25aa7b238f14a08d3f6" + ] + }, + "5dcbe9431e1f4616d354987e": { + "mod_muzzle": [ + "5d1f819086f7744b355c219b" + ] + }, + "60228924961b8d75ee233c32": { + "mod_sight_front": [ + "60228a76d62c9b14ed777a66" + ], + "mod_sight_rear": [ + "60229948cacb6b0506369e27" + ] + }, + "602a9740da11d6478d5a06dc": { + "mod_barrel": [ + "602a95edda11d6478d5a06da" + ], + "mod_magazine": [ + "602286df23506e50807090c6" + ], + "mod_reciever": [ + "60228924961b8d75ee233c32" + ] + }, + "6193a720f8ee7e52e42109ed": { + "mod_barrel": [ + "6194f02d9bb3d20b0946d2f0" + ], + "mod_catch": [ + "6193d5d4f8ee7e52e4210a1b" + ], + "mod_hammer": [ + "6193d3be7c6c7b169525f0da" + ], + "mod_magazine": [ + "6193d3149fb0c665d5490e32" + ], + "mod_mount_000": [ + "619624b26db0f2477964e6b0" + ], + "mod_reciever": [ + "6194f5a318a3974e5e7421eb" + ], + "mod_trigger": [ + "6193d3cded0429009f543e6a" + ] + }, + "6194f5a318a3974e5e7421eb": { + "mod_sight_front": [ + "6194f3286db0f2477964e67d" + ], + "mod_sight_rear": [ + "6194f2df645b5d229654ad77" + ] + }, + "6680326874b8f2050c0b9178": { + "mod_scope": [ + "6477772ea8a38bb2050ed4db" + ] + }, + "668e71a8dadf42204c032ce1": { + "mod_barrel": [ + "66867023c3d473265104f384" + ], + "mod_magazine": [ + "66866f622a2296a8d9099639" + ], + "mod_mount_000": [ + "668ea3f68117e4968b0cff4a" + ], + "mod_muzzle_000": [ + "668670e3fb75ee4a5e02eb16" + ], + "mod_reciever": [ + "6680326874b8f2050c0b9178" + ], + "mod_stock": [ + "669cf78806768ff39504fc1c" + ] + }, + "668ea3f68117e4968b0cff4a": { + "mod_tactical_001": [ + "6272370ee4013c5d7e31f418" + ] + }, + "669cf78806768ff39504fc1c": { + "mod_stock_000": [ + "5fbcc437d724d907e2077d5c" + ] + } + } + }, + "lastName": [], + "skills": { + "Common": {} } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/bossgluhar.json b/Libraries/SptAssets/Assets/database/bots/types/bossgluhar.json index 6886334e..2ed351dd 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bossgluhar.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bossgluhar.json @@ -16,259 +16,2894 @@ "BossGluhar": 1 } }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 0, + "Backpack": 0, + "Earpiece": 0, + "Eyewear": 34, + "FaceCover": 0, + "FirstPrimaryWeapon": 100, + "Headwear": 97, + "Holster": 100, + "Pockets": 100, + "Scabbard": 0, + "SecondPrimaryWeapon": 83, + "SecuredContainer": 100, + "TacticalVest": 100 + }, + "equipmentMods": { + "back_plate": 100, + "front_plate": 100, + "left_side_plate": 0, + "mod_equipment_000": 0, + "mod_equipment_001": 0, + "mod_equipment_002": 0, + "mod_mount": 0, + "mod_nvg": 73, + "right_side_plate": 0 + }, + "weaponMods": { + "mod_charge": 50, + "mod_flashlight": 100, + "mod_foregrip": 68, + "mod_handguard": 100, + "mod_magazine": 100, + "mod_mount": 0, + "mod_mount_000": 20, + "mod_mount_001": 0, + "mod_mount_004": 0, + "mod_muzzle": 70, + "mod_reciever": 100, + "mod_scope": 76, + "mod_sight_front": 100, + "mod_sight_rear": 58, + "mod_stock": 60, + "mod_stock_000": 100, + "mod_tactical": 66, + "mod_tactical_000": 0, + "mod_tactical_001": 49, + "mod_tactical_002": 29, + "mod_tactical_003": 0 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "RECLC_Y_DIST": 1.2, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.35, + "XZ_COEF_STATIONARY_GRENADE": 0.2, + "Y_BOTTOM_OFFSET_COEF": 0.002, + "Y_TOP_OFFSET_COEF": 0.002 + }, + "Boss": { + "ALLOW_REQUEST_SELF": false, + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "EFFECT_PAINKILLER": true, + "GLUHAR_ASSAULT_ATTACK_DIST": 45, + "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWERS_ASSAULT": 2, + "GLUHAR_FOLLOWERS_SCOUT": 2, + "GLUHAR_FOLLOWERS_SECURITY": 3, + "GLUHAR_FOLLOWERS_SNIPE": 0, + "GLUHAR_FOLLOWERS_TO_REINFORSMENTS": -1, + "GLUHAR_FOLLOWER_PATH_NAME": "Boss", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_REINFORSMENTS_BY_EVENT": false, + "GLUHAR_REINFORSMENTS_BY_EXIT": false, + "GLUHAR_REINFORSMENTS_BY_PLAYER_COME_TO_ZONE": false, + "GLUHAR_SEC_TO_REINFORSMENTS": -1, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "KOJANIY_SAFE_ENEMIES": 1, + "KOJANIY_START_NEXT_SUPPERS_SHOOTS_SEC": 90, + "KOJANIY_START_SUPPERS_SHOOTS_SEC": 30, + "KOJANIY_TAKE_CARE_ABOULT_ENEMY_DELTA": 2, + "KOJANIY_WANNA_GO_TO_CLOSEST_COVER": 15, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LOOK_OUT_WHEN_HOLDING": true, + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 0, + "MIN_DIST_TO_ENEMY": 9, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 0, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE_SQRT": 0, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": false, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "FLASH_MODIF_IS_NIGHTVISION": 2, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DISPERSION_COEF_GUN": 40.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COEF_REPEATED_SEEN": 5, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "DIST_REPEATED_SEEN": 15, + "DIST_SQRT_REPEATED_SEEN": 225, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": false, + "LOOK_THROUGH_GRASS_DIST_METERS": 0, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DIST_CLAMP_TO_SEEN_SPEED": 100, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "NIGHT_VISION_DIST": 105, + "NIGHT_VISION_OFF": 110, + "NIGHT_VISION_ON": 100, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SEC_REPEATED_SEEN": 10, + "VISIBLE_ANG_LIGHT": 60, + "VISIBLE_ANG_NIGHTVISION": 120, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_EXECUTE_REQUESTS": true, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 20, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 9325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 45.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "RECLC_Y_DIST": 1.2, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.35, + "XZ_COEF_STATIONARY_GRENADE": 0.2, + "Y_BOTTOM_OFFSET_COEF": 0.002, + "Y_TOP_OFFSET_COEF": 0.002 + }, + "Boss": { + "ALLOW_REQUEST_SELF": false, + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "EFFECT_PAINKILLER": true, + "GLUHAR_ASSAULT_ATTACK_DIST": 45, + "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWERS_ASSAULT": 2, + "GLUHAR_FOLLOWERS_SCOUT": 2, + "GLUHAR_FOLLOWERS_SECURITY": 3, + "GLUHAR_FOLLOWERS_SNIPE": 0, + "GLUHAR_FOLLOWERS_TO_REINFORSMENTS": -1, + "GLUHAR_FOLLOWER_PATH_NAME": "Boss", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_REINFORSMENTS_BY_EVENT": false, + "GLUHAR_REINFORSMENTS_BY_EXIT": false, + "GLUHAR_REINFORSMENTS_BY_PLAYER_COME_TO_ZONE": false, + "GLUHAR_SEC_TO_REINFORSMENTS": -1, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "KOJANIY_SAFE_ENEMIES": 1, + "KOJANIY_START_NEXT_SUPPERS_SHOOTS_SEC": 90, + "KOJANIY_START_SUPPERS_SHOOTS_SEC": 30, + "KOJANIY_TAKE_CARE_ABOULT_ENEMY_DELTA": 2, + "KOJANIY_WANNA_GO_TO_CLOSEST_COVER": 15, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LOOK_OUT_WHEN_HOLDING": true, + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 0, + "MIN_DIST_TO_ENEMY": 9, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 0, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE_SQRT": 0, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": false, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "FLASH_MODIF_IS_NIGHTVISION": 2, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DISPERSION_COEF_GUN": 40.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COEF_REPEATED_SEEN": 5, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "DIST_REPEATED_SEEN": 15, + "DIST_SQRT_REPEATED_SEEN": 225, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": false, + "LOOK_THROUGH_GRASS_DIST_METERS": 0, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DIST_CLAMP_TO_SEEN_SPEED": 100, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "NIGHT_VISION_DIST": 105, + "NIGHT_VISION_OFF": 110, + "NIGHT_VISION_ON": 100, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SEC_REPEATED_SEEN": 10, + "VISIBLE_ANG_LIGHT": 60, + "VISIBLE_ANG_NIGHTVISION": 120, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_EXECUTE_REQUESTS": true, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 20, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 9325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 45.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "RECLC_Y_DIST": 1.2, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.35, + "XZ_COEF_STATIONARY_GRENADE": 0.2, + "Y_BOTTOM_OFFSET_COEF": 0.002, + "Y_TOP_OFFSET_COEF": 0.002 + }, + "Boss": { + "ALLOW_REQUEST_SELF": false, + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "EFFECT_PAINKILLER": true, + "GLUHAR_ASSAULT_ATTACK_DIST": 45, + "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWERS_ASSAULT": 2, + "GLUHAR_FOLLOWERS_SCOUT": 2, + "GLUHAR_FOLLOWERS_SECURITY": 3, + "GLUHAR_FOLLOWERS_SNIPE": 0, + "GLUHAR_FOLLOWERS_TO_REINFORSMENTS": -1, + "GLUHAR_FOLLOWER_PATH_NAME": "Boss", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_REINFORSMENTS_BY_EVENT": false, + "GLUHAR_REINFORSMENTS_BY_EXIT": false, + "GLUHAR_REINFORSMENTS_BY_PLAYER_COME_TO_ZONE": false, + "GLUHAR_SEC_TO_REINFORSMENTS": -1, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "KOJANIY_SAFE_ENEMIES": 1, + "KOJANIY_START_NEXT_SUPPERS_SHOOTS_SEC": 90, + "KOJANIY_START_SUPPERS_SHOOTS_SEC": 30, + "KOJANIY_TAKE_CARE_ABOULT_ENEMY_DELTA": 2, + "KOJANIY_WANNA_GO_TO_CLOSEST_COVER": 15, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LOOK_OUT_WHEN_HOLDING": true, + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 0, + "MIN_DIST_TO_ENEMY": 9, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 0, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE_SQRT": 0, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": false, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "FLASH_MODIF_IS_NIGHTVISION": 2, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DISPERSION_COEF_GUN": 40.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COEF_REPEATED_SEEN": 5, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "DIST_REPEATED_SEEN": 15, + "DIST_SQRT_REPEATED_SEEN": 225, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": false, + "LOOK_THROUGH_GRASS_DIST_METERS": 0, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DIST_CLAMP_TO_SEEN_SPEED": 100, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "NIGHT_VISION_DIST": 105, + "NIGHT_VISION_OFF": 110, + "NIGHT_VISION_ON": 100, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SEC_REPEATED_SEEN": 10, + "VISIBLE_ANG_LIGHT": 60, + "VISIBLE_ANG_NIGHTVISION": 120, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_EXECUTE_REQUESTS": true, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 20, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 9325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 45.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "RECLC_Y_DIST": 1.2, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.35, + "XZ_COEF_STATIONARY_GRENADE": 0.2, + "Y_BOTTOM_OFFSET_COEF": 0.002, + "Y_TOP_OFFSET_COEF": 0.002 + }, + "Boss": { + "ALLOW_REQUEST_SELF": false, + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "EFFECT_PAINKILLER": true, + "GLUHAR_ASSAULT_ATTACK_DIST": 45, + "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWERS_ASSAULT": 2, + "GLUHAR_FOLLOWERS_SCOUT": 2, + "GLUHAR_FOLLOWERS_SECURITY": 3, + "GLUHAR_FOLLOWERS_SNIPE": 0, + "GLUHAR_FOLLOWERS_TO_REINFORSMENTS": -1, + "GLUHAR_FOLLOWER_PATH_NAME": "Boss", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_REINFORSMENTS_BY_EVENT": false, + "GLUHAR_REINFORSMENTS_BY_EXIT": false, + "GLUHAR_REINFORSMENTS_BY_PLAYER_COME_TO_ZONE": false, + "GLUHAR_SEC_TO_REINFORSMENTS": -1, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "KOJANIY_SAFE_ENEMIES": 1, + "KOJANIY_START_NEXT_SUPPERS_SHOOTS_SEC": 90, + "KOJANIY_START_SUPPERS_SHOOTS_SEC": 30, + "KOJANIY_TAKE_CARE_ABOULT_ENEMY_DELTA": 2, + "KOJANIY_WANNA_GO_TO_CLOSEST_COVER": 15, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LOOK_OUT_WHEN_HOLDING": true, + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 0, + "MIN_DIST_TO_ENEMY": 9, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 0, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE_SQRT": 0, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": false, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "FLASH_MODIF_IS_NIGHTVISION": 2, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DISPERSION_COEF_GUN": 40.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COEF_REPEATED_SEEN": 5, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "DIST_REPEATED_SEEN": 15, + "DIST_SQRT_REPEATED_SEEN": 225, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": false, + "LOOK_THROUGH_GRASS_DIST_METERS": 0, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DIST_CLAMP_TO_SEEN_SPEED": 100, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "NIGHT_VISION_DIST": 105, + "NIGHT_VISION_OFF": 110, + "NIGHT_VISION_ON": 100, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SEC_REPEATED_SEEN": 10, + "VISIBLE_ANG_LIGHT": 60, + "VISIBLE_ANG_NIGHTVISION": 120, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_EXECUTE_REQUESTS": true, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_ENEMY_BEAR": true, + "DEFAULT_ENEMY_USEC": true, + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 20, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 9325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 45.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + } + }, "experience": { + "aggressorBonus": { + "normal": 0.05 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": 2650, - "max": 2650 + "max": 2650, + "min": 2650 } }, "standingForKill": { "normal": -0.2 }, - "aggressorBonus": { - "normal": 0.05 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 70, - "max": 70 + "firstName": [ + "Глухарь" + ], + "generation": { + "items": { + "backpackLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 4, + "3": 5, + "4": 2, + "5": 1, + "6": 1, + "7": 1 }, - "Chest": { - "min": 220, - "max": 220 - }, - "Stomach": { - "min": 140, - "max": 140 - }, - "LeftArm": { - "min": 145, - "max": 145 - }, - "RightArm": { - "min": 145, - "max": 145 - }, - "LeftLeg": { - "min": 145, - "max": 145 - }, - "RightLeg": { - "min": 145, - "max": 145 - } - } - ] - }, - "skills": { - "Common": { - "Charisma": { - "min": 5100, - "max": 5100 + "whitelist": [] }, - "Endurance": { - "min": 5100, - "max": 5100 + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] }, - "Strength": { - "min": 5100, - "max": 5100 + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 3, + "3": 3, + "4": 1, + "5": 1 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "0": 2, + "1": 1, + "2": 1 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 5, + "3": 6, + "4": 4 + }, + "whitelist": [] + }, + "pocketLoot": { + "weights": { + "0": 1, + "1": 7, + "2": 4, + "3": 1, + "4": 1 + }, + "whitelist": [] + }, + "specialItems": { + "weights": { + "0": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 5, + "1": 1 + }, + "whitelist": [] + }, + "vestLoot": { + "weights": { + "0": 1, + "1": 3, + "2": 4, + "3": 1, + "4": 1 + }, + "whitelist": [] } } }, - "inventory": { - "equipment": { - "Headwear": { - "5ea17ca01412a1425304d1c0": 11710, - "5a16bb52fcdbcb001a3b00dc": 11660, - "5b432d215acfc4771e1c6624": 11550, - "5f60b34a41e30a4ab12a6947": 8822, - "5c066ef40db834001966a595": 11540, - "61bca7cda0eae612383adf57": 8981 - }, - "Earpiece": {}, - "FaceCover": {}, - "ArmorVest": {}, - "Eyewear": { - "5d6d2ef3a4b93618084f58bd": 3356, - "5c1a1cc52e221602b3136e3d": 3289, - "5aa2b986e5b5b00014028f4c": 3248, - "603409c80ca681766b6a0fb2": 3239, - "5d6d2e22a4b9361bd5780d05": 3258, - "5d5fca1ea4b93635fd598c07": 3338, - "61c18d83b00456371a66814b": 3213 - }, - "ArmBand": {}, - "TacticalVest": { - "5ab8dced86f774646209ec87": 6349, - "544a5caa4bdc2d1a388b4568": 9356, - "61bc85697113f767765c7fe7": 6399, - "6040dd4ddcf9592f401632d2": 4732, - "5c0e722886f7740458316a57": 6489, - "5c0e746986f7741453628fe5": 9525, - "5f5f41f56760b4138443b352": 4704, - "5d5d87f786f77427997cfaef": 3145, - "61bcc89aef0f505f0c6cd0fc": 6429, - "5d5d85c586f774279a21cbdb": 4647, - "5b44cad286f77402a54ae7e5": 3873 - }, - "Backpack": {}, - "FirstPrimaryWeapon": { - "5aafa857e5b5b00018480968": 815, - "5cadfbf7ae92152ac412eeef": 826 - }, - "SecondPrimaryWeapon": { - "651450ce0e00edc794068371": 2737, - "59984ab886f7743e98271174": 2770 - }, - "Holster": { - "5e81c3cbac2bb513793cdc75": 15040, - "5a17f98cfcdbcb0980087290": 15340, - "6193a720f8ee7e52e42109ed": 11370, - "602a9740da11d6478d5a06dc": 9181, - "5abccb7dd8ce87001773e277": 9218, - "668fe5a998b5ad715703ddd6": 4391, - "5f36a0e5fbf956000b716b65": 1090 - }, - "Scabbard": {}, - "Pockets": { - "5af99e9186f7747c447120b8": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 + "health": { + "BodyParts": [ + { + "Chest": { + "max": 220, + "min": 220 + }, + "Head": { + "max": 70, + "min": 70 + }, + "LeftArm": { + "max": 145, + "min": 145 + }, + "LeftLeg": { + "max": 145, + "min": 145 + }, + "RightArm": { + "max": 145, + "min": 145 + }, + "RightLeg": { + "max": 145, + "min": 145 + }, + "Stomach": { + "max": 140, + "min": 140 + } } + ], + "Energy": { + "max": 100, + "min": 100 }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { "Ammo": { - "Caliber762x51": { - "58dd3ad986f77403051cba8f": 5640, - "6768c25aa7b238f14a08d3f6": 1530, - "5efb0c1bd79ff02a1f5e68d9": 561, - "5a6086ea4f39f99cd479502f": 5300 - }, - "Caliber9x39": { - "57a0dfb82459774d3078b56c": 1 - }, "Caliber1143x23ACP": { "5e81f423763d9f754677bf2e": 1150, "5efb0cabfb3e451d70735af5": 29 }, - "Caliber9x18PM": { - "573719762459775a626ccbc1": 1 + "Caliber127x33": { + "668fe62ac62660a5d8071446": 1 }, "Caliber127x55": { "5cadf6ddae9215051e1c23b2": 120, "5cadf6eeae921500134b2799": 7 }, + "Caliber762x51": { + "58dd3ad986f77403051cba8f": 5640, + "5a6086ea4f39f99cd479502f": 5300, + "5efb0c1bd79ff02a1f5e68d9": 561, + "6768c25aa7b238f14a08d3f6": 1530 + }, + "Caliber9x18PM": { + "573719762459775a626ccbc1": 1 + }, "Caliber9x19PARA": { "5a3c16fe86f77452b62de32a": 1730, "5c0d56a986f774449d5de529": 555, "5efb0da7a29a85116f6ea05f": 16 }, - "Caliber127x33": { - "668fe62ac62660a5d8071446": 1 + "Caliber9x39": { + "57a0dfb82459774d3078b56c": 1 + } + }, + "equipment": { + "ArmBand": {}, + "ArmorVest": {}, + "Backpack": {}, + "Earpiece": {}, + "Eyewear": { + "5aa2b986e5b5b00014028f4c": 3248, + "5c1a1cc52e221602b3136e3d": 3289, + "5d5fca1ea4b93635fd598c07": 3338, + "5d6d2e22a4b9361bd5780d05": 3258, + "5d6d2ef3a4b93618084f58bd": 3356, + "603409c80ca681766b6a0fb2": 3239, + "61c18d83b00456371a66814b": 3213 + }, + "FaceCover": {}, + "FirstPrimaryWeapon": { + "5aafa857e5b5b00018480968": 815, + "5cadfbf7ae92152ac412eeef": 826 + }, + "Headwear": { + "5a16bb52fcdbcb001a3b00dc": 11660, + "5b432d215acfc4771e1c6624": 11550, + "5c066ef40db834001966a595": 11540, + "5ea17ca01412a1425304d1c0": 11710, + "5f60b34a41e30a4ab12a6947": 8822, + "61bca7cda0eae612383adf57": 8981 + }, + "Holster": { + "5a17f98cfcdbcb0980087290": 15340, + "5abccb7dd8ce87001773e277": 9218, + "5e81c3cbac2bb513793cdc75": 15040, + "5f36a0e5fbf956000b716b65": 1090, + "602a9740da11d6478d5a06dc": 9181, + "6193a720f8ee7e52e42109ed": 11370, + "668fe5a998b5ad715703ddd6": 4391 + }, + "Pockets": { + "5af99e9186f7747c447120b8": 1 + }, + "Scabbard": {}, + "SecondPrimaryWeapon": { + "59984ab886f7743e98271174": 2770, + "651450ce0e00edc794068371": 2737 + }, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": { + "544a5caa4bdc2d1a388b4568": 9356, + "5ab8dced86f774646209ec87": 6349, + "5b44cad286f77402a54ae7e5": 3873, + "5c0e722886f7740458316a57": 6489, + "5c0e746986f7741453628fe5": 9525, + "5d5d85c586f774279a21cbdb": 4647, + "5d5d87f786f77427997cfaef": 3145, + "5f5f41f56760b4138443b352": 4704, + "6040dd4ddcf9592f401632d2": 4732, + "61bc85697113f767765c7fe7": 6399, + "61bcc89aef0f505f0c6cd0fc": 6429 + } + }, + "items": { + "Backpack": { + "5448ba0b4bdc2d02308b456c": 1, + "5780cf7f2459777de4559322": 1, + "5780d0652459777df90dcb74": 1, + "59136a4486f774447a1ed172": 1, + "5913877a86f774432f15d444": 1, + "591afe0186f77431bd616a11": 1, + "5a0ee30786f774023b6ee08f": 1, + "5a0ee4b586f7743698200d22": 1, + "5a0ee76686f7743698200d5c": 1, + "5a0eec9686f77402ac5c39f2": 1, + "5a0eecf686f7740350630097": 1, + "5a0eee1486f77402aa773226": 1, + "5a13ef7e86f7741290491063": 1, + "5a13f24186f77410e57c5626": 1, + "5a13f35286f77413ef1436b0": 1, + "5a144bdb86f7741d374bbde0": 1, + "5a1452ee86f7746f33111763": 1, + "5a145d4786f7744cbb6f4a12": 1, + "5a145d7b86f7744cbb6f4a13": 1, + "5ad5d64486f774079b080af8": 1, + "5ad5d7d286f77450166e0a89": 1, + "5addaffe86f77470b455f900": 1, + "5c1d0c5f86f7744bb2683cf0": 1, + "5c1d0d6d86f7744bb2683e1f": 1, + "5c1d0dc586f7744baf2e7b79": 1, + "5c1d0efb86f7744baf2e7b7b": 1, + "5c1d0f4986f7744bb01837fa": 1, + "5c1e2a1e86f77431ea0ea84c": 1, + "5c1e2d1f86f77431e9280bee": 1, + "5c1e495a86f7743109743dfb": 1, + "5c1f79a086f7746ed066fb8f": 1, + "5c94bbff86f7747ee735c08f": 1, + "5d80c60f86f77440373c4ece": 1, + "5d80c62a86f7744036212b3f": 1, + "5d80c6fc86f774403a401e3c": 1, + "5d80c88d86f77440556dbf07": 1, + "5d80cb3886f77440556dbf09": 1, + "5d80cb5686f77440545d1286": 1, + "5d8e0e0e86f774321140eb56": 1, + "5d8e15b686f774445103b190": 1, + "5d947d3886f774447b415893": 1, + "5d95d6fa86f77424484aa5e9": 1, + "5d9f1fa686f774726974a992": 1, + "5da743f586f7744014504f72": 1, + "5e42c71586f7747f245e1343": 1, + "5e42c81886f7742a01529f57": 1, + "5e42c83786f7742a021fdf3c": 1, + "5ede7a8229445733cb4c18e2": 1, + "5ede7b0c6d23e5473e6e8c66": 1 + }, + "Pockets": { + "5448ba0b4bdc2d02308b456c": 56, + "5672c92d4bdc2d180f8b4567": 41, + "5710c24ad2720bc3458b45a3": 10000, + "5780cda02459777b272ede61": 34, + "5780cf692459777de4559321": 29, + "5780cf722459777a5108b9a1": 42, + "5780cf7f2459777de4559322": 11, + "5780cf942459777df90dcb72": 529, + "5780cf9e2459777df90dcb73": 43, + "5780cfa52459777dfb276eb1": 190, + "5780d0532459777a5108b9a2": 64, + "5780d0652459777df90dcb74": 27, + "5780d07a2459777de4559324": 33, + "590c678286f77426c9660122": 10000, + "5913611c86f77479e0084092": 230, + "5913651986f774432f15d132": 45, + "59136a4486f774447a1ed172": 133, + "59136e1e86f774432f15d133": 102, + "59136f6f86f774447a1ed173": 45, + "591382d986f774465a6413a7": 114, + "591383f186f7744a4c5edcf3": 126, + "5913877a86f774432f15d444": 48, + "5913915886f774123603c392": 75, + "5914578086f774123569ffa4": 143, + "59148c8a86f774197930e983": 186, + "59148f8286f7741b951ea113": 44, + "591ae8f986f77406f854be45": 39, + "591afe0186f77431bd616a11": 331, + "5937ee6486f77408994ba448": 369, + "5938144586f77473c2087145": 50, + "5938504186f7740991483f30": 401, + "5938603e86f77435642354f4": 689, + "59387a4986f77401cc236e62": 47, + "5938994586f774523a425196": 219, + "593aa4be86f77457f56379f8": 458, + "5a0dc45586f7742f6b0b73e3": 44, + "5a0dc95c86f77452440fc675": 61, + "5a0ea64786f7741707720468": 39, + "5a0ea69f86f7741cd5406619": 42, + "5a0ea79b86f7741d4a35298e": 49, + "5a0eb38b86f774153b320eb0": 47, + "5a0eb6ac86f7743124037a28": 39, + "5a0ec6d286f7742c0b518fb5": 13, + "5a0ec70e86f7742c0b518fba": 38, + "5a0ee30786f774023b6ee08f": 48, + "5a0ee34586f774023b6ee092": 44, + "5a0ee37f86f774023657a86f": 16, + "5a0ee4b586f7743698200d22": 19, + "5a0ee62286f774369454a7ac": 44, + "5a0ee72c86f77436955d3435": 46, + "5a0ee76686f7743698200d5c": 38, + "5a0eeb1a86f774688b70aa5c": 40, + "5a0eeb8e86f77461257ed71a": 39, + "5a0eebed86f77461230ddb3d": 38, + "5a0eec9686f77402ac5c39f2": 43, + "5a0eecf686f7740350630097": 13, + "5a0eed4386f77405112912aa": 30, + "5a0eedb386f77403506300be": 58, + "5a0eee1486f77402aa773226": 43, + "5a0eff2986f7741fd654e684": 47, + "5a0f006986f7741ffd2fe484": 42, + "5a0f045e86f7745b0f0d0e42": 41, + "5a0f068686f7745b0d4ea242": 39, + "5a0f075686f7745bcc42ee12": 47, + "5a0f08bc86f77478f33b84c2": 39, + "5a0f0f5886f7741c4e32a472": 46, + "5a13ee1986f774794d4c14cd": 46, + "5a13eebd86f7746fd639aa93": 17, + "5a13ef0686f7746e5a411744": 45, + "5a13ef7e86f7741290491063": 41, + "5a13f24186f77410e57c5626": 17, + "5a13f35286f77413ef1436b0": 28, + "5a13f46386f7741dd7384b04": 47, + "5a144bdb86f7741d374bbde0": 30, + "5a144dfd86f77445cb5a0982": 14, + "5a1452ee86f7746f33111763": 13, + "5a145d4786f7744cbb6f4a12": 11, + "5a145d7b86f7744cbb6f4a13": 27, + "5a145ebb86f77458f1796f05": 31, + "5a17fb03fcdbcbcae668728f": 10000, + "5ad5ccd186f774446d5706e9": 36, + "5ad5cfbd86f7742c825d6104": 44, + "5ad5d20586f77449be26d877": 162, + "5ad5d49886f77455f9731921": 344, + "5ad5d64486f774079b080af8": 45, + "5ad5d7d286f77450166e0a89": 17, + "5ad5db3786f7743568421cce": 51, + "5ad7217186f7746744498875": 56, + "5ad7242b86f7740a6a3abd43": 38, + "5ad7247386f7747487619dc3": 14, + "5addaffe86f77470b455f900": 17, + "5c0e530286f7747fa1419862": 115, + "5c0e531286f7747fa54205c2": 118, + "5c0e531d86f7747fa23f4d42": 311, + "5c0e533786f7747fa23f4d47": 139, + "5c0e534186f7747fa1419867": 124, + "5c10c8fd86f7743d7d706df3": 120, + "5c1d0c5f86f7744bb2683cf0": 45, + "5c1d0d6d86f7744bb2683e1f": 216, + "5c1d0dc586f7744baf2e7b79": 39, + "5c1d0efb86f7744baf2e7b7b": 44, + "5c1d0f4986f7744bb01837fa": 40, + "5c1e2a1e86f77431ea0ea84c": 33, + "5c1e2d1f86f77431e9280bee": 45, + "5c1e495a86f7743109743dfb": 37, + "5c1f79a086f7746ed066fb8f": 8, + "5c94bbff86f7747ee735c08f": 4063, + "5d80c60f86f77440373c4ece": 10, + "5d80c62a86f7744036212b3f": 13, + "5d80c66d86f774405611c7d6": 25, + "5d80c6c586f77440351beef1": 22, + "5d80c6fc86f774403a401e3c": 27, + "5d80c78786f774403a401e3e": 24, + "5d80c88d86f77440556dbf07": 23, + "5d80c8f586f77440373c4ed0": 13, + "5d80c93086f7744036212b41": 16, + "5d80c95986f77440351beef3": 21, + "5d80ca9086f774403a401e40": 18, + "5d80cab086f77440535be201": 21, + "5d80cb3886f77440556dbf09": 50, + "5d80cb5686f77440545d1286": 40, + "5d80cb8786f774405611c7d9": 22, + "5d80cbd886f77470855c26c2": 21, + "5d80ccac86f77470841ff452": 18, + "5d80ccdd86f77474f7575e02": 25, + "5d80cd1a86f77402aa362f42": 28, + "5d8e0db586f7744450412a42": 19, + "5d8e0e0e86f774321140eb56": 25, + "5d8e15b686f774445103b190": 45, + "5d8e3ecc86f774414c78d05e": 17, + "5d947d3886f774447b415893": 25, + "5d947d4e86f774447b415895": 23, + "5d95d6be86f77424444eb3a7": 53, + "5d95d6fa86f77424484aa5e9": 42, + "5d9f1fa686f774726974a992": 24, + "5da46e3886f774653b7a83fe": 15, + "5da5cdcd86f774529238fb9b": 29, + "5da743f586f7744014504f72": 35, + "5df8a77486f77412672a1e3f": 5541, + "5e42c71586f7747f245e1343": 19, + "5e42c81886f7742a01529f57": 96, + "5e42c83786f7742a021fdf3c": 144, + "5e81c4ca763d9f754677befa": 10000, + "5ed515c8d380ab312177c0fa": 102, + "5ed515e03a40a50460332579": 74, + "5ed515ece452db0eb56fc028": 50, + "5ed515f6915ec335206e4152": 71, + "5ed5160a87bb8443d10680b5": 59, + "5ed51652f6c34d2cc26336a1": 59, + "5ed5166ad380ab312177c100": 29, + "5ede7a8229445733cb4c18e2": 7, + "5ede7b0c6d23e5473e6e8c66": 16, + "5eff09cd30a7dc22fd1ddfed": 88, + "5f3e77b26cda304dcc634057": 2180, + "5fca138c2a7b221b2852a5c6": 40, + "5fca13ca637ee0341a484f46": 64, + "602286df23506e50807090c6": 10000, + "6193d3149fb0c665d5490e32": 10000, + "61a64428a8c6aa1b795f0ba1": 46, + "61a6444b8c141d68246e2d2f": 42, + "61a64492ba05ef10d62adcc1": 47, + "61aa5aed32a4743c3453d319": 29, + "61aa5b518f5e7a39b41416e2": 33, + "61aa5b7db225ac1ead7957c1": 55, + "61aa5ba8018e9821b7368da9": 44, + "61aa81fcb225ac1ead7957c3": 43, + "62987c658081af308d7558c6": 35, + "62987cb98081af308d7558c8": 41, + "62987da96188c076bc0d8c51": 45, + "62987dfc402c7f69bf010923": 8, + "62987e26a77ec735f90a2995": 99, + "62a09ec84f842e1bd12da3f2": 83, + "62a9cb937377a65d7b070cef": 39, + "637b60c3b7afa97bfc3d7001": 22, + "637b612fb7afa97bfc3d7005": 56, + "637b6179104668754b72f8f5": 78, + "637b620db7afa97bfc3d7009": 60, + "637b6251104668754b72f8f9": 29, + "63a39667c9b3aa4b61683e98": 40, + "63a399193901f439517cafb6": 15, + "63a39c69af870e651d58e6aa": 52, + "63a39c7964283b5e9c56b280": 212, + "63a39cb1c9b3aa4b61683ee2": 55, + "63a39ce4cd6db0635c1975fa": 54, + "63a39df18a56922e82001f25": 96, + "63a39dfe3901f439517cafba": 37, + "63a39e1d234195315d4020bd": 1, + "63a39e49cd6db0635c1975fc": 37, + "63a39f08cd6db0635c197600": 68, + "63a39f18c2d53c2c6839c1d3": 25, + "63a39f6e64283b5e9c56b289": 36, + "63a39fc0af870e651d58e6ae": 23, + "63a39fd1c9b3aa4b61683efb": 115, + "63a39fdf1e21260da44a0256": 74, + "63a3a93f8a56922e82001f5d": 12, + "63a71e781031ac76fe773c7d": 100, + "63a71e86b7f4570d3a293169": 42, + "63a71e922b25f7513905ca20": 23, + "63a71eb5b7f4570d3a29316b": 33, + "63a71ed21031ac76fe773c7f": 44, + "64ccc1d4a0f13c24561edf27": 38, + "64ccc1ec1779ad6ba200a137": 47, + "64ccc1f4ff54fb38131acf27": 51, + "64ccc1fe088064307e14a6f7": 43, + "64ccc206793ca11c8f450a38": 42, + "64ccc2111779ad6ba200a139": 46, + "64ccc246ff54fb38131acf29": 35, + "64ccc24de61ea448b507d34d": 40, + "64ccc25f95763a1ae376e447": 5, + "64ccc268c41e91416064ebc7": 32, + "64d4b23dc1b37504b41ac2b6": 1, + "6581998038c79576a2569e11": 369, + "658199972dc4e60f6d556a2f": 477, + "6582dbe43a2e5248357dbe9a": 368, + "6582dc4b6ba9e979af6b79f4": 177, + "6582dc5740562727a654ebb1": 47, + "664d4b0103ef2c61246afb56": 1, + "66507eabf5ddb0818b085b68": 33, + "668fe5c5f35310705d02b696": 8782, + "675aaa003107dac10006332f": 10000, + "675ea3d6312c0a5c4e04e317": 1991, + "6761a6ccd9bbb27ad703c48a": 20, + "6761a6f90575f25e020816a4": 188 + }, + "SecuredContainer": { + "573719762459775a626ccbc1": 100000, + "57a0dfb82459774d3078b56c": 100000, + "58dd3ad986f77403051cba8f": 100000, + "5a3c16fe86f77452b62de32a": 100000, + "5a6086ea4f39f99cd479502f": 100000, + "5c0d56a986f774449d5de529": 83560, + "5cadf6ddae9215051e1c23b2": 100000, + "5cadf6eeae921500134b2799": 17040, + "5e81f423763d9f754677bf2e": 100000, + "5efb0c1bd79ff02a1f5e68d9": 13120, + "5efb0cabfb3e451d70735af5": 6374, + "5efb0da7a29a85116f6ea05f": 2371, + "668fe62ac62660a5d8071446": 41030, + "6768c25aa7b238f14a08d3f6": 35940 + }, + "SpecialLoot": {}, + "TacticalVest": { + "5448be9a4bdc2dfd2f8b456a": 1667, + "5710c24ad2720bc3458b45a3": 2134, + "58d3db5386f77426186285a0": 1194, + "599860ac86f77436b225ed1a": 2182, + "5a9e81fba2750c00164f6b11": 2355, + "5aaf8a0be5b5b00015693243": 2646, + "5caf1109ae9215753c44119f": 2739 } }, "mods": { - "5aafa857e5b5b00018480968": { - "mod_stock": [ - "5addc7005acfc4001669f275" + "544a5caa4bdc2d1a388b4568": { + "Back_plate": [ + "656f9fa0498d1b7e3e071d98" ], - "mod_barrel": [ - "5addbac75acfc400194dbc56" + "Front_plate": [ + "656f9fa0498d1b7e3e071d98" ], - "mod_magazine": [ - "5aaf8a0be5b5b00015693243" + "Groin": [ + "6570e90b3a5689d85f08db97" ], - "patron_in_weapon": [ - "58dd3ad986f77403051cba8f", - "6768c25aa7b238f14a08d3f6", - "5efb0c1bd79ff02a1f5e68d9", - "5a6086ea4f39f99cd479502f" + "Soft_armor_back": [ + "6570e87c23c1f638ef0b0ee2" + ], + "Soft_armor_front": [ + "6570e83223c1f638ef0b0ede" ] }, - "5addc7005acfc4001669f275": { - "mod_stock": [ - "5addc7ac5acfc400194dbd90" + "5648b4534bdc2d3d1c8b4580": { + "mod_foregrip": [ + "591af28e86f77414a27a9e1d" ], - "mod_scope": [ - "5addbffe5acfc4001714dfac" - ], - "mod_tactical_001": [ - "5a7b483fe899ef0016170d15" - ] - }, - "5addc7ac5acfc400194dbd90": { - "mod_pistol_grip": [ - "5addc7db5acfc4001669f279" - ] - }, - "5addbffe5acfc4001714dfac": { - "mod_scope": [ - "5b3b99265acfc4704b4a1afb" - ] - }, - "5b3b99265acfc4704b4a1afb": { - "mod_scope": [ - "5b3b99475acfc432ff4dcbee" - ] - }, - "5addbac75acfc400194dbc56": { - "mod_muzzle": [ - "5d026791d7ad1a04a067ea63", - "5c7954d52e221600106f4cc7" - ] - }, - "651450ce0e00edc794068371": { - "mod_reciever": [ - "57c44f4f2459772d2c627113" - ], - "mod_pistol_grip": [ - "5a69a2ed8dc32e000d46d1f1" - ], - "mod_handguard": [ - "6568a6bf2c5fb7afc70bc424" - ], - "mod_magazine": [ - "5a9e81fba2750c00164f6b11" - ] - }, - "5a69a2ed8dc32e000d46d1f1": { - "mod_stock_000": [ - "5beec8c20db834001d2c465c" - ] - }, - "6568a6bf2c5fb7afc70bc424": { - "mod_tactical": [ - "57d17e212459775a1179a0f5" - ], - "mod_scope": [ - "577d128124597739d65d0e56" - ] - }, - "57d17e212459775a1179a0f5": { - "mod_flashlight": [ - "59d790f486f77403cb06aec6" + "mod_tactical_002": [ + "560d657b4bdc2da74d8b4572" ] }, "577d128124597739d65d0e56": { @@ -276,71 +2911,61 @@ "577d141e24597739c5255e01" ] }, - "5e81c3cbac2bb513793cdc75": { - "mod_barrel": [ - "5e81c519cb2b95385c177551" + "57d17e212459775a1179a0f5": { + "mod_flashlight": [ + "59d790f486f77403cb06aec6" + ] + }, + "59984ab886f7743e98271174": { + "mod_charge": [ + "5648ac824bdc2ded0b8b457d" ], - "mod_pistol_grip": [ - "5e81c6bf763d9f754677beff" - ], - "mod_reciever": [ - "5e81edc13397a21db957f6a1" + "mod_gas_block": [ + "59ccd11386f77428f24a488f" ], "mod_magazine": [ - "5e81c4ca763d9f754677befa" + "599860ac86f77436b225ed1a" ], - "mod_trigger": [ - "5e81c6a2ac2bb513793cdc7f" - ], - "mod_hammer": [ - "5e81c550763d9f754677befd" - ], - "mod_catch": [ - "5e81c539cb2b95385c177553" - ] - }, - "5e81edc13397a21db957f6a1": { - "mod_sight_rear": [ - "5e81ee4dcb2b95385c177582" - ], - "mod_sight_front": [ - "5e81ee213397a21db957f6a6" - ] - }, - "5ab8dced86f774646209ec87": { - "Front_plate": [ - "656fa25e94b480b8a500c0e0" - ], - "Back_plate": [ - "656fa25e94b480b8a500c0e0" - ], - "Soft_armor_front": [ - "6570f6e774d84423df065f21" - ], - "Soft_armor_back": [ - "6570f71dd67d0309980a7af8" - ], - "Soft_armor_left": [ - "6570f74774d84423df065f25" - ], - "soft_armor_right": [ - "6570f79c4c65ab77a6015121" - ] - }, - "5ea17ca01412a1425304d1c0": { - "Helmet_top": [ - "657f9a55c6679fefb3051e19" - ], - "Helmet_back": [ - "657f9a94ada5fadd1f07a589" - ], - "mod_nvg": [ - "5ea18c84ecf1982c7712d9a2" - ] - }, - "5c7954d52e221600106f4cc7": { "mod_muzzle": [ - "5c7955c22e221644f31bfd5e" + "59bfc5c886f7743bf6794e62" + ], + "mod_pistol_grip": [ + "5649ae4a4bdc2d1b2b8b4588" + ], + "mod_reciever": [ + "59985a6c86f77414ec448d17" + ], + "mod_sight_rear": [ + "599860e986f7743bb57573a6" + ], + "mod_stock": [ + "5ac78eaf5acfc4001926317a" + ] + }, + "59985a6c86f77414ec448d17": { + "mod_scope": [ + "570fd6c2d2720bc6458b457f" + ] + }, + "59ccd11386f77428f24a488f": { + "mod_handguard": [ + "5648b4534bdc2d3d1c8b4580" + ] + }, + "5a16b8a9fcdbcb00165aa6ca": { + "mod_nvg": [ + "5a16b93dfcdbcbcae6687261", + "5c0695860db834001b735461" + ] + }, + "5a16b93dfcdbcbcae6687261": { + "mod_nvg": [ + "57235b6f24597759bf5a30f1" + ] + }, + "5a16bb52fcdbcb001a3b00dc": { + "mod_nvg": [ + "5a16b8a9fcdbcb00165aa6ca" ] }, "5a17f98cfcdbcb0980087290": { @@ -357,266 +2982,54 @@ "5aba637ad8ce87001773e17f" ] }, - "544a5caa4bdc2d1a388b4568": { - "Front_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Back_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Soft_armor_front": [ - "6570e83223c1f638ef0b0ede" - ], - "Soft_armor_back": [ - "6570e87c23c1f638ef0b0ee2" - ], - "Groin": [ - "6570e90b3a5689d85f08db97" + "5a69a2ed8dc32e000d46d1f1": { + "mod_stock_000": [ + "5beec8c20db834001d2c465c" ] }, - "5a16bb52fcdbcb001a3b00dc": { - "mod_nvg": [ - "5a16b8a9fcdbcb00165aa6ca" - ] - }, - "5a16b8a9fcdbcb00165aa6ca": { - "mod_nvg": [ - "5a16b93dfcdbcbcae6687261", - "5c0695860db834001b735461" - ] - }, - "5a16b93dfcdbcbcae6687261": { - "mod_nvg": [ - "57235b6f24597759bf5a30f1" - ] - }, - "5cadfbf7ae92152ac412eeef": { - "mod_muzzle": [ - "5caf17c9ae92150b30006be1", - "5caf187cae92157c28402e43" - ], - "mod_sight_front": [ - "5caf16a2ae92152ac412efbc" - ], - "mod_handguard": [ - "5cdaa99dd7f00c002412d0b2" - ], - "mod_scope": [ - "5caf1691ae92152ac412efb9", - "5c0517910db83400232ffee5", - "584924ec24597768f12ae244" + "5aafa857e5b5b00018480968": { + "mod_barrel": [ + "5addbac75acfc400194dbc56" ], "mod_magazine": [ - "5caf1109ae9215753c44119f" - ] - }, - "5cdaa99dd7f00c002412d0b2": { - "mod_foregrip": [ - "5cda9bcfd7f00c0c0b53e900" - ] - }, - "5caf1691ae92152ac412efb9": { - "mod_scope": [ - "591c4efa86f7741030027726" - ] - }, - "61bc85697113f767765c7fe7": { - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_front": [ - "6572fc809a866b80ab07eb59" - ], - "Soft_armor_back": [ - "6572fc8c9a866b80ab07eb5d" - ], - "Soft_armor_left": [ - "6572fc989a866b80ab07eb61" - ], - "soft_armor_right": [ - "6572fca39a866b80ab07eb65" - ] - }, - "5b432d215acfc4771e1c6624": { - "Helmet_top": [ - "657bb92fa1c61ee0c303631f" - ], - "Helmet_back": [ - "657bb99db30eca976305117f" - ], - "mod_nvg": [ - "5a16b8a9fcdbcb00165aa6ca", - "5c0558060db834001b735271" - ] - }, - "5c0695860db834001b735461": { - "mod_nvg": [ - "5c0696830db834001d23f5da" - ] - }, - "59984ab886f7743e98271174": { - "mod_pistol_grip": [ - "5649ae4a4bdc2d1b2b8b4588" + "5aaf8a0be5b5b00015693243" ], "mod_stock": [ - "5ac78eaf5acfc4001926317a" + "5addc7005acfc4001669f275" ], - "mod_charge": [ - "5648ac824bdc2ded0b8b457d" - ], - "mod_muzzle": [ - "59bfc5c886f7743bf6794e62" - ], - "mod_reciever": [ - "59985a6c86f77414ec448d17" - ], - "mod_sight_rear": [ - "599860e986f7743bb57573a6" - ], - "mod_gas_block": [ - "59ccd11386f77428f24a488f" - ], - "mod_magazine": [ - "599860ac86f77436b225ed1a" + "patron_in_weapon": [ + "58dd3ad986f77403051cba8f", + "6768c25aa7b238f14a08d3f6", + "5efb0c1bd79ff02a1f5e68d9", + "5a6086ea4f39f99cd479502f" ] }, - "5ac78eaf5acfc4001926317a": { - "mod_stock": [ - "59ecc3dd86f7746dc827481c" - ] - }, - "59985a6c86f77414ec448d17": { - "mod_scope": [ - "570fd6c2d2720bc6458b457f" - ] - }, - "59ccd11386f77428f24a488f": { - "mod_handguard": [ - "5648b4534bdc2d3d1c8b4580" - ] - }, - "5648b4534bdc2d3d1c8b4580": { - "mod_foregrip": [ - "591af28e86f77414a27a9e1d" - ], - "mod_tactical_002": [ - "560d657b4bdc2da74d8b4572" - ] - }, - "6193a720f8ee7e52e42109ed": { - "mod_barrel": [ - "6194f017ed0429009f543eaa" - ], - "mod_reciever": [ - "6194f5d418a3974e5e7421ef" - ], - "mod_trigger": [ - "6193d3cded0429009f543e6a" - ], - "mod_hammer": [ - "6193d3be7c6c7b169525f0da" - ], - "mod_catch": [ - "6193d5d4f8ee7e52e4210a1b" - ], - "mod_mount_000": [ - "619621a4de3cdf1d2614a7a7" - ], - "mod_magazine": [ - "6193d3149fb0c665d5490e32" - ] - }, - "6194f5d418a3974e5e7421ef": { - "mod_sight_rear": [ - "6194f2df645b5d229654ad77" - ], - "mod_sight_front": [ - "6194f3286db0f2477964e67d" - ] - }, - "5c0e722886f7740458316a57": { - "Front_plate": [ - "656fa0fb498d1b7e3e071d9c" - ], + "5ab8dced86f774646209ec87": { "Back_plate": [ - "656fa0fb498d1b7e3e071d9c" + "656fa25e94b480b8a500c0e0" ], - "Soft_armor_front": [ - "65730c0e292ecadbfa09ad49" + "Front_plate": [ + "656fa25e94b480b8a500c0e0" ], "Soft_armor_back": [ - "65730c2213a2f660f60bea96" + "6570f71dd67d0309980a7af8" + ], + "Soft_armor_front": [ + "6570f6e774d84423df065f21" ], "Soft_armor_left": [ - "65730c2b292ecadbfa09ad50" + "6570f74774d84423df065f25" ], "soft_armor_right": [ - "65730c35292ecadbfa09ad54" - ] - }, - "5f60b34a41e30a4ab12a6947": { - "Helmet_top": [ - "657bbad7a1c61ee0c3036323" - ], - "Helmet_back": [ - "657bbb31b30eca9763051183" - ] - }, - "602a9740da11d6478d5a06dc": { - "mod_barrel": [ - "602a95edda11d6478d5a06da" - ], - "mod_reciever": [ - "60228924961b8d75ee233c32" - ], - "mod_magazine": [ - "602286df23506e50807090c6" - ] - }, - "60228924961b8d75ee233c32": { - "mod_sight_rear": [ - "60229948cacb6b0506369e27" - ], - "mod_sight_front": [ - "60228a76d62c9b14ed777a66" - ] - }, - "5c066ef40db834001966a595": { - "mod_nvg": [ - "5c066e3a0db834001b7353f0" - ] - }, - "61bca7cda0eae612383adf57": { - "Helmet_top": [ - "657bbcc9a1c61ee0c3036327" - ], - "Helmet_back": [ - "657bbcffbbd440df880b2dd5" - ] - }, - "5c0e746986f7741453628fe5": { - "Front_plate": [ - "656fa0fb498d1b7e3e071d9c" - ], - "Back_plate": [ - "656fa0fb498d1b7e3e071d9c" - ], - "Soft_armor_front": [ - "6570df294cc0d2ab1e05ed74" - ], - "Soft_armor_back": [ - "6570df9c615f54368b04fca9" + "6570f79c4c65ab77a6015121" ] }, "5abccb7dd8ce87001773e277": { "mod_magazine": [ "5a17fb03fcdbcbcae668728f" ], - "mod_stock": [ - "5a17fb9dfcdbcbcae6687291" + "mod_muzzle": [ + "5abcc328d8ce8700194394f3" ], "mod_pistol_grip": [ "5a17fc70fcdbcb0176308b3d" @@ -627,23 +3040,165 @@ "mod_sight_rear": [ "5aba639ed8ce8700182ece67" ], + "mod_stock": [ + "5a17fb9dfcdbcbcae6687291" + ] + }, + "5ac78eaf5acfc4001926317a": { + "mod_stock": [ + "59ecc3dd86f7746dc827481c" + ] + }, + "5addbac75acfc400194dbc56": { "mod_muzzle": [ - "5abcc328d8ce8700194394f3" + "5d026791d7ad1a04a067ea63", + "5c7954d52e221600106f4cc7" + ] + }, + "5addbffe5acfc4001714dfac": { + "mod_scope": [ + "5b3b99265acfc4704b4a1afb" + ] + }, + "5addc7005acfc4001669f275": { + "mod_scope": [ + "5addbffe5acfc4001714dfac" + ], + "mod_stock": [ + "5addc7ac5acfc400194dbd90" + ], + "mod_tactical_001": [ + "5a7b483fe899ef0016170d15" + ] + }, + "5addc7ac5acfc400194dbd90": { + "mod_pistol_grip": [ + "5addc7db5acfc4001669f279" + ] + }, + "5b3b99265acfc4704b4a1afb": { + "mod_scope": [ + "5b3b99475acfc432ff4dcbee" + ] + }, + "5b432d215acfc4771e1c6624": { + "Helmet_back": [ + "657bb99db30eca976305117f" + ], + "Helmet_top": [ + "657bb92fa1c61ee0c303631f" + ], + "mod_nvg": [ + "5a16b8a9fcdbcb00165aa6ca", + "5c0558060db834001b735271" + ] + }, + "5b44cad286f77402a54ae7e5": { + "Back_plate": [ + "656fae5f7c2d57afe200c0d7" + ], + "Front_plate": [ + "656fae5f7c2d57afe200c0d7" + ], + "Soft_armor_back": [ + "6575bca0dc9932aed601c5d7" + ], + "Soft_armor_front": [ + "6575bc88c6700bd6b40e8a57" + ] + }, + "5c066ef40db834001966a595": { + "mod_nvg": [ + "5c066e3a0db834001b7353f0" + ] + }, + "5c0695860db834001b735461": { + "mod_nvg": [ + "5c0696830db834001d23f5da" + ] + }, + "5c0e722886f7740458316a57": { + "Back_plate": [ + "656fa0fb498d1b7e3e071d9c" + ], + "Front_plate": [ + "656fa0fb498d1b7e3e071d9c" + ], + "Soft_armor_back": [ + "65730c2213a2f660f60bea96" + ], + "Soft_armor_front": [ + "65730c0e292ecadbfa09ad49" + ], + "Soft_armor_left": [ + "65730c2b292ecadbfa09ad50" + ], + "soft_armor_right": [ + "65730c35292ecadbfa09ad54" + ] + }, + "5c0e746986f7741453628fe5": { + "Back_plate": [ + "656fa0fb498d1b7e3e071d9c" + ], + "Front_plate": [ + "656fa0fb498d1b7e3e071d9c" + ], + "Soft_armor_back": [ + "6570df9c615f54368b04fca9" + ], + "Soft_armor_front": [ + "6570df294cc0d2ab1e05ed74" + ] + }, + "5c7954d52e221600106f4cc7": { + "mod_muzzle": [ + "5c7955c22e221644f31bfd5e" + ] + }, + "5cadfbf7ae92152ac412eeef": { + "mod_handguard": [ + "5cdaa99dd7f00c002412d0b2" + ], + "mod_magazine": [ + "5caf1109ae9215753c44119f" + ], + "mod_muzzle": [ + "5caf17c9ae92150b30006be1", + "5caf187cae92157c28402e43" + ], + "mod_scope": [ + "5caf1691ae92152ac412efb9", + "5c0517910db83400232ffee5", + "584924ec24597768f12ae244" + ], + "mod_sight_front": [ + "5caf16a2ae92152ac412efbc" + ] + }, + "5caf1691ae92152ac412efb9": { + "mod_scope": [ + "591c4efa86f7741030027726" + ] + }, + "5cdaa99dd7f00c002412d0b2": { + "mod_foregrip": [ + "5cda9bcfd7f00c0c0b53e900" ] }, "5d5d87f786f77427997cfaef": { - "Front_plate": [ - "656f9fa0498d1b7e3e071d98" - ], "Back_plate": [ "656f9fa0498d1b7e3e071d98" ], - "Soft_armor_front": [ - "6570e5100b57c03ec90b970a" + "Front_plate": [ + "656f9fa0498d1b7e3e071d98" ], "Soft_armor_back": [ "6570e479a6560e4ee50c2b02" ], + "Soft_armor_front": [ + "6570e5100b57c03ec90b970a" + ], "Soft_armor_left": [ "6570e5674cc0d2ab1e05edbb" ], @@ -651,55 +3206,222 @@ "6570e59b0b57c03ec90b970e" ] }, - "61bcc89aef0f505f0c6cd0fc": { - "Front_plate": [ - "656fb21fa0dce000a2020f7c" + "5e81c3cbac2bb513793cdc75": { + "mod_barrel": [ + "5e81c519cb2b95385c177551" ], + "mod_catch": [ + "5e81c539cb2b95385c177553" + ], + "mod_hammer": [ + "5e81c550763d9f754677befd" + ], + "mod_magazine": [ + "5e81c4ca763d9f754677befa" + ], + "mod_pistol_grip": [ + "5e81c6bf763d9f754677beff" + ], + "mod_reciever": [ + "5e81edc13397a21db957f6a1" + ], + "mod_trigger": [ + "5e81c6a2ac2bb513793cdc7f" + ] + }, + "5e81edc13397a21db957f6a1": { + "mod_sight_front": [ + "5e81ee213397a21db957f6a6" + ], + "mod_sight_rear": [ + "5e81ee4dcb2b95385c177582" + ] + }, + "5ea17ca01412a1425304d1c0": { + "Helmet_back": [ + "657f9a94ada5fadd1f07a589" + ], + "Helmet_top": [ + "657f9a55c6679fefb3051e19" + ], + "mod_nvg": [ + "5ea18c84ecf1982c7712d9a2" + ] + }, + "5f36a0e5fbf956000b716b65": { + "mod_barrel": [ + "5f3e7801153b8571434a924c" + ], + "mod_catch": [ + "5f3e777688ca2d00ad199d25" + ], + "mod_hammer": [ + "5f3e76d86cda304dcc634054" + ], + "mod_magazine": [ + "5f3e77b26cda304dcc634057" + ], + "mod_pistol_grip": [ + "5f3e778efcd9b651187d7201" + ], + "mod_reciever": [ + "5f3e7823ddc4f03b010e2045" + ], + "mod_trigger": [ + "5f3e772a670e2a7b01739a52" + ] + }, + "5f3e7823ddc4f03b010e2045": { + "mod_sight_front": [ + "5f3e78a7fbf956000b716b8e" + ], + "mod_sight_rear": [ + "5f3e7897ddc4f03b010e204a" + ] + }, + "5f60b34a41e30a4ab12a6947": { + "Helmet_back": [ + "657bbb31b30eca9763051183" + ], + "Helmet_top": [ + "657bbad7a1c61ee0c3036323" + ] + }, + "60228924961b8d75ee233c32": { + "mod_sight_front": [ + "60228a76d62c9b14ed777a66" + ], + "mod_sight_rear": [ + "60229948cacb6b0506369e27" + ] + }, + "602a9740da11d6478d5a06dc": { + "mod_barrel": [ + "602a95edda11d6478d5a06da" + ], + "mod_magazine": [ + "602286df23506e50807090c6" + ], + "mod_reciever": [ + "60228924961b8d75ee233c32" + ] + }, + "6193a720f8ee7e52e42109ed": { + "mod_barrel": [ + "6194f017ed0429009f543eaa" + ], + "mod_catch": [ + "6193d5d4f8ee7e52e4210a1b" + ], + "mod_hammer": [ + "6193d3be7c6c7b169525f0da" + ], + "mod_magazine": [ + "6193d3149fb0c665d5490e32" + ], + "mod_mount_000": [ + "619621a4de3cdf1d2614a7a7" + ], + "mod_reciever": [ + "6194f5d418a3974e5e7421ef" + ], + "mod_trigger": [ + "6193d3cded0429009f543e6a" + ] + }, + "6194f5d418a3974e5e7421ef": { + "mod_sight_front": [ + "6194f3286db0f2477964e67d" + ], + "mod_sight_rear": [ + "6194f2df645b5d229654ad77" + ] + }, + "61bc85697113f767765c7fe7": { + "Back_plate": [ + "656fad8c498d1b7e3e071da0" + ], + "Front_plate": [ + "656fad8c498d1b7e3e071da0" + ], + "Soft_armor_back": [ + "6572fc8c9a866b80ab07eb5d" + ], + "Soft_armor_front": [ + "6572fc809a866b80ab07eb59" + ], + "Soft_armor_left": [ + "6572fc989a866b80ab07eb61" + ], + "soft_armor_right": [ + "6572fca39a866b80ab07eb65" + ] + }, + "61bca7cda0eae612383adf57": { + "Helmet_back": [ + "657bbcffbbd440df880b2dd5" + ], + "Helmet_top": [ + "657bbcc9a1c61ee0c3036327" + ] + }, + "61bcc89aef0f505f0c6cd0fc": { "Back_plate": [ "656fb21fa0dce000a2020f7c" ], - "Soft_armor_front": [ - "6572eb0e55beba16bc04079f" + "Front_plate": [ + "656fb21fa0dce000a2020f7c" + ], + "Groin": [ + "6572eb865b5eac12f10a03ee" ], "Soft_armor_back": [ "6572eb1b04ee6483ef039882" ], + "Soft_armor_front": [ + "6572eb0e55beba16bc04079f" + ], "Soft_armor_left": [ "6572eb3004ee6483ef039886" ], "soft_armor_right": [ "6572eb3b04ee6483ef03988a" - ], - "Groin": [ - "6572eb865b5eac12f10a03ee" ] }, - "5b44cad286f77402a54ae7e5": { - "Front_plate": [ - "656fae5f7c2d57afe200c0d7" + "651450ce0e00edc794068371": { + "mod_handguard": [ + "6568a6bf2c5fb7afc70bc424" ], - "Back_plate": [ - "656fae5f7c2d57afe200c0d7" + "mod_magazine": [ + "5a9e81fba2750c00164f6b11" ], - "Soft_armor_front": [ - "6575bc88c6700bd6b40e8a57" + "mod_pistol_grip": [ + "5a69a2ed8dc32e000d46d1f1" ], - "Soft_armor_back": [ - "6575bca0dc9932aed601c5d7" + "mod_reciever": [ + "57c44f4f2459772d2c627113" + ] + }, + "6568a6bf2c5fb7afc70bc424": { + "mod_scope": [ + "577d128124597739d65d0e56" + ], + "mod_tactical": [ + "57d17e212459775a1179a0f5" ] }, "668fe5a998b5ad715703ddd6": { "mod_barrel": [ "668fe5f62a0f85eea407cc18" ], + "mod_magazine": [ + "668fe5c5f35310705d02b696" + ], "mod_pistolgrip": [ "668fe5d42a0f85eea407cc16" ], "mod_reciever": [ "668fe60b56984d93550462c6" - ], - "mod_magazine": [ - "668fe5c5f35310705d02b696" ] }, "668fe5f62a0f85eea407cc18": { @@ -711,2746 +3433,24 @@ "mod_sight_rear": [ "668fe5e1800f0244f9036e46" ] - }, - "5f36a0e5fbf956000b716b65": { - "mod_barrel": [ - "5f3e7801153b8571434a924c" - ], - "mod_pistol_grip": [ - "5f3e778efcd9b651187d7201" - ], - "mod_reciever": [ - "5f3e7823ddc4f03b010e2045" - ], - "mod_magazine": [ - "5f3e77b26cda304dcc634057" - ], - "mod_trigger": [ - "5f3e772a670e2a7b01739a52" - ], - "mod_hammer": [ - "5f3e76d86cda304dcc634054" - ], - "mod_catch": [ - "5f3e777688ca2d00ad199d25" - ] - }, - "5f3e7823ddc4f03b010e2045": { - "mod_sight_rear": [ - "5f3e7897ddc4f03b010e204a" - ], - "mod_sight_front": [ - "5f3e78a7fbf956000b716b8e" - ] } - }, - "items": { - "TacticalVest": { - "5aaf8a0be5b5b00015693243": 2646, - "5a9e81fba2750c00164f6b11": 2355, - "5710c24ad2720bc3458b45a3": 2134, - "5448be9a4bdc2dfd2f8b456a": 1667, - "58d3db5386f77426186285a0": 1194, - "5caf1109ae9215753c44119f": 2739, - "599860ac86f77436b225ed1a": 2182 - }, - "Pockets": { - "5e81c4ca763d9f754677befa": 10000, - "590c678286f77426c9660122": 10000, - "675aaa003107dac10006332f": 10000, - "5df8a77486f77412672a1e3f": 5541, - "5710c24ad2720bc3458b45a3": 10000, - "5a17fb03fcdbcbcae668728f": 10000, - "675ea3d6312c0a5c4e04e317": 1991, - "6193d3149fb0c665d5490e32": 10000, - "5c0e530286f7747fa1419862": 115, - "5938603e86f77435642354f4": 689, - "602286df23506e50807090c6": 10000, - "5c94bbff86f7747ee735c08f": 4063, - "63a39c7964283b5e9c56b280": 212, - "658199972dc4e60f6d556a2f": 477, - "5937ee6486f77408994ba448": 369, - "637b612fb7afa97bfc3d7005": 56, - "6581998038c79576a2569e11": 369, - "5938504186f7740991483f30": 401, - "5d95d6be86f77424444eb3a7": 53, - "5ad5d49886f77455f9731921": 344, - "6761a6f90575f25e020816a4": 188, - "63a39df18a56922e82001f25": 96, - "591afe0186f77431bd616a11": 331, - "668fe5c5f35310705d02b696": 8782, - "5938994586f774523a425196": 219, - "5ad7217186f7746744498875": 56, - "5f3e77b26cda304dcc634057": 2180, - "5780d0532459777a5108b9a2": 64, - "5c0e534186f7747fa1419867": 124, - "64ccc206793ca11c8f450a38": 42, - "59136a4486f774447a1ed172": 133, - "5d80ca9086f774403a401e40": 18, - "5780cf942459777df90dcb72": 529, - "593aa4be86f77457f56379f8": 458, - "64ccc268c41e91416064ebc7": 32, - "5ad5d20586f77449be26d877": 162, - "5780cf692459777de4559321": 29, - "5c1d0efb86f7744baf2e7b7b": 44, - "5913611c86f77479e0084092": 230, - "6582dc4b6ba9e979af6b79f4": 177, - "5d947d3886f774447b415893": 25, - "5ed5160a87bb8443d10680b5": 59, - "5448ba0b4bdc2d02308b456c": 56, - "5d80cb3886f77440556dbf09": 50, - "5ed51652f6c34d2cc26336a1": 59, - "61a64492ba05ef10d62adcc1": 47, - "591382d986f774465a6413a7": 114, - "637b6179104668754b72f8f5": 78, - "6582dbe43a2e5248357dbe9a": 368, - "5c1d0d6d86f7744bb2683e1f": 216, - "6582dc5740562727a654ebb1": 47, - "64ccc2111779ad6ba200a139": 46, - "63a71e781031ac76fe773c7d": 100, - "5a0ee34586f774023b6ee092": 44, - "591ae8f986f77406f854be45": 39, - "5a0eb6ac86f7743124037a28": 39, - "59387a4986f77401cc236e62": 47, - "5780cda02459777b272ede61": 34, - "5a13ef0686f7746e5a411744": 45, - "63a39fc0af870e651d58e6ae": 23, - "5a0ee76686f7743698200d5c": 38, - "59148c8a86f774197930e983": 186, - "5c1e2a1e86f77431ea0ea84c": 33, - "61aa5ba8018e9821b7368da9": 44, - "62a09ec84f842e1bd12da3f2": 83, - "63a39fd1c9b3aa4b61683efb": 115, - "5a0eeb1a86f774688b70aa5c": 40, - "5c0e531d86f7747fa23f4d42": 311, - "5d80c78786f774403a401e3e": 24, - "5a0eed4386f77405112912aa": 30, - "5c0e531286f7747fa54205c2": 118, - "5d80ccdd86f77474f7575e02": 25, - "5a0ea69f86f7741cd5406619": 42, - "5a0f068686f7745b0d4ea242": 39, - "5ed515ece452db0eb56fc028": 50, - "5c1d0f4986f7744bb01837fa": 40, - "5a13ef7e86f7741290491063": 41, - "5ed515f6915ec335206e4152": 71, - "5a13ee1986f774794d4c14cd": 46, - "5d95d6fa86f77424484aa5e9": 42, - "63a39c69af870e651d58e6aa": 52, - "5e42c83786f7742a021fdf3c": 144, - "5d9f1fa686f774726974a992": 24, - "5a0eeb8e86f77461257ed71a": 39, - "5da5cdcd86f774529238fb9b": 29, - "5ed5166ad380ab312177c100": 29, - "5a0ec70e86f7742c0b518fba": 38, - "64ccc24de61ea448b507d34d": 40, - "5780cfa52459777dfb276eb1": 190, - "61aa5aed32a4743c3453d319": 29, - "64ccc1ec1779ad6ba200a137": 47, - "61aa81fcb225ac1ead7957c3": 43, - "63a39fdf1e21260da44a0256": 74, - "5d8e0db586f7744450412a42": 19, - "62987da96188c076bc0d8c51": 45, - "5c10c8fd86f7743d7d706df3": 120, - "66507eabf5ddb0818b085b68": 33, - "5a0ea64786f7741707720468": 39, - "63a39ce4cd6db0635c1975fa": 54, - "5ad5cfbd86f7742c825d6104": 44, - "5d80c88d86f77440556dbf07": 23, - "5c1e495a86f7743109743dfb": 37, - "5a145ebb86f77458f1796f05": 31, - "64ccc1d4a0f13c24561edf27": 38, - "637b620db7afa97bfc3d7009": 60, - "5e42c81886f7742a01529f57": 96, - "5780d07a2459777de4559324": 33, - "5914578086f774123569ffa4": 143, - "5ad7247386f7747487619dc3": 14, - "59136e1e86f774432f15d133": 102, - "5913915886f774123603c392": 75, - "62987c658081af308d7558c6": 35, - "61aa5b518f5e7a39b41416e2": 33, - "5d8e0e0e86f774321140eb56": 25, - "63a39f6e64283b5e9c56b289": 36, - "5fca13ca637ee0341a484f46": 64, - "5ad5db3786f7743568421cce": 51, - "5ed515c8d380ab312177c0fa": 102, - "63a39f08cd6db0635c197600": 68, - "5d80c93086f7744036212b41": 16, - "5a0eedb386f77403506300be": 58, - "5a0f0f5886f7741c4e32a472": 46, - "5a0eff2986f7741fd654e684": 47, - "5a0dc95c86f77452440fc675": 61, - "5c1e2d1f86f77431e9280bee": 45, - "63a39dfe3901f439517cafba": 37, - "591383f186f7744a4c5edcf3": 126, - "5d80cb8786f774405611c7d9": 22, - "63a71ed21031ac76fe773c7f": 44, - "5eff09cd30a7dc22fd1ddfed": 88, - "5913651986f774432f15d132": 45, - "5a0eb38b86f774153b320eb0": 47, - "5ed515e03a40a50460332579": 74, - "5d80c6c586f77440351beef1": 22, - "5780cf722459777a5108b9a1": 42, - "61aa5b7db225ac1ead7957c1": 55, - "62987cb98081af308d7558c8": 41, - "5c1d0c5f86f7744bb2683cf0": 45, - "5a13eebd86f7746fd639aa93": 17, - "637b6251104668754b72f8f9": 29, - "5d8e15b686f774445103b190": 45, - "5a0f006986f7741ffd2fe484": 42, - "5c1d0dc586f7744baf2e7b79": 39, - "5938144586f77473c2087145": 50, - "5d947d4e86f774447b415895": 23, - "59148f8286f7741b951ea113": 44, - "5a13f24186f77410e57c5626": 17, - "62987e26a77ec735f90a2995": 99, - "5672c92d4bdc2d180f8b4567": 41, - "5c0e533786f7747fa23f4d47": 139, - "5ad5ccd186f774446d5706e9": 36, - "61a64428a8c6aa1b795f0ba1": 46, - "5913877a86f774432f15d444": 48, - "5e42c71586f7747f245e1343": 19, - "5a0ea79b86f7741d4a35298e": 49, - "5a0eec9686f77402ac5c39f2": 43, - "5a0ee4b586f7743698200d22": 19, - "63a39cb1c9b3aa4b61683ee2": 55, - "63a39667c9b3aa4b61683e98": 40, - "5a144bdb86f7741d374bbde0": 30, - "5780cf9e2459777df90dcb73": 43, - "64ccc1f4ff54fb38131acf27": 51, - "5d80cb5686f77440545d1286": 40, - "63a71e922b25f7513905ca20": 23, - "5addaffe86f77470b455f900": 17, - "61a6444b8c141d68246e2d2f": 42, - "63a71e86b7f4570d3a293169": 42, - "5d80c66d86f774405611c7d6": 25, - "63a71eb5b7f4570d3a29316b": 33, - "62a9cb937377a65d7b070cef": 39, - "5a1452ee86f7746f33111763": 13, - "5a0ee62286f774369454a7ac": 44, - "5a0eecf686f7740350630097": 13, - "5a0eebed86f77461230ddb3d": 38, - "5a13f46386f7741dd7384b04": 47, - "5c1f79a086f7746ed066fb8f": 8, - "59136f6f86f774447a1ed173": 45, - "5a0ee37f86f774023657a86f": 16, - "5d80c62a86f7744036212b3f": 13, - "5a145d7b86f7744cbb6f4a13": 27, - "5ede7b0c6d23e5473e6e8c66": 16, - "5ad7242b86f7740a6a3abd43": 38, - "5a0dc45586f7742f6b0b73e3": 44, - "5d80c6fc86f774403a401e3c": 27, - "5780cf7f2459777de4559322": 11, - "5780d0652459777df90dcb74": 27, - "5d80ccac86f77470841ff452": 18, - "5a0eee1486f77402aa773226": 43, - "5d80cab086f77440535be201": 21, - "63a39e49cd6db0635c1975fc": 37, - "5fca138c2a7b221b2852a5c6": 40, - "5d80c95986f77440351beef3": 21, - "5a0ee72c86f77436955d3435": 46, - "5da46e3886f774653b7a83fe": 15, - "5a0f08bc86f77478f33b84c2": 39, - "5a0ee30786f774023b6ee08f": 48, - "5ad5d7d286f77450166e0a89": 17, - "5a13f35286f77413ef1436b0": 28, - "64ccc246ff54fb38131acf29": 35, - "5a0f075686f7745bcc42ee12": 47, - "5ad5d64486f774079b080af8": 45, - "63a399193901f439517cafb6": 15, - "5d80c8f586f77440373c4ed0": 13, - "5a0ec6d286f7742c0b518fb5": 13, - "63a3a93f8a56922e82001f5d": 12, - "637b60c3b7afa97bfc3d7001": 22, - "64ccc1fe088064307e14a6f7": 43, - "63a39f18c2d53c2c6839c1d3": 25, - "5a0f045e86f7745b0f0d0e42": 41, - "5da743f586f7744014504f72": 35, - "5d8e3ecc86f774414c78d05e": 17, - "5d80cd1a86f77402aa362f42": 28, - "62987dfc402c7f69bf010923": 8, - "5d80cbd886f77470855c26c2": 21, - "5a145d4786f7744cbb6f4a12": 11, - "5a144dfd86f77445cb5a0982": 14, - "5ede7a8229445733cb4c18e2": 7, - "5d80c60f86f77440373c4ece": 10, - "6761a6ccd9bbb27ad703c48a": 20, - "64ccc25f95763a1ae376e447": 5, - "63a39e1d234195315d4020bd": 1, - "664d4b0103ef2c61246afb56": 1, - "64d4b23dc1b37504b41ac2b6": 1 - }, - "Backpack": { - "5c1d0d6d86f7744bb2683e1f": 1, - "5c1d0c5f86f7744bb2683cf0": 1, - "5c1e495a86f7743109743dfb": 1, - "5c1d0dc586f7744baf2e7b79": 1, - "5c1d0efb86f7744baf2e7b7b": 1, - "5c1d0f4986f7744bb01837fa": 1, - "5c94bbff86f7747ee735c08f": 1, - "5e42c83786f7742a021fdf3c": 1, - "5e42c81886f7742a01529f57": 1, - "59136a4486f774447a1ed172": 1, - "5780cf7f2459777de4559322": 1, - "5d80c60f86f77440373c4ece": 1, - "5d80c62a86f7744036212b3f": 1, - "5ede7a8229445733cb4c18e2": 1, - "5da743f586f7744014504f72": 1, - "5d8e15b686f774445103b190": 1, - "5a13f24186f77410e57c5626": 1, - "5448ba0b4bdc2d02308b456c": 1, - "5a1452ee86f7746f33111763": 1, - "5a13f35286f77413ef1436b0": 1, - "5a0eec9686f77402ac5c39f2": 1, - "5a13ef7e86f7741290491063": 1, - "5a0ee30786f774023b6ee08f": 1, - "5a0ee76686f7743698200d5c": 1, - "5913877a86f774432f15d444": 1, - "5780d0652459777df90dcb74": 1, - "5d80c88d86f77440556dbf07": 1, - "5ede7b0c6d23e5473e6e8c66": 1, - "5d8e0e0e86f774321140eb56": 1, - "5d80cb3886f77440556dbf09": 1, - "5d95d6fa86f77424484aa5e9": 1, - "5d80cb5686f77440545d1286": 1, - "5d80c6fc86f774403a401e3c": 1, - "5d9f1fa686f774726974a992": 1, - "5d947d3886f774447b415893": 1, - "5e42c71586f7747f245e1343": 1, - "5ad5d7d286f77450166e0a89": 1, - "5addaffe86f77470b455f900": 1, - "5ad5d64486f774079b080af8": 1, - "591afe0186f77431bd616a11": 1, - "5c1e2d1f86f77431e9280bee": 1, - "5c1f79a086f7746ed066fb8f": 1, - "5c1e2a1e86f77431ea0ea84c": 1, - "5a144bdb86f7741d374bbde0": 1, - "5a0ee4b586f7743698200d22": 1, - "5a145d4786f7744cbb6f4a12": 1, - "5a145d7b86f7744cbb6f4a13": 1, - "5a0eecf686f7740350630097": 1, - "5a0eee1486f77402aa773226": 1 - }, - "SecuredContainer": { - "58dd3ad986f77403051cba8f": 100000, - "57a0dfb82459774d3078b56c": 100000, - "5e81f423763d9f754677bf2e": 100000, - "6768c25aa7b238f14a08d3f6": 35940, - "573719762459775a626ccbc1": 100000, - "5cadf6ddae9215051e1c23b2": 100000, - "5a3c16fe86f77452b62de32a": 100000, - "5efb0cabfb3e451d70735af5": 6374, - "5c0d56a986f774449d5de529": 83560, - "5efb0c1bd79ff02a1f5e68d9": 13120, - "5a6086ea4f39f99cd479502f": 100000, - "5cadf6eeae921500134b2799": 17040, - "668fe62ac62660a5d8071446": 41030, - "5efb0da7a29a85116f6ea05f": 2371 - }, - "SpecialLoot": {} } }, - "firstName": [ - "Глухарь" - ], "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 + "skills": { + "Common": { + "Charisma": { + "max": 5100, + "min": 5100 }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECLC_Y_DIST": 1.2, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.35, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.002, - "Y_BOTTOM_OFFSET_COEF": 0.002, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.2, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 + "Endurance": { + "max": 5100, + "min": 5100 }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true, - "LOOK_THROUGH_GRASS": false, - "LOOK_THROUGH_GRASS_DIST_METERS": 0, - "SEC_REPEATED_SEEN": 10, - "DIST_SQRT_REPEATED_SEEN": 225, - "DIST_REPEATED_SEEN": 15, - "COEF_REPEATED_SEEN": 1E-05, - "MAX_DIST_CLAMP_TO_SEEN_SPEED": 100, - "NIGHT_VISION_ON": 100, - "NIGHT_VISION_OFF": 110, - "NIGHT_VISION_DIST": 105, - "VISIBLE_ANG_LIGHT": 60, - "VISIBLE_ANG_NIGHTVISION": 120 - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "FLASH_MODIF_IS_NIGHTVISION": 2 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 0, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE_SQRT": 0, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 0, - "CAN_LOOK_OUT_WHEN_HOLDING": true, - "SIT_DOWN_WHEN_HOLDING": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 9325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true, - "CAN_CHECK_MAGAZINE": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "DISPERSION_COEF_GUN": 40.6, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "PANIC_SIT_WEIGHT_PEACE": 60, - "CAN_EXECUTE_REQUESTS": true, - "CAN_TAKE_ITEMS": false, - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 20, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "KOJANIY_START_SUPPERS_SHOOTS_SEC": 30, - "KOJANIY_START_NEXT_SUPPERS_SHOOTS_SEC": 90, - "KOJANIY_SAFE_ENEMIES": 1, - "KOJANIY_TAKE_CARE_ABOULT_ENEMY_DELTA": 2, - "KOJANIY_WANNA_GO_TO_CLOSEST_COVER": 15, - "GLUHAR_FOLLOWER_PATH_NAME": "Boss", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 45, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15, - "GLUHAR_SEC_TO_REINFORSMENTS": -1, - "GLUHAR_REINFORSMENTS_BY_EXIT": false, - "GLUHAR_REINFORSMENTS_BY_EVENT": false, - "GLUHAR_REINFORSMENTS_BY_PLAYER_COME_TO_ZONE": false, - "GLUHAR_FOLLOWERS_TO_REINFORSMENTS": -1, - "GLUHAR_FOLLOWERS_SECURITY": 3, - "GLUHAR_FOLLOWERS_ASSAULT": 2, - "GLUHAR_FOLLOWERS_SCOUT": 2, - "GLUHAR_FOLLOWERS_SNIPE": 0, - "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, - "EFFECT_PAINKILLER": true, - "ALLOW_REQUEST_SELF": false - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECLC_Y_DIST": 1.2, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.35, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.002, - "Y_BOTTOM_OFFSET_COEF": 0.002, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.2, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true, - "LOOK_THROUGH_GRASS": false, - "LOOK_THROUGH_GRASS_DIST_METERS": 0, - "SEC_REPEATED_SEEN": 10, - "DIST_SQRT_REPEATED_SEEN": 225, - "DIST_REPEATED_SEEN": 15, - "COEF_REPEATED_SEEN": 1E-05, - "MAX_DIST_CLAMP_TO_SEEN_SPEED": 100, - "NIGHT_VISION_ON": 100, - "NIGHT_VISION_OFF": 110, - "NIGHT_VISION_DIST": 105, - "VISIBLE_ANG_LIGHT": 60, - "VISIBLE_ANG_NIGHTVISION": 120 - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "FLASH_MODIF_IS_NIGHTVISION": 2 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 0, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE_SQRT": 0, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 0, - "CAN_LOOK_OUT_WHEN_HOLDING": true, - "SIT_DOWN_WHEN_HOLDING": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 9325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true, - "CAN_CHECK_MAGAZINE": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "DISPERSION_COEF_GUN": 40.6, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "PANIC_SIT_WEIGHT_PEACE": 60, - "CAN_EXECUTE_REQUESTS": true, - "CAN_TAKE_ITEMS": false, - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 20, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "KOJANIY_START_SUPPERS_SHOOTS_SEC": 30, - "KOJANIY_START_NEXT_SUPPERS_SHOOTS_SEC": 90, - "KOJANIY_SAFE_ENEMIES": 1, - "KOJANIY_TAKE_CARE_ABOULT_ENEMY_DELTA": 2, - "KOJANIY_WANNA_GO_TO_CLOSEST_COVER": 15, - "GLUHAR_FOLLOWER_PATH_NAME": "Boss", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 45, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15, - "GLUHAR_SEC_TO_REINFORSMENTS": -1, - "GLUHAR_REINFORSMENTS_BY_EXIT": false, - "GLUHAR_REINFORSMENTS_BY_EVENT": false, - "GLUHAR_REINFORSMENTS_BY_PLAYER_COME_TO_ZONE": false, - "GLUHAR_FOLLOWERS_TO_REINFORSMENTS": -1, - "GLUHAR_FOLLOWERS_SECURITY": 3, - "GLUHAR_FOLLOWERS_ASSAULT": 2, - "GLUHAR_FOLLOWERS_SCOUT": 2, - "GLUHAR_FOLLOWERS_SNIPE": 0, - "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, - "EFFECT_PAINKILLER": true, - "ALLOW_REQUEST_SELF": false - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECLC_Y_DIST": 1.2, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.35, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.002, - "Y_BOTTOM_OFFSET_COEF": 0.002, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.2, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true, - "LOOK_THROUGH_GRASS": false, - "LOOK_THROUGH_GRASS_DIST_METERS": 0, - "SEC_REPEATED_SEEN": 10, - "DIST_SQRT_REPEATED_SEEN": 225, - "DIST_REPEATED_SEEN": 15, - "COEF_REPEATED_SEEN": 1E-05, - "MAX_DIST_CLAMP_TO_SEEN_SPEED": 100, - "NIGHT_VISION_ON": 100, - "NIGHT_VISION_OFF": 110, - "NIGHT_VISION_DIST": 105, - "VISIBLE_ANG_LIGHT": 60, - "VISIBLE_ANG_NIGHTVISION": 120 - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "FLASH_MODIF_IS_NIGHTVISION": 2 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 0, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE_SQRT": 0, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 0, - "CAN_LOOK_OUT_WHEN_HOLDING": true, - "SIT_DOWN_WHEN_HOLDING": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 9325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true, - "CAN_CHECK_MAGAZINE": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "DISPERSION_COEF_GUN": 40.6, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "PANIC_SIT_WEIGHT_PEACE": 60, - "CAN_EXECUTE_REQUESTS": true, - "CAN_TAKE_ITEMS": false, - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 20, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "KOJANIY_START_SUPPERS_SHOOTS_SEC": 30, - "KOJANIY_START_NEXT_SUPPERS_SHOOTS_SEC": 90, - "KOJANIY_SAFE_ENEMIES": 1, - "KOJANIY_TAKE_CARE_ABOULT_ENEMY_DELTA": 2, - "KOJANIY_WANNA_GO_TO_CLOSEST_COVER": 15, - "GLUHAR_FOLLOWER_PATH_NAME": "Boss", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 45, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15, - "GLUHAR_SEC_TO_REINFORSMENTS": -1, - "GLUHAR_REINFORSMENTS_BY_EXIT": false, - "GLUHAR_REINFORSMENTS_BY_EVENT": false, - "GLUHAR_REINFORSMENTS_BY_PLAYER_COME_TO_ZONE": false, - "GLUHAR_FOLLOWERS_TO_REINFORSMENTS": -1, - "GLUHAR_FOLLOWERS_SECURITY": 3, - "GLUHAR_FOLLOWERS_ASSAULT": 2, - "GLUHAR_FOLLOWERS_SCOUT": 2, - "GLUHAR_FOLLOWERS_SNIPE": 0, - "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, - "EFFECT_PAINKILLER": true, - "ALLOW_REQUEST_SELF": false - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECLC_Y_DIST": 1.2, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.35, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.002, - "Y_BOTTOM_OFFSET_COEF": 0.002, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.2, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true, - "LOOK_THROUGH_GRASS": false, - "LOOK_THROUGH_GRASS_DIST_METERS": 0, - "SEC_REPEATED_SEEN": 10, - "DIST_SQRT_REPEATED_SEEN": 225, - "DIST_REPEATED_SEEN": 15, - "COEF_REPEATED_SEEN": 1E-05, - "MAX_DIST_CLAMP_TO_SEEN_SPEED": 100, - "NIGHT_VISION_ON": 100, - "NIGHT_VISION_OFF": 110, - "NIGHT_VISION_DIST": 105, - "VISIBLE_ANG_LIGHT": 60, - "VISIBLE_ANG_NIGHTVISION": 120 - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "FLASH_MODIF_IS_NIGHTVISION": 2 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 0, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE_SQRT": 0, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 0, - "CAN_LOOK_OUT_WHEN_HOLDING": true, - "SIT_DOWN_WHEN_HOLDING": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 9325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true, - "CAN_CHECK_MAGAZINE": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "DISPERSION_COEF_GUN": 40.6, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "PANIC_SIT_WEIGHT_PEACE": 60, - "CAN_EXECUTE_REQUESTS": true, - "CAN_TAKE_ITEMS": false, - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 20, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ], - "DEFAULT_ENEMY_USEC": true, - "DEFAULT_ENEMY_BEAR": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "KOJANIY_START_SUPPERS_SHOOTS_SEC": 30, - "KOJANIY_START_NEXT_SUPPERS_SHOOTS_SEC": 90, - "KOJANIY_SAFE_ENEMIES": 1, - "KOJANIY_TAKE_CARE_ABOULT_ENEMY_DELTA": 2, - "KOJANIY_WANNA_GO_TO_CLOSEST_COVER": 15, - "GLUHAR_FOLLOWER_PATH_NAME": "Boss", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 45, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15, - "GLUHAR_SEC_TO_REINFORSMENTS": -1, - "GLUHAR_REINFORSMENTS_BY_EXIT": false, - "GLUHAR_REINFORSMENTS_BY_EVENT": false, - "GLUHAR_REINFORSMENTS_BY_PLAYER_COME_TO_ZONE": false, - "GLUHAR_FOLLOWERS_TO_REINFORSMENTS": -1, - "GLUHAR_FOLLOWERS_SECURITY": 3, - "GLUHAR_FOLLOWERS_ASSAULT": 2, - "GLUHAR_FOLLOWERS_SCOUT": 2, - "GLUHAR_FOLLOWERS_SNIPE": 0, - "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, - "EFFECT_PAINKILLER": true, - "ALLOW_REQUEST_SELF": false - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 97, - "Earpiece": 0, - "FaceCover": 0, - "ArmorVest": 0, - "Eyewear": 34, - "ArmBand": 0, - "TacticalVest": 100, - "Backpack": 0, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 83, - "Holster": 100, - "Scabbard": 0, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_magazine": 100, - "mod_sight_rear": 58, - "mod_mount": 0, - "mod_scope": 76, - "mod_tactical_000": 0, - "mod_tactical_001": 49, - "mod_tactical_002": 29, - "mod_tactical_003": 0, - "mod_muzzle": 70, - "mod_reciever": 100, - "mod_stock": 60, - "mod_charge": 50, - "mod_mount_004": 0, - "mod_mount_000": 20, - "mod_foregrip": 68, - "mod_stock_000": 100, - "mod_tactical": 66, - "mod_flashlight": 100, - "mod_mount_001": 0, - "mod_sight_front": 100, - "mod_handguard": 100 - }, - "equipmentMods": { - "front_plate": 100, - "back_plate": 100, - "left_side_plate": 0, - "right_side_plate": 0, - "mod_nvg": 73, - "mod_equipment_000": 0, - "mod_mount": 0, - "mod_equipment_001": 0, - "mod_equipment_002": 0 - } - }, - "generation": { - "items": { - "specialItems": { - "weights": { - "0": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 2, - "1": 1, - "2": 1 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 5, - "1": 1 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, - "backpackLoot": { - "weights": { - "0": 1, - "1": 1, - "2": 4, - "3": 5, - "4": 2, - "5": 1, - "6": 1, - "7": 1 - }, - "whitelist": [] - }, - "pocketLoot": { - "weights": { - "0": 1, - "1": 7, - "2": 4, - "3": 1, - "4": 1 - }, - "whitelist": [] - }, - "vestLoot": { - "weights": { - "0": 1, - "1": 3, - "2": 4, - "3": 1, - "4": 1 - }, - "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 5, - "3": 6, - "4": 4 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 2, - "2": 3, - "3": 3, - "4": 1, - "5": 1 - }, - "whitelist": [] + "Strength": { + "max": 5100, + "min": 5100 } } } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/bosskilla.json b/Libraries/SptAssets/Assets/database/bots/types/bosskilla.json index b74469cb..486ff078 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bosskilla.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bosskilla.json @@ -160,14 +160,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -181,7 +181,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -644,14 +644,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -665,7 +665,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1128,14 +1128,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1149,7 +1149,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1612,14 +1612,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1633,7 +1633,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bossknight.json b/Libraries/SptAssets/Assets/database/bots/types/bossknight.json index 6e3b205e..6c10a7b0 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bossknight.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bossknight.json @@ -160,14 +160,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -181,7 +181,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -682,14 +682,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -703,7 +703,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1204,14 +1204,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1225,7 +1225,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1726,14 +1726,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1747,7 +1747,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bosskojaniy.json b/Libraries/SptAssets/Assets/database/bots/types/bosskojaniy.json index 4c035cf3..bf952fca 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bosskojaniy.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bosskojaniy.json @@ -163,14 +163,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -184,7 +184,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -662,14 +662,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -683,7 +683,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1161,14 +1161,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1182,7 +1182,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1660,14 +1660,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1681,7 +1681,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bosskolontay.json b/Libraries/SptAssets/Assets/database/bots/types/bosskolontay.json index 2f632be5..611c62f6 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bosskolontay.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bosskolontay.json @@ -192,14 +192,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -213,7 +213,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -370,7 +370,7 @@ "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, "CAN_USE_STRIBOSCOPE": 100, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -385,7 +385,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LOOK_THROUGH_GRASS_DIST_METERS": 0, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, @@ -754,14 +754,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -775,7 +775,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -932,7 +932,7 @@ "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, "CAN_USE_STRIBOSCOPE": 100, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -947,7 +947,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LOOK_THROUGH_GRASS_DIST_METERS": 0, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, @@ -1316,14 +1316,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1337,7 +1337,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1494,7 +1494,7 @@ "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, "CAN_USE_STRIBOSCOPE": 100, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -1509,7 +1509,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LOOK_THROUGH_GRASS_DIST_METERS": 0, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, @@ -1878,14 +1878,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1899,7 +1899,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2056,7 +2056,7 @@ "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, "CAN_USE_STRIBOSCOPE": 100, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -2071,7 +2071,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LOOK_THROUGH_GRASS_DIST_METERS": 0, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bosspartisan.json b/Libraries/SptAssets/Assets/database/bots/types/bosspartisan.json index f1ec02fb..be756e38 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bosspartisan.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bosspartisan.json @@ -184,14 +184,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -205,7 +205,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -363,7 +363,7 @@ "Look": { "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -754,14 +754,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -775,7 +775,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -933,7 +933,7 @@ "Look": { "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -1324,14 +1324,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1345,7 +1345,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1503,7 +1503,7 @@ "Look": { "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, @@ -1894,14 +1894,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1915,7 +1915,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2073,7 +2073,7 @@ "Look": { "BODY_DELTA_TIME_SEARCH_SEC": 1.7, "CAN_LOOK_TO_WALL": true, - "COEF_REPEATED_SEEN": 1e-05, + "COEF_REPEATED_SEEN": 5, "COME_TO_BODY_DIST": 1.2, "CloseDeltaTimeSec": 0.1, "DIST_CHECK_WALL": 20, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bosssanitar.json b/Libraries/SptAssets/Assets/database/bots/types/bosssanitar.json index 2434d825..67816c7b 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bosssanitar.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bosssanitar.json @@ -157,14 +157,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -178,7 +178,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -668,14 +668,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -689,7 +689,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1179,14 +1179,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1200,7 +1200,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1690,14 +1690,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1711,7 +1711,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bosstagilla.json b/Libraries/SptAssets/Assets/database/bots/types/bosstagilla.json index 44c9017f..edc3eec8 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bosstagilla.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bosstagilla.json @@ -168,14 +168,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -189,7 +189,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -676,14 +676,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -697,7 +697,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1184,14 +1184,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1205,7 +1205,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1692,14 +1692,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1713,7 +1713,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/bosszryachiy.json b/Libraries/SptAssets/Assets/database/bots/types/bosszryachiy.json index 51db5522..a8e0cfff 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/bosszryachiy.json +++ b/Libraries/SptAssets/Assets/database/bots/types/bosszryachiy.json @@ -149,14 +149,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -170,7 +170,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 4.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -334,6 +334,8 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_PERIOD_BY_HIT": 10, "LightOnVisionDistance": 145, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.9, @@ -642,14 +644,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -663,7 +665,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 4.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -827,6 +829,8 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_PERIOD_BY_HIT": 10, "LightOnVisionDistance": 145, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.9, @@ -1135,14 +1139,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1156,7 +1160,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 4.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1320,6 +1324,8 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_PERIOD_BY_HIT": 10, "LightOnVisionDistance": 145, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.9, @@ -1628,14 +1634,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1649,7 +1655,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 4.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1813,6 +1819,8 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_PERIOD_BY_HIT": 10, "LightOnVisionDistance": 145, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.9, diff --git a/Libraries/SptAssets/Assets/database/bots/types/cursedassault.json b/Libraries/SptAssets/Assets/database/bots/types/cursedassault.json index 517a7767..d8de1beb 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/cursedassault.json +++ b/Libraries/SptAssets/Assets/database/bots/types/cursedassault.json @@ -120,8 +120,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 30, "BASE_HIT_AFFECTION_DELAY_SEC": 1.77, - "BASE_HIT_AFFECTION_MAX_ANG": 28, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 36, + "BASE_HIT_AFFECTION_MIN_ANG": 20, "BASE_SHIEF": 1, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.7, @@ -208,14 +208,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -229,7 +229,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -393,6 +393,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -578,6 +579,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, @@ -613,8 +615,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 30, "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 30, + "BASE_HIT_AFFECTION_MIN_ANG": 20, "BASE_SHIEF": 0.5, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.8, @@ -707,14 +709,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -728,7 +730,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -892,6 +894,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -1077,6 +1080,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, @@ -1112,8 +1116,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 10, "BASE_HIT_AFFECTION_DELAY_SEC": 0.17, - "BASE_HIT_AFFECTION_MAX_ANG": 8, - "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_HIT_AFFECTION_MAX_ANG": 12, + "BASE_HIT_AFFECTION_MIN_ANG": 9, "BASE_SHIEF": 0.05, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.7, @@ -1205,14 +1209,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1226,7 +1230,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.01, + "GainSightCoef": 20, "HearingSense": 3.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1389,6 +1393,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.8, "MAX_VISION_GRASS_METERS_FLARE": 8, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -1566,6 +1571,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, @@ -1601,8 +1607,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 30, "BASE_HIT_AFFECTION_DELAY_SEC": 1.17, - "BASE_HIT_AFFECTION_MAX_ANG": 24, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 32, + "BASE_HIT_AFFECTION_MIN_ANG": 19, "BASE_SHIEF": 0.8, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.8, @@ -1695,14 +1701,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1716,7 +1722,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1880,6 +1886,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -2069,6 +2076,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, diff --git a/Libraries/SptAssets/Assets/database/bots/types/exusec.json b/Libraries/SptAssets/Assets/database/bots/types/exusec.json index cc69f58d..52a612b0 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/exusec.json +++ b/Libraries/SptAssets/Assets/database/bots/types/exusec.json @@ -205,14 +205,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -226,7 +226,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 10.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -570,6 +570,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -698,14 +699,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -719,7 +720,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 10.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1063,6 +1064,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1191,14 +1193,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1212,7 +1214,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 10.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1556,6 +1558,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1684,14 +1687,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1705,7 +1708,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 10.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2049,6 +2052,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerbigpipe.json b/Libraries/SptAssets/Assets/database/bots/types/followerbigpipe.json index 336aac2a..1b0a3dfd 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerbigpipe.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerbigpipe.json @@ -158,14 +158,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -179,7 +179,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -653,14 +653,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -674,7 +674,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1148,14 +1148,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1169,7 +1169,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1643,14 +1643,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1664,7 +1664,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerbirdeye.json b/Libraries/SptAssets/Assets/database/bots/types/followerbirdeye.json index 7b865c40..7cb6d7bb 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerbirdeye.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerbirdeye.json @@ -164,14 +164,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -185,7 +185,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -666,14 +666,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -687,7 +687,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1168,14 +1168,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1189,7 +1189,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1670,14 +1670,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1691,7 +1691,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerboar.json b/Libraries/SptAssets/Assets/database/bots/types/followerboar.json index f7a0d902..80582364 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerboar.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerboar.json @@ -214,14 +214,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -235,7 +235,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -588,6 +588,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -735,14 +736,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -756,7 +757,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1109,6 +1110,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1256,14 +1258,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1277,7 +1279,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1630,6 +1632,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1777,14 +1780,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1798,7 +1801,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2151,6 +2154,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerboarclose1.json b/Libraries/SptAssets/Assets/database/bots/types/followerboarclose1.json index bdb1da9a..e5a609c5 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerboarclose1.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerboarclose1.json @@ -188,14 +188,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -209,7 +209,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -562,6 +562,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -709,14 +710,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -730,7 +731,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1083,6 +1084,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1230,14 +1232,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1251,7 +1253,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1604,6 +1606,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1751,14 +1754,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1772,7 +1775,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2125,6 +2128,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerboarclose2.json b/Libraries/SptAssets/Assets/database/bots/types/followerboarclose2.json index c8bb32bd..fa4aec15 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerboarclose2.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerboarclose2.json @@ -188,14 +188,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -209,7 +209,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -562,6 +562,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -709,14 +710,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -730,7 +731,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1083,6 +1084,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1230,14 +1232,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1251,7 +1253,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1604,6 +1606,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1751,14 +1754,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1772,7 +1775,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2125,6 +2128,7 @@ "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerbully.json b/Libraries/SptAssets/Assets/database/bots/types/followerbully.json index 18fa6bd4..f426a845 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerbully.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerbully.json @@ -173,14 +173,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -194,7 +194,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -535,6 +535,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -657,14 +658,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -678,7 +679,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1019,6 +1020,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1141,14 +1143,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1162,7 +1164,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1503,6 +1505,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1625,14 +1628,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1646,7 +1649,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1987,6 +1990,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followergluharassault.json b/Libraries/SptAssets/Assets/database/bots/types/followergluharassault.json index 4d1dccaa..b915965a 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followergluharassault.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followergluharassault.json @@ -2,1246 +2,2196 @@ "appearance": { "body": { "5d28ae2986f7742926686185": 1394, - "5d5e7e5d86f774279b4f4b01": 1387, - "5d5e7e4a86f774279a21cc0d": 1425 + "5d5e7e4a86f774279a21cc0d": 1425, + "5d5e7e5d86f774279b4f4b01": 1387 }, "feet": { "5d28af3486f774292364a6e7": 233, - "5d5e7f8986f7742798716582": 236, - "5d28af5386f774292364a6e8": 232 + "5d28af5386f774292364a6e8": 232, + "5d5e7f8986f7742798716582": 236 }, "hands": { "5cc2e68f14c02e28b47de290": 1 }, "head": { - "5d28afe786f774292668618d": 8492, - "5f68c4c217d579077152a252": 8460, "5cc2e4d014c02e000d0115f8": 8283, + "5cde9ff17d6c8b0474535daa": 8355, + "5d28afe786f774292668618d": 8492, "5f68c4a7c174a17c0f4c8945": 8482, - "5cde9ff17d6c8b0474535daa": 8355 + "5f68c4c217d579077152a252": 8460 }, "voice": { - "Scav_4": 7118, - "Scav_6": 7059, "Scav_1": 7072, - "Scav_5": 7000, + "Scav_2": 6975, "Scav_3": 6848, - "Scav_2": 6975 + "Scav_4": 7118, + "Scav_5": 7000, + "Scav_6": 7059 + } + }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 85, + "Backpack": 0, + "Earpiece": 25, + "Eyewear": 20, + "FaceCover": 27, + "FirstPrimaryWeapon": 100, + "Headwear": 90, + "Holster": 0, + "Pockets": 100, + "Scabbard": 0, + "SecondPrimaryWeapon": 93, + "SecuredContainer": 100, + "TacticalVest": 100 + }, + "equipmentMods": { + "back_plate": 79, + "front_plate": 100, + "left_side_plate": 10, + "mod_equipment": 20, + "mod_equipment_000": 79, + "mod_mount": 0, + "mod_nvg": 21, + "right_side_plate": 10 + }, + "weaponMods": { + "mod_charge": 0, + "mod_charge_001": 0, + "mod_foregrip": 0, + "mod_launcher": 0, + "mod_magazine": 100, + "mod_mount": 16, + "mod_mount_000": 47, + "mod_mount_001": 71, + "mod_mount_002": 0, + "mod_mount_004": 100, + "mod_muzzle": 53, + "mod_reciever": 100, + "mod_scope": 29, + "mod_sight_front": 10, + "mod_sight_rear": 47, + "mod_stock": 100, + "mod_stock_000": 100, + "mod_stock_001": 100, + "mod_stock_akms": 100, + "mod_tactical": 86, + "mod_tactical_000": 44, + "mod_tactical_001": 100, + "mod_tactical_002": 0, + "mod_tactical_003": 0 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 45, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Attack", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 30, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 45, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Attack", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 30, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 45, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Attack", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 30, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 45, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Attack", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 30, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } } }, "experience": { + "aggressorBonus": { + "normal": 0.02 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": 250, - "max": 250 + "max": 250, + "min": 250 } }, "standingForKill": { "normal": -0.05 }, - "aggressorBonus": { - "normal": 0.02 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 45, - "max": 45 - }, - "Chest": { - "min": 150, - "max": 150 - }, - "Stomach": { - "min": 125, - "max": 125 - }, - "LeftArm": { - "min": 100, - "max": 100 - }, - "RightArm": { - "min": 100, - "max": 100 - }, - "LeftLeg": { - "min": 120, - "max": 120 - }, - "RightLeg": { - "min": 120, - "max": 120 - } - } - ] - }, - "skills": { - "Common": {} - }, - "inventory": { - "equipment": { - "Headwear": { - "5b40e2bc5acfc40016388216": 5312, - "65719f0775149d62ce0a670b": 3924, - "603618feffd42c541047f771": 1878, - "572b7fa124597762b472f9d2": 1581, - "5aa7cfc0e5b5b00015693143": 5235, - "5aa7e4a4e5b5b000137b76f2": 2612, - "5645bc214bdc2d363b8b4571": 2340, - "5aa7e454e5b5b0214e506fa2": 2890, - "5a7c4850e899ef00150be885": 8279, - "59e770f986f7742cbe3164ef": 1820, - "5ca20ee186f774799474abc2": 278, - "5f60e7788adaa7100c3adb49": 722, - "5c091a4e0db834001d5addc8": 436, - "5aa7e276e5b5b000171d0647": 294, - "5f60e6403b85f6263c14558c": 572 - }, - "Earpiece": { - "6033fa48ffd42c541047f728": 1 - }, - "FaceCover": { - "5b432c305acfc40019478128": 1739, - "5ab8f4ff86f77431c60d91ba": 2968, - "5bd073a586f7747e6f135799": 1049 - }, - "ArmorVest": { - "5c0e5bab86f77461f55ed1f3": 6936, - "64be79e2bf8412471d0d9bcc": 6867, - "5c0e57ba86f7747fa141986d": 6775, - "5c0e53c886f7747fa54205c7": 6904, - "5c0e51be86f774598e797894": 6975, - "5ca21c6986f77479963115a7": 180, - "5ab8e79e86f7742d8b372e78": 591, - "5b44d0de86f774503d30cba8": 312, - "545cdb794bdc2d3a198b456a": 187, - "5ca2151486f774244a3b8d30": 183, - "5b44cf1486f77431723e3d05": 187 - }, - "Eyewear": { - "5b432be65acfc433000ed01f": 2247, - "61c18d83b00456371a66814b": 1840, - "603409c80ca681766b6a0fb2": 2322, - "59e770b986f7742cbd762754": 2310 - }, - "ArmBand": {}, - "TacticalVest": { - "60a621c49c197e4e8c4455e6": 1851, - "61bcc89aef0f505f0c6cd0fc": 1803, - "59e7643b86f7742cbf2c109a": 4850, - "5929a2a086f7744f4b234d43": 4755, - "5ab8dab586f77441cd04f2a2": 3085, - "5b44c8ea86f7742d1627baf1": 3059, - "5c0e6a1586f77404597b4965": 2186, - "61bc85697113f767765c7fe7": 1858, - "544a5caa4bdc2d1a388b4568": 365, - "5d5d85c586f774279a21cbdb": 2984, - "5ca20abf86f77418567a43f2": 4780, - "592c2d1a86f7746dbe2af32a": 4758, - "6040dd4ddcf9592f401632d2": 1843, - "5e4abfed86f77406a2713cf7": 2248, - "5c0e3eb886f7742015526062": 1497, - "60a3c70cde5f453f634816a3": 150 - }, - "Backpack": {}, - "FirstPrimaryWeapon": { - "5ac66d725acfc43b321d4b60": 6641, - "5ac4cd105acfc40016339859": 6638, - "5a0ec13bfcdbcb00165aa685": 6485, - "5beed0f50db834001c062b12": 1894, - "59ff346386f77477562ff5e2": 6629, - "59d6088586f774275f37482f": 6348, - "5aafa857e5b5b00018480968": 2373, - "5447a9cd4bdc2dbd208b4567": 4072, - "57c44b372459772d2b39b8ce": 558, - "6499849fc93611967b034949": 434 - }, - "SecondPrimaryWeapon": { - "57d14d2524597714373db789": 1305, - "56dee2bdd2720bc8328b4567": 1341, - "54491c4f4bdc2db1078b4568": 1292 - }, - "Holster": {}, - "Scabbard": {}, - "Pockets": { - "557ffd194bdc2d28148b457f": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - } - }, - "Ammo": { - "Caliber762x39": { - "59e4cf5286f7741778269d8a": 1 - }, - "Caliber9x18PM": { - "57372140245977611f70ee91": 1 - }, - "Caliber12g": { - "560d5e524bdc2d25448b4571": 1 - }, - "Caliber545x39": { - "56dff061d2720bb5668b4567": 1 - }, - "Caliber762x51": { - "5a608bf24f39f98ffc77720e": 35, - "58dd3ad986f77403051cba8f": 202 - }, - "Caliber556x45NATO": { - "59e6906286f7746c9f75e847": 1 - }, - "Caliber9x39": { - "57a0dfb82459774d3078b56c": 1 - } - }, - "mods": { - "5ac66d725acfc43b321d4b60": { - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_muzzle": [ - "5ac72e895acfc43b321d4bd5" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac733a45acfc400192630e2" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ], - "mod_mount_000": [ - "591ee00d86f774592f7b841e", - "5cf638cbd7f00c06595bc936" - ], - "mod_magazine": [ - "5ac66bea5acfc43b321d4aec" - ] - }, - "59c6633186f7740cf0493bb9": { - "mod_handguard": [ - "5648b1504bdc2d9d488b4584" - ] - }, - "591ee00d86f774592f7b841e": { - "mod_tactical": [ - "560d657b4bdc2da74d8b4572" - ] - }, - "57d14d2524597714373db789": { - "mod_pistol_grip": [ - "57d152ec245977144076ccdf" - ], - "mod_mount": [ - "57ee59b42459771c7b045da5" - ], - "mod_magazine": [ - "57d1519e24597714373db79d" - ] - }, - "57ee59b42459771c7b045da5": { - "mod_scope": [ - "57ae0171245977343c27bfcf" - ], - "mod_tactical": [ - "5a5f1ce64f39f90b401987bc" - ] - }, - "5b40e2bc5acfc40016388216": { - "Helmet_top": [ - "657112234269e9a568089eac" - ], - "Helmet_back": [ - "657112a4818110db4600aa66" - ], - "Helmet_ears": [ - "657112ce22996eaf110881fb" - ] - }, - "5c0e5bab86f77461f55ed1f3": { - "Front_plate": [ - "654a4dea7c17dec2f50cc86a" - ], - "Soft_armor_front": [ - "6571b27a6d84a2b8b6007f92" - ], - "Soft_armor_back": [ - "6571baa74cb80d995d0a1490" - ], - "Soft_armor_left": [ - "6571baac6d84a2b8b6007fa3" - ], - "soft_armor_right": [ - "6571bab0f41985531a038091" - ], - "Collar": [ - "6571babb4076795e5e07383f" - ], - "Groin": [ - "6571bac34076795e5e073843" - ], - "Groin_back": [ - "6571babf4cb80d995d0a1494" - ] - }, - "56dee2bdd2720bc8328b4567": { - "mod_barrel": [ - "56deec93d2720bec348b4568" - ], - "mod_handguard": [ - "56deed6ed2720b4c698b4583" - ], - "mod_stock": [ - "56083be64bdc2d20478b456f" - ], - "mod_mount_000": [ - "55d48ebc4bdc2d8c2f8b456c" - ], - "mod_magazine": [ - "56deeefcd2720bc8328b4568" - ] - }, - "55d48ebc4bdc2d8c2f8b456c": { - "mod_tactical_001": [ - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0" - ] - }, - "61bcc89aef0f505f0c6cd0fc": { - "Front_plate": [ - "656fb21fa0dce000a2020f7c" - ], - "Back_plate": [ - "656fb21fa0dce000a2020f7c" - ], - "Soft_armor_front": [ - "6572eb0e55beba16bc04079f" - ], - "Soft_armor_back": [ - "6572eb1b04ee6483ef039882" - ], - "Soft_armor_left": [ - "6572eb3004ee6483ef039886" - ], - "soft_armor_right": [ - "6572eb3b04ee6483ef03988a" - ], - "Groin": [ - "6572eb865b5eac12f10a03ee" - ] - }, - "65719f0775149d62ce0a670b": { - "Helmet_top": [ - "657fa0fcd4caf976440afe3e" - ], - "Helmet_back": [ - "657fa168e9433140ad0baf8e" - ], - "Helmet_ears": [ - "657fa186d4caf976440afe42" - ], - "mod_equipment_000": [ - "65719f9ef392ad76c50a2ec8" - ] - }, - "64be79e2bf8412471d0d9bcc": { - "Soft_armor_front": [ - "6570495b45d573133d0d6adb" - ], - "Soft_armor_back": [ - "657049d23425b19bbc0502f0" - ] - }, - "5ac4cd105acfc40016339859": { - "mod_muzzle": [ - "5ac7655e5acfc40016339a19" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac72e475acfc400180ae6fe" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ], - "mod_gas_block": [ - "5cf656f2d7f00c06585fb6eb" - ], - "mod_magazine": [ - "5aaa4194e5b5b055d06310a5" - ], - "mod_mount_000": [ - "5cf638cbd7f00c06595bc936" - ] - }, - "5cf656f2d7f00c06585fb6eb": { - "mod_mount_001": [ - "59e0be5d86f7742d48765bd2", - "59e0bdb186f774156f04ce82" - ] - }, - "59e0be5d86f7742d48765bd2": { - "mod_tactical": [ - "5c5952732e2216398b5abda2" - ] - }, - "54491c4f4bdc2db1078b4568": { - "mod_barrel": [ - "55d4491a4bdc2d882f8b456e" - ], - "mod_handguard": [ - "55d45d3f4bdc2d972f8b456c" - ], - "mod_stock": [ - "56083cba4bdc2de22e8b456f" - ], - "mod_mount_000": [ - "55d48ebc4bdc2d8c2f8b456c" - ], - "mod_magazine": [ - "55d485804bdc2d8c2f8b456b" - ] - }, - "5a0ec13bfcdbcb00165aa685": { - "mod_muzzle": [ - "59d64fc686f774171b243fe2" - ], - "mod_pistol_grip": [ - "59e62cc886f77440d40b52a1" - ], - "mod_reciever": [ - "59d6507c86f7741b846413a2" - ], - "mod_sight_rear": [ - "59d650cf86f7741b846413a4" - ], - "mod_stock": [ - "59d6514b86f774171a068a08" - ], - "mod_gas_block": [ - "5d4aab30a4b9365435358c55" - ], - "mod_magazine": [ - "59d6272486f77466146386ff" - ] - }, - "5d4aab30a4b9365435358c55": { - "mod_mount_001": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82" - ] - }, - "5a9d6d00a2750c5c985b5305": { - "mod_tactical": [ - "5b3a337e5acfc4704b4a19a0" - ] - }, - "5aa7cfc0e5b5b00015693143": { - "Helmet_top": [ - "657baaf0b7e9ca9a02045c02" - ], - "Helmet_back": [ - "657bab6ec6f689d3a205b85f" - ], - "Helmet_ears": [ - "657babc6f58ba5a6250107a2" - ], - "mod_nvg": [ - "5a16b8a9fcdbcb00165aa6ca" - ] - }, - "5c0e57ba86f7747fa141986d": { - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Back_plate": [ - "657b22485f444d6dff0c6c2f" - ], - "Soft_armor_front": [ - "65707fc348c7a887f2010432" - ], - "Soft_armor_back": [ - "6570800612755ae0d907acf8" - ], - "Soft_armor_left": [ - "65708070f65e2491bf00972c" - ], - "soft_armor_right": [ - "657080a212755ae0d907ad04" - ], - "Collar": [ - "657080ca12755ae0d907ad5e" - ], - "Groin": [ - "65708122f65e2491bf009755" - ], - "Groin_back": [ - "65708165696fe382cf073255" - ] - }, - "5aa7e4a4e5b5b000137b76f2": { - "Helmet_top": [ - "657f925dada5fadd1f07a57a" - ], - "Helmet_back": [ - "657f92acada5fadd1f07a57e" - ], - "Helmet_ears": [ - "657f92e7f4c82973640b2354" - ], - "mod_equipment": [ - "5aa7e3abe5b5b000171d064d" - ] - }, - "5c0e53c886f7747fa54205c7": { - "front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "back_plate": [ - "656efd66034e8e01c407f35c" - ], - "soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ] - }, - "5645bc214bdc2d363b8b4571": { - "Helmet_top": [ - "657bae18b7e9ca9a02045c0a" - ], - "Helmet_back": [ - "657baeaacfcf63c951052db3" - ], - "Helmet_ears": [ - "657baecbc6f689d3a205b863" - ], - "mod_equipment": [ - "5b46238386f7741a693bcf9c" - ] - }, - "5c0e51be86f774598e797894": { - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Back_plate": [ - "656efd66034e8e01c407f35c" - ], - "Soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "Soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "Soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ] - }, - "5aa7e454e5b5b0214e506fa2": { - "Helmet_top": [ - "657f925dada5fadd1f07a57a" - ], - "Helmet_back": [ - "657f92acada5fadd1f07a57e" - ], - "Helmet_ears": [ - "657f92e7f4c82973640b2354" - ], - "mod_equipment": [ - "5aa7e3abe5b5b000171d064d" - ] - }, - "5beed0f50db834001c062b12": { - "mod_pistol_grip": [ - "5beec8ea0db834001a6f9dbf" - ], - "mod_stock_001": [ - "5beec8b20db834001961942a" - ], - "mod_barrel": [ - "5beec1bd0db834001e6006f3" - ], - "mod_handguard": [ - "5beec3e30db8340019619424" - ], - "mod_reciever": [ - "5beec91a0db834001961942d" - ], - "mod_magazine": [ - "5bed625c0db834001c062946" - ] - }, - "5beec8b20db834001961942a": { - "mod_stock": [ - "5beec8c20db834001d2c465c" - ] - }, - "5beec1bd0db834001e6006f3": { - "mod_muzzle": [ - "5beec3420db834001b095429" - ] - }, - "5beec3e30db8340019619424": { - "mod_mount_001": [ - "5beecbb80db834001d2c465e" - ] - }, - "5beecbb80db834001d2c465e": { - "mod_tactical_000": [ - "5a5f1ce64f39f90b401987bc" - ] - }, - "5beec91a0db834001961942d": { - "mod_scope": [ - "5c0505e00db834001b735073", - "591c4efa86f7741030027726" - ] - }, - "59ff346386f77477562ff5e2": { - "mod_muzzle": [ - "59d64fc686f774171b243fe2" - ], - "mod_pistol_grip_akms": [ - "5a0071d486f77404e23a12b2" - ], - "mod_reciever": [ - "59d6507c86f7741b846413a2" - ], - "mod_sight_rear": [ - "59d650cf86f7741b846413a4" - ], - "mod_stock_akms": [ - "59ff3b6a86f77477562ff5ed" - ], - "mod_gas_block": [ - "5d4aab30a4b9365435358c55" - ], - "mod_magazine": [ - "59d6272486f77466146386ff" - ] - }, - "59e0bdb186f774156f04ce82": { - "mod_tactical": [ - "560d657b4bdc2da74d8b4572", - "5a5f1ce64f39f90b401987bc" - ] - }, - "59d6088586f774275f37482f": { - "mod_muzzle": [ - "59d64fc686f774171b243fe2" - ], - "mod_pistol_grip": [ - "59e62cc886f77440d40b52a1" - ], - "mod_reciever": [ - "59d6507c86f7741b846413a2" - ], - "mod_sight_rear": [ - "59d650cf86f7741b846413a4" - ], - "mod_stock": [ - "59d6514b86f774171a068a08" - ], - "mod_gas_block": [ - "5cf656f2d7f00c06585fb6eb" - ], - "mod_magazine": [ - "59d6272486f77466146386ff" - ] - }, - "61bc85697113f767765c7fe7": { - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_front": [ - "6572fc809a866b80ab07eb59" - ], - "Soft_armor_back": [ - "6572fc8c9a866b80ab07eb5d" - ], - "Soft_armor_left": [ - "6572fc989a866b80ab07eb61" - ], - "soft_armor_right": [ - "6572fca39a866b80ab07eb65" - ] - }, - "5a7c4850e899ef00150be885": { - "Helmet_top": [ - "657baaf0b7e9ca9a02045c02" - ], - "Helmet_back": [ - "657bab6ec6f689d3a205b85f" - ], - "Helmet_ears": [ - "657babc6f58ba5a6250107a2" - ], - "mod_nvg": [ - "5a16b8a9fcdbcb00165aa6ca" - ] - }, - "591c4efa86f7741030027726": { - "mod_tactical": [ - "591c4e1186f77410354b316e" - ] - }, - "544a5caa4bdc2d1a388b4568": { - "Front_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Back_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Soft_armor_front": [ - "6570e83223c1f638ef0b0ede" - ], - "Soft_armor_back": [ - "6570e87c23c1f638ef0b0ee2" - ], - "Groin": [ - "6570e90b3a5689d85f08db97" - ] - }, - "5aafa857e5b5b00018480968": { - "mod_barrel": [ - "5aaf9d53e5b5b00015042a52" - ], - "mod_sight_rear": [ - "5abcbb20d8ce87001773e258" - ], - "mod_stock": [ - "5addbf175acfc408fb13965b" - ], - "mod_magazine": [ - "5addcce35acfc4001a5fc635" - ] - }, - "5aaf9d53e5b5b00015042a52": { - "mod_muzzle": [ - "5aafa1c2e5b5b00015042a56" - ] - }, - "5aafa1c2e5b5b00015042a56": { - "mod_sight_front": [ - "5aafa49ae5b5b00015042a58" - ] - }, - "5addbf175acfc408fb13965b": { - "mod_tactical": [ - "5b07dd285acfc4001754240d" - ] - }, - "5447a9cd4bdc2dbd208b4567": { - "mod_pistol_grip": [ - "55d4b9964bdc2d1d4e8b456e" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ], - "mod_charge": [ - "55d44fd14bdc2d962f8b456e" - ], - "mod_reciever": [ - "55d355e64bdc2d962f8b4569" - ], - "mod_magazine": [ - "544a37c44bdc2d25388b4567" - ] - }, - "5649be884bdc2d79388b4577": { - "mod_stock_000": [ - "55d4ae6c4bdc2d8b2f8b456e" - ] - }, - "55d355e64bdc2d962f8b4569": { - "mod_barrel": [ - "55d3632e4bdc2d972f8b4569" - ], - "mod_handguard": [ - "5c78f2792e221600106f4683" - ] - }, - "55d3632e4bdc2d972f8b4569": { - "mod_gas_block": [ - "5ae30e795acfc408fb139a0b" - ] - }, - "5c78f2792e221600106f4683": { - "mod_mount_001": [ - "5b7be47f5acfc400170e2dd2" - ] - }, - "5b7be47f5acfc400170e2dd2": { - "mod_tactical": [ - "5b07dd285acfc4001754240d" - ] - }, - "57c44b372459772d2b39b8ce": { - "mod_muzzle": [ - "57c44dd02459772d2e0ae249" - ], - "mod_reciever": [ - "57c44f4f2459772d2c627113" - ], - "mod_magazine": [ - "57838f9f2459774a150289a0" - ], - "mod_pistol_grip": [ - "57c44fa82459772d2d75e415" - ], - "mod_stock": [ - "57c450252459772d28133253" - ], - "mod_handguard": [ - "651178336cad06c37c049eb4" - ], - "mod_mount_004": [ - "591ee00d86f774592f7b841e", - "5c61a40d2e2216001403158d" - ] - }, - "57c44dd02459772d2e0ae249": { - "mod_sight_rear": [ - "57c44e7b2459772d28133248" - ] - }, - "5a16b8a9fcdbcb00165aa6ca": { - "mod_nvg": [ - "5c0695860db834001b735461", - "5a16b93dfcdbcbcae6687261" - ] - }, - "5c0695860db834001b735461": { - "mod_nvg": [ - "5c0696830db834001d23f5da" - ] - }, - "6499849fc93611967b034949": { - "mod_gas_block": [ - "649ec107961514b22506b10c" - ], - "mod_pistol_grip": [ - "5beec8ea0db834001a6f9dbf" - ], - "mod_handguard": [ - "649ec127c93611967b034957" - ], - "mod_muzzle": [ - "649ec2af961514b22506b10f" - ], - "mod_stock_001": [ - "649ec87d8007560a9001ab36" - ], - "mod_reciever": [ - "649ec2f3961514b22506b111" - ], - "mod_magazine": [ - "5bed61680db834001d2c45ab" - ] - }, - "649ec127c93611967b034957": { - "mod_mount_001": [ - "5beecbb80db834001d2c465e" - ] - }, - "649ec87d8007560a9001ab36": { - "mod_stock": [ - "5beec8c20db834001d2c465c" - ] - }, - "649ec2f3961514b22506b111": { - "mod_scope": [ - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09" - ] - }, - "5ca20ee186f774799474abc2": { - "Helmet_top": [ - "657bbe73a1c61ee0c303632b" - ], - "Helmet_back": [ - "657bbed0aab96fccee08be96" - ], - "Helmet_ears": [ - "657bbefeb30eca9763051189" - ], - "mod_equipment": [ - "5ca2113f86f7740b2547e1d2" - ] - }, - "5c61a40d2e2216001403158d": { - "mod_scope": [ - "5c0505e00db834001b735073" - ] - }, - "5a16b93dfcdbcbcae6687261": { - "mod_nvg": [ - "57235b6f24597759bf5a30f1" - ] - }, - "5c0e3eb886f7742015526062": { - "Soft_armor_front": [ - "65764a4cd8537eb26a0355ee" - ], - "Soft_armor_back": [ - "65764bc22bc38ef78e076485" - ], - "Collar": [ - "65764c39526e320fbe035777" - ], - "Groin": [ - "65764c6b526e320fbe03577b" - ] - }, - "5ca21c6986f77479963115a7": { - "Front_plate": [ - "65573fa5655447403702a816" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Left_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Right_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Soft_armor_front": [ - "6575d9a79e27f4a85e08112d" - ], - "Soft_armor_back": [ - "6575d9b8945bf78edd04c427" - ], - "Soft_armor_left": [ - "6575d9c40546f8b1de093dee" - ], - "soft_armor_right": [ - "6575d9cf0546f8b1de093df2" - ], - "Collar": [ - "6575d9d8945bf78edd04c42b" - ], - "Shoulder_l": [ - "6575da07945bf78edd04c433" - ], - "Shoulder_r": [ - "6575da159e27f4a85e081131" - ], - "Groin": [ - "6575d9e7945bf78edd04c42f" - ], - "Groin_back": [ - "6575d9f816c2762fba00588d" - ] - }, - "5ab8e79e86f7742d8b372e78": { - "Front_plate": [ - "656f611f94b480b8a500c0db" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Soft_armor_front": [ - "65732688d9d89ff7ac0d9c4c" - ], - "Soft_armor_back": [ - "657326978c1cc6dcd9098b56" - ], - "Soft_armor_left": [ - "657326a28c1cc6dcd9098b5a" - ], - "soft_armor_right": [ - "657326b08c1cc6dcd9098b5e" - ], - "Collar": [ - "657326bc5d3a3129fb05f36b" - ] - }, - "5c091a4e0db834001d5addc8": { - "Helmet_top": [ - "6571133d22996eaf11088200" - ], - "Helmet_back": [ - "6571138e818110db4600aa71" - ], - "Helmet_ears": [ - "657112fa818110db4600aa6b" - ] - }, - "5b44d0de86f774503d30cba8": { - "Front_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Back_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Soft_armor_front": [ - "6575c342efc786cd9101a5e5" - ], - "Soft_armor_back": [ - "6575c34bc6700bd6b40e8a84" - ], - "Soft_armor_left": [ - "6575c35bc6700bd6b40e8a88" - ], - "soft_armor_right": [ - "6575c366c6700bd6b40e8a8c" - ], - "Collar": [ - "6575c373dc9932aed601c5ec" - ], - "Groin": [ - "6575c385dc9932aed601c5f0" - ], - "Groin_back": [ - "6575c390efc786cd9101a5e9" - ] - }, - "545cdb794bdc2d3a198b456a": { - "Front_plate": [ - "64afc71497cf3a403c01ff38" - ], - "Back_plate": [ - "64afc71497cf3a403c01ff38" - ], - "Left_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Right_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Soft_armor_front": [ - "6575ce3716c2762fba0057fd" - ], - "Soft_armor_back": [ - "6575ce45dc9932aed601c616" - ], - "Soft_armor_left": [ - "6575ce5016c2762fba005802" - ], - "soft_armor_right": [ - "6575ce5befc786cd9101a671" - ], - "Collar": [ - "6575ce6f16c2762fba005806" - ], - "Shoulder_l": [ - "6575ce9db15fef3dd4051628" - ], - "Shoulder_r": [ - "6575cea8b15fef3dd405162c" - ], - "Groin": [ - "6575ce8bdc9932aed601c61e" - ] - }, - "5aa7e276e5b5b000171d0647": { - "Helmet_top": [ - "657bc06daab96fccee08be9b" - ], - "Helmet_back": [ - "657bc0d8a1c61ee0c303632f" - ], - "Helmet_ears": [ - "657bc107aab96fccee08be9f" - ], - "mod_equipment": [ - "5aa7e373e5b5b000137b76f0" - ] - }, - "5ca2151486f774244a3b8d30": { - "Front_plate": [ - "65573fa5655447403702a816" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Soft_armor_front": [ - "6575dd3e9e27f4a85e081142" - ], - "Soft_armor_back": [ - "6575dd519e27f4a85e081146" - ], - "Soft_armor_left": [ - "6575dd64945bf78edd04c438" - ], - "soft_armor_right": [ - "6575dd6e9d3a0ddf660b9047" - ], - "Collar": [ - "6575dd769d3a0ddf660b904b" - ], - "Groin": [ - "6575dd800546f8b1de093df6" - ], - "Groin_back": [ - "6575dd94945bf78edd04c43c" - ] - }, - "5b44cf1486f77431723e3d05": { - "Front_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Back_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Left_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Right_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Soft_armor_front": [ - "6575c3b3dc9932aed601c5f4" - ], - "Soft_armor_back": [ - "6575c3beefc786cd9101a5ed" - ], - "Soft_armor_left": [ - "6575c3cdc6700bd6b40e8a90" - ], - "soft_armor_right": [ - "6575c3dfdc9932aed601c5f8" - ], - "Collar": [ - "6575c3ec52b7f8c76a05ee39" - ], - "Shoulder_l": [ - "6575c3fd52b7f8c76a05ee3d" - ], - "Shoulder_r": [ - "6575c40c52b7f8c76a05ee41" - ] - }, - "60a3c70cde5f453f634816a3": { - "Front_plate": [ - "656fb21fa0dce000a2020f7c" - ], - "Back_plate": [ - "656fb21fa0dce000a2020f7c" - ], - "Soft_armor_front": [ - "6570fae34c65ab77a6015146" - ], - "Soft_armor_back": [ - "6570fa1f4c65ab77a601512f" - ], - "Soft_armor_left": [ - "6570fb22584a51c23e03251f" - ], - "soft_armor_right": [ - "6570fb6ad3eefd23430f8c7c" - ], - "Collar": [ - "6570fb8f4c65ab77a601514d" - ], - "Shoulder_l": [ - "6570fbdd74d84423df065f60" - ], - "Shoulder_r": [ - "6570fc41d3eefd23430f8c83" - ] - } - }, - "items": { - "TacticalVest": { - "5ac66bea5acfc43b321d4aec": 8096, - "57d1519e24597714373db79d": 10000, - "5710c24ad2720bc3458b45a3": 10000, - "5e32f56fcb6d5863cc5e5ee4": 9017, - "5aaa4194e5b5b055d06310a5": 8274, - "59d6272486f77466146386ff": 10000, - "5e340dcdcb6d5863cc5e5efb": 9001, - "5448be9a4bdc2dfd2f8b456a": 9412, - "55d482194bdc2d1d4e8b456b": 2367, - "5addcce35acfc4001a5fc635": 2942, - "59c1383d86f774290a37e0ca": 5017, - "57838f9f2459774a150289a0": 701, - "5bed61680db834001d2c45ab": 526 - }, - "Pockets": { - "590c678286f77426c9660122": 10000, - "5c10c8fd86f7743d7d706df3": 10000, - "560d5e524bdc2d25448b4571": 10000, - "5d0376a486f7747d8050965c": 4393, - "573475fb24597737fb1379e1": 715, - "5d0378d486f77420421a5ff4": 4395, - "5bc9be8fd4351e00334cae6e": 152, - "5af0484c86f7740f02001f7f": 217, - "5734770f24597738025ee254": 490, - "573476d324597737da2adc13": 650, - "5e2af51086f7746d3f3c3402": 253, - "5e54f6af86f7742199090bf3": 151, - "573476f124597737e04bf328": 382, - "67586b7e49c2fa592e0d8ed9": 26, - "67449b6c89d5e1ddc603f504": 1 - }, - "Backpack": {}, - "SecuredContainer": { - "59e4cf5286f7741778269d8a": 18500, - "57372140245977611f70ee91": 9400, - "560d5e524bdc2d25448b4571": 18970, - "56dff061d2720bb5668b4567": 6660, - "5a608bf24f39f98ffc77720e": 333, - "59e6906286f7746c9f75e847": 3020, - "58dd3ad986f77403051cba8f": 1424, - "57a0dfb82459774d3078b56c": 413 - }, - "SpecialLoot": {} - } - }, "firstName": [ "Утюг", "Офицер", @@ -1271,2204 +2221,8 @@ "Гэпэ", "Борец" ], - "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 30, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Attack", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 45, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 30, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Attack", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 45, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 30, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Attack", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 45, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 30, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Attack", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 45, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 90, - "Earpiece": 25, - "FaceCover": 27, - "ArmorVest": 85, - "Eyewear": 20, - "ArmBand": 0, - "TacticalVest": 100, - "Backpack": 0, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 93, - "Holster": 0, - "Scabbard": 0, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_launcher": 0, - "mod_muzzle": 53, - "mod_reciever": 100, - "mod_sight_rear": 47, - "mod_stock": 100, - "mod_magazine": 100, - "mod_mount_000": 47, - "mod_charge": 0, - "mod_mount": 16, - "mod_scope": 29, - "mod_tactical": 86, - "mod_tactical_001": 100, - "mod_tactical_002": 0, - "mod_tactical_003": 0, - "mod_mount_001": 71, - "mod_mount_002": 0, - "mod_foregrip": 0, - "mod_sight_front": 10, - "mod_stock_001": 100, - "mod_tactical_000": 44, - "mod_stock_akms": 100, - "mod_charge_001": 0, - "mod_stock_000": 100, - "mod_mount_004": 100 - }, - "equipmentMods": { - "front_plate": 100, - "back_plate": 79, - "left_side_plate": 10, - "right_side_plate": 10, - "mod_equipment_000": 79, - "mod_nvg": 21, - "mod_mount": 0, - "mod_equipment": 20 - } - }, "generation": { "items": { - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, "backpackLoot": { "weights": { "0": 1, @@ -3482,6 +2236,67 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, "pocketLoot": { "weights": { "0": 1, @@ -3492,6 +2307,21 @@ }, "whitelist": [] }, + "specialItems": { + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, "vestLoot": { "weights": { "0": 1, @@ -3503,28 +2333,1202 @@ "6": 0 }, "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 1 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 2, - "2": 1, - "3": 1, - "4": 0, - "5": 0 - }, - "whitelist": [] } } + }, + "health": { + "BodyParts": [ + { + "Chest": { + "max": 150, + "min": 150 + }, + "Head": { + "max": 45, + "min": 45 + }, + "LeftArm": { + "max": 100, + "min": 100 + }, + "LeftLeg": { + "max": 120, + "min": 120 + }, + "RightArm": { + "max": 100, + "min": 100 + }, + "RightLeg": { + "max": 120, + "min": 120 + }, + "Stomach": { + "max": 125, + "min": 125 + } + } + ], + "Energy": { + "max": 100, + "min": 100 + }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { + "Ammo": { + "Caliber12g": { + "560d5e524bdc2d25448b4571": 1 + }, + "Caliber545x39": { + "56dff061d2720bb5668b4567": 1 + }, + "Caliber556x45NATO": { + "59e6906286f7746c9f75e847": 1 + }, + "Caliber762x39": { + "59e4cf5286f7741778269d8a": 1 + }, + "Caliber762x51": { + "58dd3ad986f77403051cba8f": 202, + "5a608bf24f39f98ffc77720e": 35 + }, + "Caliber9x18PM": { + "57372140245977611f70ee91": 1 + }, + "Caliber9x39": { + "57a0dfb82459774d3078b56c": 1 + } + }, + "equipment": { + "ArmBand": {}, + "ArmorVest": { + "545cdb794bdc2d3a198b456a": 187, + "5ab8e79e86f7742d8b372e78": 591, + "5b44cf1486f77431723e3d05": 187, + "5b44d0de86f774503d30cba8": 312, + "5c0e51be86f774598e797894": 6975, + "5c0e53c886f7747fa54205c7": 6904, + "5c0e57ba86f7747fa141986d": 6775, + "5c0e5bab86f77461f55ed1f3": 6936, + "5ca2151486f774244a3b8d30": 183, + "5ca21c6986f77479963115a7": 180, + "64be79e2bf8412471d0d9bcc": 6867 + }, + "Backpack": {}, + "Earpiece": { + "6033fa48ffd42c541047f728": 1 + }, + "Eyewear": { + "59e770b986f7742cbd762754": 2310, + "5b432be65acfc433000ed01f": 2247, + "603409c80ca681766b6a0fb2": 2322, + "61c18d83b00456371a66814b": 1840 + }, + "FaceCover": { + "5ab8f4ff86f77431c60d91ba": 2968, + "5b432c305acfc40019478128": 1739, + "5bd073a586f7747e6f135799": 1049 + }, + "FirstPrimaryWeapon": { + "5447a9cd4bdc2dbd208b4567": 4072, + "57c44b372459772d2b39b8ce": 558, + "59d6088586f774275f37482f": 6348, + "59ff346386f77477562ff5e2": 6629, + "5a0ec13bfcdbcb00165aa685": 6485, + "5aafa857e5b5b00018480968": 2373, + "5ac4cd105acfc40016339859": 6638, + "5ac66d725acfc43b321d4b60": 6641, + "5beed0f50db834001c062b12": 1894, + "6499849fc93611967b034949": 434 + }, + "Headwear": { + "5645bc214bdc2d363b8b4571": 2340, + "572b7fa124597762b472f9d2": 1581, + "59e770f986f7742cbe3164ef": 1820, + "5a7c4850e899ef00150be885": 8279, + "5aa7cfc0e5b5b00015693143": 5235, + "5aa7e276e5b5b000171d0647": 294, + "5aa7e454e5b5b0214e506fa2": 2890, + "5aa7e4a4e5b5b000137b76f2": 2612, + "5b40e2bc5acfc40016388216": 5312, + "5c091a4e0db834001d5addc8": 436, + "5ca20ee186f774799474abc2": 278, + "5f60e6403b85f6263c14558c": 572, + "5f60e7788adaa7100c3adb49": 722, + "603618feffd42c541047f771": 1878, + "65719f0775149d62ce0a670b": 3924 + }, + "Holster": {}, + "Pockets": { + "557ffd194bdc2d28148b457f": 1 + }, + "Scabbard": {}, + "SecondPrimaryWeapon": { + "54491c4f4bdc2db1078b4568": 1292, + "56dee2bdd2720bc8328b4567": 1341, + "57d14d2524597714373db789": 1305 + }, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": { + "544a5caa4bdc2d1a388b4568": 365, + "5929a2a086f7744f4b234d43": 4755, + "592c2d1a86f7746dbe2af32a": 4758, + "59e7643b86f7742cbf2c109a": 4850, + "5ab8dab586f77441cd04f2a2": 3085, + "5b44c8ea86f7742d1627baf1": 3059, + "5c0e3eb886f7742015526062": 1497, + "5c0e6a1586f77404597b4965": 2186, + "5ca20abf86f77418567a43f2": 4780, + "5d5d85c586f774279a21cbdb": 2984, + "5e4abfed86f77406a2713cf7": 2248, + "6040dd4ddcf9592f401632d2": 1843, + "60a3c70cde5f453f634816a3": 150, + "60a621c49c197e4e8c4455e6": 1851, + "61bc85697113f767765c7fe7": 1858, + "61bcc89aef0f505f0c6cd0fc": 1803 + } + }, + "items": { + "Backpack": {}, + "Pockets": { + "560d5e524bdc2d25448b4571": 10000, + "573475fb24597737fb1379e1": 715, + "573476d324597737da2adc13": 650, + "573476f124597737e04bf328": 382, + "5734770f24597738025ee254": 490, + "590c678286f77426c9660122": 10000, + "5af0484c86f7740f02001f7f": 217, + "5bc9be8fd4351e00334cae6e": 152, + "5c10c8fd86f7743d7d706df3": 10000, + "5d0376a486f7747d8050965c": 4393, + "5d0378d486f77420421a5ff4": 4395, + "5e2af51086f7746d3f3c3402": 253, + "5e54f6af86f7742199090bf3": 151, + "67449b6c89d5e1ddc603f504": 1, + "67586b7e49c2fa592e0d8ed9": 26 + }, + "SecuredContainer": { + "560d5e524bdc2d25448b4571": 18970, + "56dff061d2720bb5668b4567": 6660, + "57372140245977611f70ee91": 9400, + "57a0dfb82459774d3078b56c": 413, + "58dd3ad986f77403051cba8f": 1424, + "59e4cf5286f7741778269d8a": 18500, + "59e6906286f7746c9f75e847": 3020, + "5a608bf24f39f98ffc77720e": 333 + }, + "SpecialLoot": {}, + "TacticalVest": { + "5448be9a4bdc2dfd2f8b456a": 9412, + "55d482194bdc2d1d4e8b456b": 2367, + "5710c24ad2720bc3458b45a3": 10000, + "57838f9f2459774a150289a0": 701, + "57d1519e24597714373db79d": 10000, + "59c1383d86f774290a37e0ca": 5017, + "59d6272486f77466146386ff": 10000, + "5aaa4194e5b5b055d06310a5": 8274, + "5ac66bea5acfc43b321d4aec": 8096, + "5addcce35acfc4001a5fc635": 2942, + "5bed61680db834001d2c45ab": 526, + "5e32f56fcb6d5863cc5e5ee4": 9017, + "5e340dcdcb6d5863cc5e5efb": 9001 + } + }, + "mods": { + "5447a9cd4bdc2dbd208b4567": { + "mod_charge": [ + "55d44fd14bdc2d962f8b456e" + ], + "mod_magazine": [ + "544a37c44bdc2d25388b4567" + ], + "mod_pistol_grip": [ + "55d4b9964bdc2d1d4e8b456e" + ], + "mod_reciever": [ + "55d355e64bdc2d962f8b4569" + ], + "mod_stock": [ + "5649be884bdc2d79388b4577" + ] + }, + "54491c4f4bdc2db1078b4568": { + "mod_barrel": [ + "55d4491a4bdc2d882f8b456e" + ], + "mod_handguard": [ + "55d45d3f4bdc2d972f8b456c" + ], + "mod_magazine": [ + "55d485804bdc2d8c2f8b456b" + ], + "mod_mount_000": [ + "55d48ebc4bdc2d8c2f8b456c" + ], + "mod_stock": [ + "56083cba4bdc2de22e8b456f" + ] + }, + "544a5caa4bdc2d1a388b4568": { + "Back_plate": [ + "656f9fa0498d1b7e3e071d98" + ], + "Front_plate": [ + "656f9fa0498d1b7e3e071d98" + ], + "Groin": [ + "6570e90b3a5689d85f08db97" + ], + "Soft_armor_back": [ + "6570e87c23c1f638ef0b0ee2" + ], + "Soft_armor_front": [ + "6570e83223c1f638ef0b0ede" + ] + }, + "545cdb794bdc2d3a198b456a": { + "Back_plate": [ + "64afc71497cf3a403c01ff38" + ], + "Collar": [ + "6575ce6f16c2762fba005806" + ], + "Front_plate": [ + "64afc71497cf3a403c01ff38" + ], + "Groin": [ + "6575ce8bdc9932aed601c61e" + ], + "Left_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Shoulder_l": [ + "6575ce9db15fef3dd4051628" + ], + "Shoulder_r": [ + "6575cea8b15fef3dd405162c" + ], + "Soft_armor_back": [ + "6575ce45dc9932aed601c616" + ], + "Soft_armor_front": [ + "6575ce3716c2762fba0057fd" + ], + "Soft_armor_left": [ + "6575ce5016c2762fba005802" + ], + "soft_armor_right": [ + "6575ce5befc786cd9101a671" + ] + }, + "55d355e64bdc2d962f8b4569": { + "mod_barrel": [ + "55d3632e4bdc2d972f8b4569" + ], + "mod_handguard": [ + "5c78f2792e221600106f4683" + ] + }, + "55d3632e4bdc2d972f8b4569": { + "mod_gas_block": [ + "5ae30e795acfc408fb139a0b" + ] + }, + "55d48ebc4bdc2d8c2f8b456c": { + "mod_tactical_001": [ + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0" + ] + }, + "5645bc214bdc2d363b8b4571": { + "Helmet_back": [ + "657baeaacfcf63c951052db3" + ], + "Helmet_ears": [ + "657baecbc6f689d3a205b863" + ], + "Helmet_top": [ + "657bae18b7e9ca9a02045c0a" + ], + "mod_equipment": [ + "5b46238386f7741a693bcf9c" + ] + }, + "5649be884bdc2d79388b4577": { + "mod_stock_000": [ + "55d4ae6c4bdc2d8b2f8b456e" + ] + }, + "56dee2bdd2720bc8328b4567": { + "mod_barrel": [ + "56deec93d2720bec348b4568" + ], + "mod_handguard": [ + "56deed6ed2720b4c698b4583" + ], + "mod_magazine": [ + "56deeefcd2720bc8328b4568" + ], + "mod_mount_000": [ + "55d48ebc4bdc2d8c2f8b456c" + ], + "mod_stock": [ + "56083be64bdc2d20478b456f" + ] + }, + "57c44b372459772d2b39b8ce": { + "mod_handguard": [ + "651178336cad06c37c049eb4" + ], + "mod_magazine": [ + "57838f9f2459774a150289a0" + ], + "mod_mount_004": [ + "591ee00d86f774592f7b841e", + "5c61a40d2e2216001403158d" + ], + "mod_muzzle": [ + "57c44dd02459772d2e0ae249" + ], + "mod_pistol_grip": [ + "57c44fa82459772d2d75e415" + ], + "mod_reciever": [ + "57c44f4f2459772d2c627113" + ], + "mod_stock": [ + "57c450252459772d28133253" + ] + }, + "57c44dd02459772d2e0ae249": { + "mod_sight_rear": [ + "57c44e7b2459772d28133248" + ] + }, + "57d14d2524597714373db789": { + "mod_magazine": [ + "57d1519e24597714373db79d" + ], + "mod_mount": [ + "57ee59b42459771c7b045da5" + ], + "mod_pistol_grip": [ + "57d152ec245977144076ccdf" + ] + }, + "57ee59b42459771c7b045da5": { + "mod_scope": [ + "57ae0171245977343c27bfcf" + ], + "mod_tactical": [ + "5a5f1ce64f39f90b401987bc" + ] + }, + "591c4efa86f7741030027726": { + "mod_tactical": [ + "591c4e1186f77410354b316e" + ] + }, + "591ee00d86f774592f7b841e": { + "mod_tactical": [ + "560d657b4bdc2da74d8b4572" + ] + }, + "59c6633186f7740cf0493bb9": { + "mod_handguard": [ + "5648b1504bdc2d9d488b4584" + ] + }, + "59d6088586f774275f37482f": { + "mod_gas_block": [ + "5cf656f2d7f00c06585fb6eb" + ], + "mod_magazine": [ + "59d6272486f77466146386ff" + ], + "mod_muzzle": [ + "59d64fc686f774171b243fe2" + ], + "mod_pistol_grip": [ + "59e62cc886f77440d40b52a1" + ], + "mod_reciever": [ + "59d6507c86f7741b846413a2" + ], + "mod_sight_rear": [ + "59d650cf86f7741b846413a4" + ], + "mod_stock": [ + "59d6514b86f774171a068a08" + ] + }, + "59e0bdb186f774156f04ce82": { + "mod_tactical": [ + "560d657b4bdc2da74d8b4572", + "5a5f1ce64f39f90b401987bc" + ] + }, + "59e0be5d86f7742d48765bd2": { + "mod_tactical": [ + "5c5952732e2216398b5abda2" + ] + }, + "59ff346386f77477562ff5e2": { + "mod_gas_block": [ + "5d4aab30a4b9365435358c55" + ], + "mod_magazine": [ + "59d6272486f77466146386ff" + ], + "mod_muzzle": [ + "59d64fc686f774171b243fe2" + ], + "mod_pistol_grip_akms": [ + "5a0071d486f77404e23a12b2" + ], + "mod_reciever": [ + "59d6507c86f7741b846413a2" + ], + "mod_sight_rear": [ + "59d650cf86f7741b846413a4" + ], + "mod_stock_akms": [ + "59ff3b6a86f77477562ff5ed" + ] + }, + "5a0ec13bfcdbcb00165aa685": { + "mod_gas_block": [ + "5d4aab30a4b9365435358c55" + ], + "mod_magazine": [ + "59d6272486f77466146386ff" + ], + "mod_muzzle": [ + "59d64fc686f774171b243fe2" + ], + "mod_pistol_grip": [ + "59e62cc886f77440d40b52a1" + ], + "mod_reciever": [ + "59d6507c86f7741b846413a2" + ], + "mod_sight_rear": [ + "59d650cf86f7741b846413a4" + ], + "mod_stock": [ + "59d6514b86f774171a068a08" + ] + }, + "5a16b8a9fcdbcb00165aa6ca": { + "mod_nvg": [ + "5c0695860db834001b735461", + "5a16b93dfcdbcbcae6687261" + ] + }, + "5a16b93dfcdbcbcae6687261": { + "mod_nvg": [ + "57235b6f24597759bf5a30f1" + ] + }, + "5a7c4850e899ef00150be885": { + "Helmet_back": [ + "657bab6ec6f689d3a205b85f" + ], + "Helmet_ears": [ + "657babc6f58ba5a6250107a2" + ], + "Helmet_top": [ + "657baaf0b7e9ca9a02045c02" + ], + "mod_nvg": [ + "5a16b8a9fcdbcb00165aa6ca" + ] + }, + "5a9d6d00a2750c5c985b5305": { + "mod_tactical": [ + "5b3a337e5acfc4704b4a19a0" + ] + }, + "5aa7cfc0e5b5b00015693143": { + "Helmet_back": [ + "657bab6ec6f689d3a205b85f" + ], + "Helmet_ears": [ + "657babc6f58ba5a6250107a2" + ], + "Helmet_top": [ + "657baaf0b7e9ca9a02045c02" + ], + "mod_nvg": [ + "5a16b8a9fcdbcb00165aa6ca" + ] + }, + "5aa7e276e5b5b000171d0647": { + "Helmet_back": [ + "657bc0d8a1c61ee0c303632f" + ], + "Helmet_ears": [ + "657bc107aab96fccee08be9f" + ], + "Helmet_top": [ + "657bc06daab96fccee08be9b" + ], + "mod_equipment": [ + "5aa7e373e5b5b000137b76f0" + ] + }, + "5aa7e454e5b5b0214e506fa2": { + "Helmet_back": [ + "657f92acada5fadd1f07a57e" + ], + "Helmet_ears": [ + "657f92e7f4c82973640b2354" + ], + "Helmet_top": [ + "657f925dada5fadd1f07a57a" + ], + "mod_equipment": [ + "5aa7e3abe5b5b000171d064d" + ] + }, + "5aa7e4a4e5b5b000137b76f2": { + "Helmet_back": [ + "657f92acada5fadd1f07a57e" + ], + "Helmet_ears": [ + "657f92e7f4c82973640b2354" + ], + "Helmet_top": [ + "657f925dada5fadd1f07a57a" + ], + "mod_equipment": [ + "5aa7e3abe5b5b000171d064d" + ] + }, + "5aaf9d53e5b5b00015042a52": { + "mod_muzzle": [ + "5aafa1c2e5b5b00015042a56" + ] + }, + "5aafa1c2e5b5b00015042a56": { + "mod_sight_front": [ + "5aafa49ae5b5b00015042a58" + ] + }, + "5aafa857e5b5b00018480968": { + "mod_barrel": [ + "5aaf9d53e5b5b00015042a52" + ], + "mod_magazine": [ + "5addcce35acfc4001a5fc635" + ], + "mod_sight_rear": [ + "5abcbb20d8ce87001773e258" + ], + "mod_stock": [ + "5addbf175acfc408fb13965b" + ] + }, + "5ab8e79e86f7742d8b372e78": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "657326bc5d3a3129fb05f36b" + ], + "Front_plate": [ + "656f611f94b480b8a500c0db" + ], + "Soft_armor_back": [ + "657326978c1cc6dcd9098b56" + ], + "Soft_armor_front": [ + "65732688d9d89ff7ac0d9c4c" + ], + "Soft_armor_left": [ + "657326a28c1cc6dcd9098b5a" + ], + "soft_armor_right": [ + "657326b08c1cc6dcd9098b5e" + ] + }, + "5ac4cd105acfc40016339859": { + "mod_gas_block": [ + "5cf656f2d7f00c06585fb6eb" + ], + "mod_magazine": [ + "5aaa4194e5b5b055d06310a5" + ], + "mod_mount_000": [ + "5cf638cbd7f00c06595bc936" + ], + "mod_muzzle": [ + "5ac7655e5acfc40016339a19" + ], + "mod_pistol_grip": [ + "5649ade84bdc2d1b2b8b4587" + ], + "mod_reciever": [ + "5ac50da15acfc4001718d287" + ], + "mod_sight_rear": [ + "5ac72e475acfc400180ae6fe" + ], + "mod_stock": [ + "5ac50c185acfc400163398d4" + ] + }, + "5ac66d725acfc43b321d4b60": { + "mod_gas_block": [ + "59c6633186f7740cf0493bb9" + ], + "mod_magazine": [ + "5ac66bea5acfc43b321d4aec" + ], + "mod_mount_000": [ + "591ee00d86f774592f7b841e", + "5cf638cbd7f00c06595bc936" + ], + "mod_muzzle": [ + "5ac72e895acfc43b321d4bd5" + ], + "mod_pistol_grip": [ + "5649ade84bdc2d1b2b8b4587" + ], + "mod_reciever": [ + "5ac50da15acfc4001718d287" + ], + "mod_sight_rear": [ + "5ac733a45acfc400192630e2" + ], + "mod_stock": [ + "5ac50c185acfc400163398d4" + ] + }, + "5addbf175acfc408fb13965b": { + "mod_tactical": [ + "5b07dd285acfc4001754240d" + ] + }, + "5b40e2bc5acfc40016388216": { + "Helmet_back": [ + "657112a4818110db4600aa66" + ], + "Helmet_ears": [ + "657112ce22996eaf110881fb" + ], + "Helmet_top": [ + "657112234269e9a568089eac" + ] + }, + "5b44cf1486f77431723e3d05": { + "Back_plate": [ + "656fa8d700d62bcd2e024084" + ], + "Collar": [ + "6575c3ec52b7f8c76a05ee39" + ], + "Front_plate": [ + "656fa8d700d62bcd2e024084" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962" + ], + "Shoulder_l": [ + "6575c3fd52b7f8c76a05ee3d" + ], + "Shoulder_r": [ + "6575c40c52b7f8c76a05ee41" + ], + "Soft_armor_back": [ + "6575c3beefc786cd9101a5ed" + ], + "Soft_armor_front": [ + "6575c3b3dc9932aed601c5f4" + ], + "Soft_armor_left": [ + "6575c3cdc6700bd6b40e8a90" + ], + "soft_armor_right": [ + "6575c3dfdc9932aed601c5f8" + ] + }, + "5b44d0de86f774503d30cba8": { + "Back_plate": [ + "656fa8d700d62bcd2e024084" + ], + "Collar": [ + "6575c373dc9932aed601c5ec" + ], + "Front_plate": [ + "656fa8d700d62bcd2e024084" + ], + "Groin": [ + "6575c385dc9932aed601c5f0" + ], + "Groin_back": [ + "6575c390efc786cd9101a5e9" + ], + "Soft_armor_back": [ + "6575c34bc6700bd6b40e8a84" + ], + "Soft_armor_front": [ + "6575c342efc786cd9101a5e5" + ], + "Soft_armor_left": [ + "6575c35bc6700bd6b40e8a88" + ], + "soft_armor_right": [ + "6575c366c6700bd6b40e8a8c" + ] + }, + "5b7be47f5acfc400170e2dd2": { + "mod_tactical": [ + "5b07dd285acfc4001754240d" + ] + }, + "5beec1bd0db834001e6006f3": { + "mod_muzzle": [ + "5beec3420db834001b095429" + ] + }, + "5beec3e30db8340019619424": { + "mod_mount_001": [ + "5beecbb80db834001d2c465e" + ] + }, + "5beec8b20db834001961942a": { + "mod_stock": [ + "5beec8c20db834001d2c465c" + ] + }, + "5beec91a0db834001961942d": { + "mod_scope": [ + "5c0505e00db834001b735073", + "591c4efa86f7741030027726" + ] + }, + "5beecbb80db834001d2c465e": { + "mod_tactical_000": [ + "5a5f1ce64f39f90b401987bc" + ] + }, + "5beed0f50db834001c062b12": { + "mod_barrel": [ + "5beec1bd0db834001e6006f3" + ], + "mod_handguard": [ + "5beec3e30db8340019619424" + ], + "mod_magazine": [ + "5bed625c0db834001c062946" + ], + "mod_pistol_grip": [ + "5beec8ea0db834001a6f9dbf" + ], + "mod_reciever": [ + "5beec91a0db834001961942d" + ], + "mod_stock_001": [ + "5beec8b20db834001961942a" + ] + }, + "5c0695860db834001b735461": { + "mod_nvg": [ + "5c0696830db834001d23f5da" + ] + }, + "5c091a4e0db834001d5addc8": { + "Helmet_back": [ + "6571138e818110db4600aa71" + ], + "Helmet_ears": [ + "657112fa818110db4600aa6b" + ], + "Helmet_top": [ + "6571133d22996eaf11088200" + ] + }, + "5c0e3eb886f7742015526062": { + "Collar": [ + "65764c39526e320fbe035777" + ], + "Groin": [ + "65764c6b526e320fbe03577b" + ], + "Soft_armor_back": [ + "65764bc22bc38ef78e076485" + ], + "Soft_armor_front": [ + "65764a4cd8537eb26a0355ee" + ] + }, + "5c0e51be86f774598e797894": { + "Back_plate": [ + "656efd66034e8e01c407f35c" + ], + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "Soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "Soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "Soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0e53c886f7747fa54205c7": { + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "back_plate": [ + "656efd66034e8e01c407f35c" + ], + "front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0e57ba86f7747fa141986d": { + "Back_plate": [ + "657b22485f444d6dff0c6c2f" + ], + "Collar": [ + "657080ca12755ae0d907ad5e" + ], + "Front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "Groin": [ + "65708122f65e2491bf009755" + ], + "Groin_back": [ + "65708165696fe382cf073255" + ], + "Soft_armor_back": [ + "6570800612755ae0d907acf8" + ], + "Soft_armor_front": [ + "65707fc348c7a887f2010432" + ], + "Soft_armor_left": [ + "65708070f65e2491bf00972c" + ], + "soft_armor_right": [ + "657080a212755ae0d907ad04" + ] + }, + "5c0e5bab86f77461f55ed1f3": { + "Collar": [ + "6571babb4076795e5e07383f" + ], + "Front_plate": [ + "654a4dea7c17dec2f50cc86a" + ], + "Groin": [ + "6571bac34076795e5e073843" + ], + "Groin_back": [ + "6571babf4cb80d995d0a1494" + ], + "Soft_armor_back": [ + "6571baa74cb80d995d0a1490" + ], + "Soft_armor_front": [ + "6571b27a6d84a2b8b6007f92" + ], + "Soft_armor_left": [ + "6571baac6d84a2b8b6007fa3" + ], + "soft_armor_right": [ + "6571bab0f41985531a038091" + ] + }, + "5c61a40d2e2216001403158d": { + "mod_scope": [ + "5c0505e00db834001b735073" + ] + }, + "5c78f2792e221600106f4683": { + "mod_mount_001": [ + "5b7be47f5acfc400170e2dd2" + ] + }, + "5ca20ee186f774799474abc2": { + "Helmet_back": [ + "657bbed0aab96fccee08be96" + ], + "Helmet_ears": [ + "657bbefeb30eca9763051189" + ], + "Helmet_top": [ + "657bbe73a1c61ee0c303632b" + ], + "mod_equipment": [ + "5ca2113f86f7740b2547e1d2" + ] + }, + "5ca2151486f774244a3b8d30": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "6575dd769d3a0ddf660b904b" + ], + "Front_plate": [ + "65573fa5655447403702a816" + ], + "Groin": [ + "6575dd800546f8b1de093df6" + ], + "Groin_back": [ + "6575dd94945bf78edd04c43c" + ], + "Soft_armor_back": [ + "6575dd519e27f4a85e081146" + ], + "Soft_armor_front": [ + "6575dd3e9e27f4a85e081142" + ], + "Soft_armor_left": [ + "6575dd64945bf78edd04c438" + ], + "soft_armor_right": [ + "6575dd6e9d3a0ddf660b9047" + ] + }, + "5ca21c6986f77479963115a7": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "6575d9d8945bf78edd04c42b" + ], + "Front_plate": [ + "65573fa5655447403702a816" + ], + "Groin": [ + "6575d9e7945bf78edd04c42f" + ], + "Groin_back": [ + "6575d9f816c2762fba00588d" + ], + "Left_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Shoulder_l": [ + "6575da07945bf78edd04c433" + ], + "Shoulder_r": [ + "6575da159e27f4a85e081131" + ], + "Soft_armor_back": [ + "6575d9b8945bf78edd04c427" + ], + "Soft_armor_front": [ + "6575d9a79e27f4a85e08112d" + ], + "Soft_armor_left": [ + "6575d9c40546f8b1de093dee" + ], + "soft_armor_right": [ + "6575d9cf0546f8b1de093df2" + ] + }, + "5cf656f2d7f00c06585fb6eb": { + "mod_mount_001": [ + "59e0be5d86f7742d48765bd2", + "59e0bdb186f774156f04ce82" + ] + }, + "5d4aab30a4b9365435358c55": { + "mod_mount_001": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82" + ] + }, + "60a3c70cde5f453f634816a3": { + "Back_plate": [ + "656fb21fa0dce000a2020f7c" + ], + "Collar": [ + "6570fb8f4c65ab77a601514d" + ], + "Front_plate": [ + "656fb21fa0dce000a2020f7c" + ], + "Shoulder_l": [ + "6570fbdd74d84423df065f60" + ], + "Shoulder_r": [ + "6570fc41d3eefd23430f8c83" + ], + "Soft_armor_back": [ + "6570fa1f4c65ab77a601512f" + ], + "Soft_armor_front": [ + "6570fae34c65ab77a6015146" + ], + "Soft_armor_left": [ + "6570fb22584a51c23e03251f" + ], + "soft_armor_right": [ + "6570fb6ad3eefd23430f8c7c" + ] + }, + "61bc85697113f767765c7fe7": { + "Back_plate": [ + "656fad8c498d1b7e3e071da0" + ], + "Front_plate": [ + "656fad8c498d1b7e3e071da0" + ], + "Soft_armor_back": [ + "6572fc8c9a866b80ab07eb5d" + ], + "Soft_armor_front": [ + "6572fc809a866b80ab07eb59" + ], + "Soft_armor_left": [ + "6572fc989a866b80ab07eb61" + ], + "soft_armor_right": [ + "6572fca39a866b80ab07eb65" + ] + }, + "61bcc89aef0f505f0c6cd0fc": { + "Back_plate": [ + "656fb21fa0dce000a2020f7c" + ], + "Front_plate": [ + "656fb21fa0dce000a2020f7c" + ], + "Groin": [ + "6572eb865b5eac12f10a03ee" + ], + "Soft_armor_back": [ + "6572eb1b04ee6483ef039882" + ], + "Soft_armor_front": [ + "6572eb0e55beba16bc04079f" + ], + "Soft_armor_left": [ + "6572eb3004ee6483ef039886" + ], + "soft_armor_right": [ + "6572eb3b04ee6483ef03988a" + ] + }, + "6499849fc93611967b034949": { + "mod_gas_block": [ + "649ec107961514b22506b10c" + ], + "mod_handguard": [ + "649ec127c93611967b034957" + ], + "mod_magazine": [ + "5bed61680db834001d2c45ab" + ], + "mod_muzzle": [ + "649ec2af961514b22506b10f" + ], + "mod_pistol_grip": [ + "5beec8ea0db834001a6f9dbf" + ], + "mod_reciever": [ + "649ec2f3961514b22506b111" + ], + "mod_stock_001": [ + "649ec87d8007560a9001ab36" + ] + }, + "649ec127c93611967b034957": { + "mod_mount_001": [ + "5beecbb80db834001d2c465e" + ] + }, + "649ec2f3961514b22506b111": { + "mod_scope": [ + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09" + ] + }, + "649ec87d8007560a9001ab36": { + "mod_stock": [ + "5beec8c20db834001d2c465c" + ] + }, + "64be79e2bf8412471d0d9bcc": { + "Soft_armor_back": [ + "657049d23425b19bbc0502f0" + ], + "Soft_armor_front": [ + "6570495b45d573133d0d6adb" + ] + }, + "65719f0775149d62ce0a670b": { + "Helmet_back": [ + "657fa168e9433140ad0baf8e" + ], + "Helmet_ears": [ + "657fa186d4caf976440afe42" + ], + "Helmet_top": [ + "657fa0fcd4caf976440afe3e" + ], + "mod_equipment_000": [ + "65719f9ef392ad76c50a2ec8" + ] + } + } + }, + "lastName": [], + "skills": { + "Common": {} } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/followergluharscout.json b/Libraries/SptAssets/Assets/database/bots/types/followergluharscout.json index db9aa30d..4675225d 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followergluharscout.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followergluharscout.json @@ -2,738 +2,2197 @@ "appearance": { "body": { "5d28ae2986f7742926686185": 1815, - "5d5e7e5d86f774279b4f4b01": 1191, - "5d5e7e4a86f774279a21cc0d": 1199 + "5d5e7e4a86f774279a21cc0d": 1199, + "5d5e7e5d86f774279b4f4b01": 1191 }, "feet": { - "5d5e7f8986f7742798716582": 1409, + "5d28af3486f774292364a6e7": 1401, "5d28af5386f774292364a6e8": 1396, - "5d28af3486f774292364a6e7": 1401 + "5d5e7f8986f7742798716582": 1409 }, "hands": { "5cc2e68f14c02e28b47de290": 1 }, "head": { - "5f68c4c217d579077152a252": 8476, - "5f68c4a7c174a17c0f4c8945": 8571, - "5cde9ff17d6c8b0474535daa": 8287, "5cc2e4d014c02e000d0115f8": 8241, - "5d28afe786f774292668618d": 8497 + "5cde9ff17d6c8b0474535daa": 8287, + "5d28afe786f774292668618d": 8497, + "5f68c4a7c174a17c0f4c8945": 8571, + "5f68c4c217d579077152a252": 8476 }, "voice": { - "Scav_2": 7053, - "Scav_5": 6972, - "Scav_4": 6963, "Scav_1": 7005, + "Scav_2": 7053, "Scav_3": 7096, + "Scav_4": 6963, + "Scav_5": 6972, "Scav_6": 6983 } }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 98, + "Backpack": 41, + "Earpiece": 20, + "Eyewear": 60, + "FaceCover": 4, + "FirstPrimaryWeapon": 100, + "Headwear": 98, + "Holster": 100, + "Pockets": 100, + "Scabbard": 0, + "SecondPrimaryWeapon": 0, + "SecuredContainer": 100, + "TacticalVest": 100 + }, + "equipmentMods": { + "back_plate": 84, + "front_plate": 100, + "left_side_plate": 0, + "mod_equipment": 0, + "mod_equipment_000": 0, + "mod_mount": 0, + "mod_nvg": 0, + "right_side_plate": 0 + }, + "weaponMods": { + "mod_charge": 0, + "mod_charge_001": 0, + "mod_flashlight": 100, + "mod_foregrip": 11, + "mod_handguard": 100, + "mod_launcher": 0, + "mod_magazine": 100, + "mod_mount": 0, + "mod_mount_000": 0, + "mod_mount_001": 100, + "mod_mount_002": 0, + "mod_muzzle": 84, + "mod_reciever": 100, + "mod_scope": 34, + "mod_sight_front": 32, + "mod_sight_rear": 57, + "mod_stock": 100, + "mod_stock_000": 100, + "mod_stock_001": 100, + "mod_stock_akms": 100, + "mod_tactical": 61, + "mod_tactical_000": 57, + "mod_tactical_001": 100, + "mod_tactical_003": 100, + "mod_tactical_2": 0 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.45, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 50, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Scout", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 32, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 10, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 1, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 20, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.45, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 50, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Scout", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 32, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 10, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 1, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 20, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.45, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 50, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Scout", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 32, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 10, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 1, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 20, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.45, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 50, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Scout", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 32, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 10, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 1, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 20, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + } + }, "experience": { + "aggressorBonus": { + "normal": 0.02 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": 200, - "max": 200 + "max": 200, + "min": 200 } }, "standingForKill": { "normal": -0.05 }, - "aggressorBonus": { - "normal": 0.02 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 40, - "max": 40 - }, - "Chest": { - "min": 140, - "max": 140 - }, - "Stomach": { - "min": 100, - "max": 100 - }, - "LeftArm": { - "min": 70, - "max": 70 - }, - "RightArm": { - "min": 70, - "max": 70 - }, - "LeftLeg": { - "min": 80, - "max": 80 - }, - "RightLeg": { - "min": 80, - "max": 80 - } - } - ] - }, - "skills": { - "Common": {} - }, - "inventory": { - "equipment": { - "Headwear": { - "65719f0775149d62ce0a670b": 1514, - "5c06c6a80db834001b735491": 1116, - "5aa7cfc0e5b5b00015693143": 1511 - }, - "Earpiece": { - "5b432b965acfc47a8774094e": 1 - }, - "FaceCover": { - "5b432c305acfc40019478128": 1 - }, - "ArmorVest": { - "5b44d22286f774172b0c9de8": 7903, - "5c0e5bab86f77461f55ed1f3": 4922, - "64be79e2bf8412471d0d9bcc": 5013, - "5c0e53c886f7747fa54205c7": 4864, - "5648a7494bdc2d9d488b4583": 5086, - "5c0e5edb86f77461f55ed1f7": 3049, - "5c0e51be86f774598e797894": 4992, - "5c0e57ba86f7747fa141986d": 5048, - "609e8540d5c319764c2bc2e9": 665 - }, - "Eyewear": { - "5b432be65acfc433000ed01f": 1 - }, - "ArmBand": {}, - "TacticalVest": { - "5ab8dab586f77441cd04f2a2": 6077, - "5929a2a086f7744f4b234d43": 6214, - "60a6220e953894617404b00a": 4951, - "5d5d85c586f774279a21cbdb": 6222, - "5b44c8ea86f7742d1627baf1": 6185, - "59e7643b86f7742cbf2c109a": 6256, - "5ca20abf86f77418567a43f2": 6167 - }, - "Backpack": { - "656ddcf0f02d7bcea90bf395": 5667, - "5ab8ee7786f7742d8f33f0b9": 11830 - }, - "FirstPrimaryWeapon": { - "59984ab886f7743e98271174": 9401, - "5ac4cd105acfc40016339859": 9583, - "59ff346386f77477562ff5e2": 9997, - "5926bb2186f7744b1c6c6e60": 6546, - "5447a9cd4bdc2dbd208b4567": 5896, - "6499849fc93611967b034949": 649 - }, - "SecondPrimaryWeapon": {}, - "Holster": { - "576a581d2459771e7b1bc4f1": 17160, - "5a17f98cfcdbcb0980087290": 4714, - "5448bd6b4bdc2dfc2f8b4569": 17500, - "59f98b4986f7746f546d2cef": 2687 - }, - "Scabbard": {}, - "Pockets": { - "557ffd194bdc2d28148b457f": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - } - }, - "Ammo": { - "Caliber9x19PARA": { - "5c3df7d588a4501f290594e5": 1880, - "56d59d3ad2720bdb418b4577": 2570, - "5a3c16fe86f77452b62de32a": 970, - "64b7bbb74b75259c590fa897": 339 - }, - "Caliber545x39": { - "56dff061d2720bb5668b4567": 1 - }, - "Caliber9x18PM": { - "573719762459775a626ccbc1": 1 - }, - "Caliber762x39": { - "59e4cf5286f7741778269d8a": 1 - }, - "Caliber556x45NATO": { - "59e6906286f7746c9f75e847": 1 - }, - "Caliber9x21": { - "5a26abfac4a28232980eabff": 1 - } - }, - "mods": { - "59984ab886f7743e98271174": { - "mod_pistol_grip": [ - "5998517986f7746017232f7e" - ], - "mod_gas_block": [ - "59ccd11386f77428f24a488f" - ], - "mod_muzzle": [ - "59bfc5c886f7743bf6794e62" - ], - "mod_reciever": [ - "59985a6c86f77414ec448d17" - ], - "mod_magazine": [ - "599860ac86f77436b225ed1a" - ], - "patron_in_weapon": [ - "5c3df7d588a4501f290594e5" - ] - }, - "59ccd11386f77428f24a488f": { - "mod_handguard": [ - "5c617a5f2e2216000f1e81b3" - ] - }, - "5c617a5f2e2216000f1e81b3": { - "mod_tactical": [ - "5c5952732e2216398b5abda2" - ] - }, - "59985a6c86f77414ec448d17": { - "mod_scope": [ - "591c4efa86f7741030027726" - ] - }, - "576a581d2459771e7b1bc4f1": { - "mod_magazine": [ - "576a5ed62459771e9c2096cb" - ], - "mod_pistol_grip": [ - "576a63cd2459771e796e0e11" - ] - }, - "65719f0775149d62ce0a670b": { - "Helmet_top": [ - "657fa0fcd4caf976440afe3e" - ], - "Helmet_back": [ - "657fa168e9433140ad0baf8e" - ], - "Helmet_ears": [ - "657fa186d4caf976440afe42" - ] - }, - "5b44d22286f774172b0c9de8": { - "Front_plate": [ - "656f9d5900d62bcd2e02407c" - ], - "Back_plate": [ - "656f9d5900d62bcd2e02407c" - ], - "Soft_armor_front": [ - "65704de13e7bba58ea0285c8" - ], - "Soft_armor_back": [ - "65705c3c14f2ed6d7d0b7738" - ], - "Soft_armor_left": [ - "65705c777260e1139e091408" - ], - "soft_armor_right": [ - "65705cb314f2ed6d7d0b773c" - ], - "Collar": [ - "65705cea4916448ae1050897" - ] - }, - "5ac4cd105acfc40016339859": { - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac72e475acfc400180ae6fe" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ], - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_muzzle": [ - "564caa3d4bdc2d17108b458e", - "5ac7655e5acfc40016339a19" - ], - "mod_magazine": [ - "5cbdaf89ae9215000e5b9c94" - ] - }, - "59c6633186f7740cf0493bb9": { - "mod_handguard": [ - "5cbda392ae92155f3c17c39f" - ] - }, - "5cbda392ae92155f3c17c39f": { - "mod_tactical_000": [ - "5b3a337e5acfc4704b4a19a0" - ], - "mod_foregrip": [ - "5c1bc5fb2e221602b1779b32" - ] - }, - "5c06c6a80db834001b735491": { - "Helmet_top": [ - "6571199565daf6aa960c9b10" - ], - "Helmet_back": [ - "657119d49eb8c145180dbb95" - ], - "Helmet_ears": [ - "657119fea330b8c9060f7afc" - ] - }, - "5c0e5bab86f77461f55ed1f3": { - "Front_plate": [ - "654a4dea7c17dec2f50cc86a" - ], - "Soft_armor_front": [ - "6571b27a6d84a2b8b6007f92" - ], - "Soft_armor_back": [ - "6571baa74cb80d995d0a1490" - ], - "Soft_armor_left": [ - "6571baac6d84a2b8b6007fa3" - ], - "soft_armor_right": [ - "6571bab0f41985531a038091" - ], - "Collar": [ - "6571babb4076795e5e07383f" - ], - "Groin": [ - "6571bac34076795e5e073843" - ], - "Groin_back": [ - "6571babf4cb80d995d0a1494" - ] - }, - "5a17f98cfcdbcb0980087290": { - "mod_magazine": [ - "5a17fb03fcdbcbcae668728f" - ], - "mod_pistol_grip": [ - "5a17fc70fcdbcb0176308b3d" - ], - "mod_sight_front": [ - "5aba62f8d8ce87001943946b" - ], - "mod_sight_rear": [ - "5aba637ad8ce87001773e17f" - ] - }, - "5aa7cfc0e5b5b00015693143": { - "Helmet_top": [ - "657baaf0b7e9ca9a02045c02" - ], - "Helmet_back": [ - "657bab6ec6f689d3a205b85f" - ], - "Helmet_ears": [ - "657babc6f58ba5a6250107a2" - ] - }, - "64be79e2bf8412471d0d9bcc": { - "Soft_armor_front": [ - "6570495b45d573133d0d6adb" - ], - "Soft_armor_back": [ - "657049d23425b19bbc0502f0" - ] - }, - "5448bd6b4bdc2dfc2f8b4569": { - "mod_magazine": [ - "5448c12b4bdc2d02308b456f" - ], - "mod_reciever": [ - "6374a822e629013b9c0645c8" - ], - "mod_pistolgrip": [ - "6374a7e7417239a7bf00f042" - ] - }, - "6374a822e629013b9c0645c8": { - "mod_sight_rear": [ - "63c6adcfb4ba094317063742" - ] - }, - "5c0e53c886f7747fa54205c7": { - "front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "back_plate": [ - "656efd66034e8e01c407f35c" - ], - "soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ] - }, - "5648a7494bdc2d9d488b4583": { - "Soft_armor_front": [ - "65703d866584602f7d057a8a" - ], - "Soft_armor_back": [ - "65703fa06584602f7d057a8e" - ], - "Soft_armor_left": [ - "65703fe46a912c8b5c03468b" - ], - "soft_armor_right": [ - "657040374e67e8ec7a0d261c" - ] - }, - "59ff346386f77477562ff5e2": { - "mod_muzzle": [ - "59d64fc686f774171b243fe2", - "5a0d63621526d8dba31fe3bf" - ], - "mod_pistol_grip_akms": [ - "5a0071d486f77404e23a12b2" - ], - "mod_reciever": [ - "59d6507c86f7741b846413a2" - ], - "mod_sight_rear": [ - "59d650cf86f7741b846413a4" - ], - "mod_stock_akms": [ - "59ff3b6a86f77477562ff5ed" - ], - "mod_gas_block": [ - "5cf656f2d7f00c06585fb6eb" - ], - "mod_magazine": [ - "59d6272486f77466146386ff" - ] - }, - "5cf656f2d7f00c06585fb6eb": { - "mod_mount_001": [ - "59e0bdb186f774156f04ce82" - ] - }, - "59e0bdb186f774156f04ce82": { - "mod_tactical": [ - "56def37dd2720bec348b456a" - ] - }, - "5c0e5edb86f77461f55ed1f7": { - "Front_plate": [ - "656f57dc27aed95beb08f628" - ], - "Back_plate": [ - "656fac30c6baea13cd07e10c" - ], - "Soft_armor_front": [ - "6571dbd388ead79fcf091d71" - ], - "Soft_armor_back": [ - "6571dbda88ead79fcf091d75" - ], - "Soft_armor_left": [ - "6571dbe07c02ae206002502e" - ], - "soft_armor_right": [ - "6571dbeaee8ec43d520cf89e" - ], - "Collar": [ - "6571dbef88ead79fcf091d79" - ] - }, - "5926bb2186f7744b1c6c6e60": { - "mod_reciever": [ - "5926c0df86f77462f647f764" - ], - "mod_charge": [ - "5926c32286f774616e42de99" - ], - "mod_magazine": [ - "5926c3b286f774640d189b6b" - ], - "patron_in_weapon": [ - "5a3c16fe86f77452b62de32a", - "64b7bbb74b75259c590fa897" - ] - }, - "5926c0df86f77462f647f764": { - "mod_handguard": [ - "5d19cd96d7ad1a4a992c9f52" - ], - "mod_stock": [ - "5926d3c686f77410de68ebc8" - ], - "mod_muzzle": [ - "5c0000c00db834001a6697fc" - ], - "mod_sight_rear": [ - "5926d2be86f774134d668e4e" - ] - }, - "5d19cd96d7ad1a4a992c9f52": { - "mod_tactical_001": [ - "56def37dd2720bec348b456a" - ] - }, - "5c0e51be86f774598e797894": { - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Back_plate": [ - "656efd66034e8e01c407f35c" - ], - "Soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "Soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "Soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ] - }, - "5c0000c00db834001a6697fc": { - "mod_muzzle": [ - "5c6165902e22160010261b28" - ] - }, - "5447a9cd4bdc2dbd208b4567": { - "mod_pistol_grip": [ - "55d4b9964bdc2d1d4e8b456e" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ], - "mod_charge": [ - "55d44fd14bdc2d962f8b456e" - ], - "mod_reciever": [ - "55d355e64bdc2d962f8b4569" - ], - "mod_magazine": [ - "5aaa5dfee5b5b000140293d3" - ] - }, - "5649be884bdc2d79388b4577": { - "mod_stock_000": [ - "55d4ae6c4bdc2d8b2f8b456e" - ] - }, - "55d355e64bdc2d962f8b4569": { - "mod_barrel": [ - "55d3632e4bdc2d972f8b4569" - ], - "mod_handguard": [ - "55d459824bdc2d892f8b4573" - ], - "mod_scope": [ - "570fd6c2d2720bc6458b457f" - ] - }, - "55d3632e4bdc2d972f8b4569": { - "mod_gas_block": [ - "5ae30e795acfc408fb139a0b" - ], - "mod_muzzle": [ - "56ea8180d2720bf2698b456a" - ] - }, - "56ea8180d2720bf2698b456a": { - "mod_muzzle": [ - "57dbb57e2459774673234890" - ] - }, - "55d459824bdc2d892f8b4573": { - "mod_tactical_003": [ - "57d17e212459775a1179a0f5" - ], - "mod_handguard": [ - "637f57b78d137b27f70c496a" - ] - }, - "57d17e212459775a1179a0f5": { - "mod_flashlight": [ - "57d17c5e2459775a5c57d17d" - ] - }, - "59f98b4986f7746f546d2cef": { - "mod_magazine": [ - "59f99a7d86f7745b134aa97b" - ] - }, - "5c0e57ba86f7747fa141986d": { - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Back_plate": [ - "657b22485f444d6dff0c6c2f" - ], - "Soft_armor_front": [ - "65707fc348c7a887f2010432" - ], - "Soft_armor_back": [ - "6570800612755ae0d907acf8" - ], - "Soft_armor_left": [ - "65708070f65e2491bf00972c" - ], - "soft_armor_right": [ - "657080a212755ae0d907ad04" - ], - "Collar": [ - "657080ca12755ae0d907ad5e" - ], - "Groin": [ - "65708122f65e2491bf009755" - ], - "Groin_back": [ - "65708165696fe382cf073255" - ] - }, - "609e8540d5c319764c2bc2e9": { - "Front_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Back_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Soft_armor_front": [ - "6572e5221b5bc1185508c24f" - ], - "Soft_armor_back": [ - "6572e52f73c0eabb700109a0" - ], - "Soft_armor_left": [ - "6572e53c73c0eabb700109a4" - ], - "soft_armor_right": [ - "6572e54873c0eabb700109a8" - ] - }, - "6499849fc93611967b034949": { - "mod_gas_block": [ - "649ec107961514b22506b10c" - ], - "mod_pistol_grip": [ - "5beec8ea0db834001a6f9dbf" - ], - "mod_handguard": [ - "649ec127c93611967b034957" - ], - "mod_muzzle": [ - "649ec2af961514b22506b10f" - ], - "mod_stock_001": [ - "649ec87d8007560a9001ab36" - ], - "mod_reciever": [ - "649ec2f3961514b22506b111" - ], - "mod_magazine": [ - "5bed61680db834001d2c45ab" - ] - }, - "649ec127c93611967b034957": { - "mod_mount_001": [ - "5beecbb80db834001d2c465e" - ] - }, - "649ec87d8007560a9001ab36": { - "mod_stock": [ - "5beec8c20db834001d2c465c" - ] - }, - "649ec2f3961514b22506b111": { - "mod_scope": [ - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09" - ] - } - }, - "items": { - "TacticalVest": { - "599860ac86f77436b225ed1a": 1411, - "5aaa4194e5b5b055d06310a5": 1558, - "5448be9a4bdc2dfd2f8b456a": 1277, - "59d6272486f77466146386ff": 1390, - "5926c3b286f774640d189b6b": 992, - "59c1383d86f774290a37e0ca": 892, - "5bed61680db834001d2c45ab": 98 - }, - "Pockets": { - "576a5ed62459771e9c2096cb": 1153, - "590c678286f77426c9660122": 1577, - "5a0c27731526d80618476ac4": 1179, - "5a17fb03fcdbcbcae668728f": 346, - "5448c12b4bdc2d02308b456f": 1445, - "59f99a7d86f7745b134aa97b": 210, - "5710c24ad2720bc3458b45a3": 85 - }, - "Backpack": {}, - "SecuredContainer": { - "5c3df7d588a4501f290594e5": 52060, - "56d59d3ad2720bdb418b4577": 94910, - "56dff061d2720bb5668b4567": 57710, - "573719762459775a626ccbc1": 100000, - "59e4cf5286f7741778269d8a": 53560, - "5a3c16fe86f77452b62de32a": 26340, - "64b7bbb74b75259c590fa897": 9483, - "59e6906286f7746c9f75e847": 32440, - "5a26abfac4a28232980eabff": 15100 - }, - "SpecialLoot": {} - } - }, "firstName": [ "Зимний", "Сыч", @@ -764,2205 +2223,8 @@ "Карабин", "Ветеран" ], - "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.45, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 10, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 1, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 20, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 32, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Scout", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 50, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.45, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 10, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 1, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 20, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 32, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Scout", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 50, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.45, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 10, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 1, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 20, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 32, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Scout", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 50, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.45, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 10, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 1, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 20, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 32, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Scout", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 50, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 98, - "Earpiece": 20, - "FaceCover": 4, - "ArmorVest": 98, - "Eyewear": 60, - "ArmBand": 0, - "TacticalVest": 100, - "Backpack": 41, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 0, - "Holster": 100, - "Scabbard": 0, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_stock": 100, - "mod_charge": 0, - "mod_magazine": 100, - "mod_muzzle": 84, - "mod_reciever": 100, - "mod_sight_rear": 57, - "mod_scope": 34, - "mod_foregrip": 11, - "mod_tactical": 61, - "mod_mount": 0, - "mod_launcher": 0, - "mod_mount_000": 0, - "mod_tactical_000": 57, - "mod_sight_front": 32, - "mod_stock_akms": 100, - "mod_mount_001": 100, - "mod_mount_002": 0, - "mod_tactical_001": 100, - "mod_charge_001": 0, - "mod_stock_000": 100, - "mod_tactical_2": 0, - "mod_tactical_003": 100, - "mod_handguard": 100, - "mod_flashlight": 100, - "mod_stock_001": 100 - }, - "equipmentMods": { - "mod_equipment_000": 0, - "mod_nvg": 0, - "mod_mount": 0, - "front_plate": 100, - "back_plate": 84, - "mod_equipment": 0, - "left_side_plate": 0, - "right_side_plate": 0 - } - }, "generation": { "items": { - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, "backpackLoot": { "weights": { "0": 1, @@ -2976,6 +2238,67 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, "pocketLoot": { "weights": { "0": 1, @@ -2986,6 +2309,21 @@ }, "whitelist": [] }, + "specialItems": { + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, "vestLoot": { "weights": { "0": 1, @@ -2997,28 +2335,694 @@ "6": 0 }, "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 1 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 2, - "2": 1, - "3": 1, - "4": 0, - "5": 0 - }, - "whitelist": [] } } + }, + "health": { + "BodyParts": [ + { + "Chest": { + "max": 140, + "min": 140 + }, + "Head": { + "max": 40, + "min": 40 + }, + "LeftArm": { + "max": 70, + "min": 70 + }, + "LeftLeg": { + "max": 80, + "min": 80 + }, + "RightArm": { + "max": 70, + "min": 70 + }, + "RightLeg": { + "max": 80, + "min": 80 + }, + "Stomach": { + "max": 100, + "min": 100 + } + } + ], + "Energy": { + "max": 100, + "min": 100 + }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { + "Ammo": { + "Caliber545x39": { + "56dff061d2720bb5668b4567": 1 + }, + "Caliber556x45NATO": { + "59e6906286f7746c9f75e847": 1 + }, + "Caliber762x39": { + "59e4cf5286f7741778269d8a": 1 + }, + "Caliber9x18PM": { + "573719762459775a626ccbc1": 1 + }, + "Caliber9x19PARA": { + "56d59d3ad2720bdb418b4577": 2570, + "5a3c16fe86f77452b62de32a": 970, + "5c3df7d588a4501f290594e5": 1880, + "64b7bbb74b75259c590fa897": 339 + }, + "Caliber9x21": { + "5a26abfac4a28232980eabff": 1 + } + }, + "equipment": { + "ArmBand": {}, + "ArmorVest": { + "5648a7494bdc2d9d488b4583": 5086, + "5b44d22286f774172b0c9de8": 7903, + "5c0e51be86f774598e797894": 4992, + "5c0e53c886f7747fa54205c7": 4864, + "5c0e57ba86f7747fa141986d": 5048, + "5c0e5bab86f77461f55ed1f3": 4922, + "5c0e5edb86f77461f55ed1f7": 3049, + "609e8540d5c319764c2bc2e9": 665, + "64be79e2bf8412471d0d9bcc": 5013 + }, + "Backpack": { + "5ab8ee7786f7742d8f33f0b9": 11830, + "656ddcf0f02d7bcea90bf395": 5667 + }, + "Earpiece": { + "5b432b965acfc47a8774094e": 1 + }, + "Eyewear": { + "5b432be65acfc433000ed01f": 1 + }, + "FaceCover": { + "5b432c305acfc40019478128": 1 + }, + "FirstPrimaryWeapon": { + "5447a9cd4bdc2dbd208b4567": 5896, + "5926bb2186f7744b1c6c6e60": 6546, + "59984ab886f7743e98271174": 9401, + "59ff346386f77477562ff5e2": 9997, + "5ac4cd105acfc40016339859": 9583, + "6499849fc93611967b034949": 649 + }, + "Headwear": { + "5aa7cfc0e5b5b00015693143": 1511, + "5c06c6a80db834001b735491": 1116, + "65719f0775149d62ce0a670b": 1514 + }, + "Holster": { + "5448bd6b4bdc2dfc2f8b4569": 17500, + "576a581d2459771e7b1bc4f1": 17160, + "59f98b4986f7746f546d2cef": 2687, + "5a17f98cfcdbcb0980087290": 4714 + }, + "Pockets": { + "557ffd194bdc2d28148b457f": 1 + }, + "Scabbard": {}, + "SecondPrimaryWeapon": {}, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": { + "5929a2a086f7744f4b234d43": 6214, + "59e7643b86f7742cbf2c109a": 6256, + "5ab8dab586f77441cd04f2a2": 6077, + "5b44c8ea86f7742d1627baf1": 6185, + "5ca20abf86f77418567a43f2": 6167, + "5d5d85c586f774279a21cbdb": 6222, + "60a6220e953894617404b00a": 4951 + } + }, + "items": { + "Backpack": {}, + "Pockets": { + "5448c12b4bdc2d02308b456f": 1445, + "5710c24ad2720bc3458b45a3": 85, + "576a5ed62459771e9c2096cb": 1153, + "590c678286f77426c9660122": 1577, + "59f99a7d86f7745b134aa97b": 210, + "5a0c27731526d80618476ac4": 1179, + "5a17fb03fcdbcbcae668728f": 346 + }, + "SecuredContainer": { + "56d59d3ad2720bdb418b4577": 94910, + "56dff061d2720bb5668b4567": 57710, + "573719762459775a626ccbc1": 100000, + "59e4cf5286f7741778269d8a": 53560, + "59e6906286f7746c9f75e847": 32440, + "5a26abfac4a28232980eabff": 15100, + "5a3c16fe86f77452b62de32a": 26340, + "5c3df7d588a4501f290594e5": 52060, + "64b7bbb74b75259c590fa897": 9483 + }, + "SpecialLoot": {}, + "TacticalVest": { + "5448be9a4bdc2dfd2f8b456a": 1277, + "5926c3b286f774640d189b6b": 992, + "599860ac86f77436b225ed1a": 1411, + "59c1383d86f774290a37e0ca": 892, + "59d6272486f77466146386ff": 1390, + "5aaa4194e5b5b055d06310a5": 1558, + "5bed61680db834001d2c45ab": 98 + } + }, + "mods": { + "5447a9cd4bdc2dbd208b4567": { + "mod_charge": [ + "55d44fd14bdc2d962f8b456e" + ], + "mod_magazine": [ + "5aaa5dfee5b5b000140293d3" + ], + "mod_pistol_grip": [ + "55d4b9964bdc2d1d4e8b456e" + ], + "mod_reciever": [ + "55d355e64bdc2d962f8b4569" + ], + "mod_stock": [ + "5649be884bdc2d79388b4577" + ] + }, + "5448bd6b4bdc2dfc2f8b4569": { + "mod_magazine": [ + "5448c12b4bdc2d02308b456f" + ], + "mod_pistolgrip": [ + "6374a7e7417239a7bf00f042" + ], + "mod_reciever": [ + "6374a822e629013b9c0645c8" + ] + }, + "55d355e64bdc2d962f8b4569": { + "mod_barrel": [ + "55d3632e4bdc2d972f8b4569" + ], + "mod_handguard": [ + "55d459824bdc2d892f8b4573" + ], + "mod_scope": [ + "570fd6c2d2720bc6458b457f" + ] + }, + "55d3632e4bdc2d972f8b4569": { + "mod_gas_block": [ + "5ae30e795acfc408fb139a0b" + ], + "mod_muzzle": [ + "56ea8180d2720bf2698b456a" + ] + }, + "55d459824bdc2d892f8b4573": { + "mod_handguard": [ + "637f57b78d137b27f70c496a" + ], + "mod_tactical_003": [ + "57d17e212459775a1179a0f5" + ] + }, + "5648a7494bdc2d9d488b4583": { + "Soft_armor_back": [ + "65703fa06584602f7d057a8e" + ], + "Soft_armor_front": [ + "65703d866584602f7d057a8a" + ], + "Soft_armor_left": [ + "65703fe46a912c8b5c03468b" + ], + "soft_armor_right": [ + "657040374e67e8ec7a0d261c" + ] + }, + "5649be884bdc2d79388b4577": { + "mod_stock_000": [ + "55d4ae6c4bdc2d8b2f8b456e" + ] + }, + "56ea8180d2720bf2698b456a": { + "mod_muzzle": [ + "57dbb57e2459774673234890" + ] + }, + "576a581d2459771e7b1bc4f1": { + "mod_magazine": [ + "576a5ed62459771e9c2096cb" + ], + "mod_pistol_grip": [ + "576a63cd2459771e796e0e11" + ] + }, + "57d17e212459775a1179a0f5": { + "mod_flashlight": [ + "57d17c5e2459775a5c57d17d" + ] + }, + "5926bb2186f7744b1c6c6e60": { + "mod_charge": [ + "5926c32286f774616e42de99" + ], + "mod_magazine": [ + "5926c3b286f774640d189b6b" + ], + "mod_reciever": [ + "5926c0df86f77462f647f764" + ], + "patron_in_weapon": [ + "5a3c16fe86f77452b62de32a", + "64b7bbb74b75259c590fa897" + ] + }, + "5926c0df86f77462f647f764": { + "mod_handguard": [ + "5d19cd96d7ad1a4a992c9f52" + ], + "mod_muzzle": [ + "5c0000c00db834001a6697fc" + ], + "mod_sight_rear": [ + "5926d2be86f774134d668e4e" + ], + "mod_stock": [ + "5926d3c686f77410de68ebc8" + ] + }, + "59984ab886f7743e98271174": { + "mod_gas_block": [ + "59ccd11386f77428f24a488f" + ], + "mod_magazine": [ + "599860ac86f77436b225ed1a" + ], + "mod_muzzle": [ + "59bfc5c886f7743bf6794e62" + ], + "mod_pistol_grip": [ + "5998517986f7746017232f7e" + ], + "mod_reciever": [ + "59985a6c86f77414ec448d17" + ], + "patron_in_weapon": [ + "5c3df7d588a4501f290594e5" + ] + }, + "59985a6c86f77414ec448d17": { + "mod_scope": [ + "591c4efa86f7741030027726" + ] + }, + "59c6633186f7740cf0493bb9": { + "mod_handguard": [ + "5cbda392ae92155f3c17c39f" + ] + }, + "59ccd11386f77428f24a488f": { + "mod_handguard": [ + "5c617a5f2e2216000f1e81b3" + ] + }, + "59e0bdb186f774156f04ce82": { + "mod_tactical": [ + "56def37dd2720bec348b456a" + ] + }, + "59f98b4986f7746f546d2cef": { + "mod_magazine": [ + "59f99a7d86f7745b134aa97b" + ] + }, + "59ff346386f77477562ff5e2": { + "mod_gas_block": [ + "5cf656f2d7f00c06585fb6eb" + ], + "mod_magazine": [ + "59d6272486f77466146386ff" + ], + "mod_muzzle": [ + "59d64fc686f774171b243fe2", + "5a0d63621526d8dba31fe3bf" + ], + "mod_pistol_grip_akms": [ + "5a0071d486f77404e23a12b2" + ], + "mod_reciever": [ + "59d6507c86f7741b846413a2" + ], + "mod_sight_rear": [ + "59d650cf86f7741b846413a4" + ], + "mod_stock_akms": [ + "59ff3b6a86f77477562ff5ed" + ] + }, + "5a17f98cfcdbcb0980087290": { + "mod_magazine": [ + "5a17fb03fcdbcbcae668728f" + ], + "mod_pistol_grip": [ + "5a17fc70fcdbcb0176308b3d" + ], + "mod_sight_front": [ + "5aba62f8d8ce87001943946b" + ], + "mod_sight_rear": [ + "5aba637ad8ce87001773e17f" + ] + }, + "5aa7cfc0e5b5b00015693143": { + "Helmet_back": [ + "657bab6ec6f689d3a205b85f" + ], + "Helmet_ears": [ + "657babc6f58ba5a6250107a2" + ], + "Helmet_top": [ + "657baaf0b7e9ca9a02045c02" + ] + }, + "5ac4cd105acfc40016339859": { + "mod_gas_block": [ + "59c6633186f7740cf0493bb9" + ], + "mod_magazine": [ + "5cbdaf89ae9215000e5b9c94" + ], + "mod_muzzle": [ + "564caa3d4bdc2d17108b458e", + "5ac7655e5acfc40016339a19" + ], + "mod_pistol_grip": [ + "5649ade84bdc2d1b2b8b4587" + ], + "mod_reciever": [ + "5ac50da15acfc4001718d287" + ], + "mod_sight_rear": [ + "5ac72e475acfc400180ae6fe" + ], + "mod_stock": [ + "5ac50c185acfc400163398d4" + ] + }, + "5b44d22286f774172b0c9de8": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c" + ], + "Collar": [ + "65705cea4916448ae1050897" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c" + ], + "Soft_armor_back": [ + "65705c3c14f2ed6d7d0b7738" + ], + "Soft_armor_front": [ + "65704de13e7bba58ea0285c8" + ], + "Soft_armor_left": [ + "65705c777260e1139e091408" + ], + "soft_armor_right": [ + "65705cb314f2ed6d7d0b773c" + ] + }, + "5c0000c00db834001a6697fc": { + "mod_muzzle": [ + "5c6165902e22160010261b28" + ] + }, + "5c06c6a80db834001b735491": { + "Helmet_back": [ + "657119d49eb8c145180dbb95" + ], + "Helmet_ears": [ + "657119fea330b8c9060f7afc" + ], + "Helmet_top": [ + "6571199565daf6aa960c9b10" + ] + }, + "5c0e51be86f774598e797894": { + "Back_plate": [ + "656efd66034e8e01c407f35c" + ], + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "Soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "Soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "Soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0e53c886f7747fa54205c7": { + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "back_plate": [ + "656efd66034e8e01c407f35c" + ], + "front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0e57ba86f7747fa141986d": { + "Back_plate": [ + "657b22485f444d6dff0c6c2f" + ], + "Collar": [ + "657080ca12755ae0d907ad5e" + ], + "Front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "Groin": [ + "65708122f65e2491bf009755" + ], + "Groin_back": [ + "65708165696fe382cf073255" + ], + "Soft_armor_back": [ + "6570800612755ae0d907acf8" + ], + "Soft_armor_front": [ + "65707fc348c7a887f2010432" + ], + "Soft_armor_left": [ + "65708070f65e2491bf00972c" + ], + "soft_armor_right": [ + "657080a212755ae0d907ad04" + ] + }, + "5c0e5bab86f77461f55ed1f3": { + "Collar": [ + "6571babb4076795e5e07383f" + ], + "Front_plate": [ + "654a4dea7c17dec2f50cc86a" + ], + "Groin": [ + "6571bac34076795e5e073843" + ], + "Groin_back": [ + "6571babf4cb80d995d0a1494" + ], + "Soft_armor_back": [ + "6571baa74cb80d995d0a1490" + ], + "Soft_armor_front": [ + "6571b27a6d84a2b8b6007f92" + ], + "Soft_armor_left": [ + "6571baac6d84a2b8b6007fa3" + ], + "soft_armor_right": [ + "6571bab0f41985531a038091" + ] + }, + "5c0e5edb86f77461f55ed1f7": { + "Back_plate": [ + "656fac30c6baea13cd07e10c" + ], + "Collar": [ + "6571dbef88ead79fcf091d79" + ], + "Front_plate": [ + "656f57dc27aed95beb08f628" + ], + "Soft_armor_back": [ + "6571dbda88ead79fcf091d75" + ], + "Soft_armor_front": [ + "6571dbd388ead79fcf091d71" + ], + "Soft_armor_left": [ + "6571dbe07c02ae206002502e" + ], + "soft_armor_right": [ + "6571dbeaee8ec43d520cf89e" + ] + }, + "5c617a5f2e2216000f1e81b3": { + "mod_tactical": [ + "5c5952732e2216398b5abda2" + ] + }, + "5cbda392ae92155f3c17c39f": { + "mod_foregrip": [ + "5c1bc5fb2e221602b1779b32" + ], + "mod_tactical_000": [ + "5b3a337e5acfc4704b4a19a0" + ] + }, + "5cf656f2d7f00c06585fb6eb": { + "mod_mount_001": [ + "59e0bdb186f774156f04ce82" + ] + }, + "5d19cd96d7ad1a4a992c9f52": { + "mod_tactical_001": [ + "56def37dd2720bec348b456a" + ] + }, + "609e8540d5c319764c2bc2e9": { + "Back_plate": [ + "656f9fa0498d1b7e3e071d98" + ], + "Front_plate": [ + "656f9fa0498d1b7e3e071d98" + ], + "Soft_armor_back": [ + "6572e52f73c0eabb700109a0" + ], + "Soft_armor_front": [ + "6572e5221b5bc1185508c24f" + ], + "Soft_armor_left": [ + "6572e53c73c0eabb700109a4" + ], + "soft_armor_right": [ + "6572e54873c0eabb700109a8" + ] + }, + "6374a822e629013b9c0645c8": { + "mod_sight_rear": [ + "63c6adcfb4ba094317063742" + ] + }, + "6499849fc93611967b034949": { + "mod_gas_block": [ + "649ec107961514b22506b10c" + ], + "mod_handguard": [ + "649ec127c93611967b034957" + ], + "mod_magazine": [ + "5bed61680db834001d2c45ab" + ], + "mod_muzzle": [ + "649ec2af961514b22506b10f" + ], + "mod_pistol_grip": [ + "5beec8ea0db834001a6f9dbf" + ], + "mod_reciever": [ + "649ec2f3961514b22506b111" + ], + "mod_stock_001": [ + "649ec87d8007560a9001ab36" + ] + }, + "649ec127c93611967b034957": { + "mod_mount_001": [ + "5beecbb80db834001d2c465e" + ] + }, + "649ec2f3961514b22506b111": { + "mod_scope": [ + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09" + ] + }, + "649ec87d8007560a9001ab36": { + "mod_stock": [ + "5beec8c20db834001d2c465c" + ] + }, + "64be79e2bf8412471d0d9bcc": { + "Soft_armor_back": [ + "657049d23425b19bbc0502f0" + ], + "Soft_armor_front": [ + "6570495b45d573133d0d6adb" + ] + }, + "65719f0775149d62ce0a670b": { + "Helmet_back": [ + "657fa168e9433140ad0baf8e" + ], + "Helmet_ears": [ + "657fa186d4caf976440afe42" + ], + "Helmet_top": [ + "657fa0fcd4caf976440afe3e" + ] + } + } + }, + "lastName": [], + "skills": { + "Common": {} } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/followergluharsecurity.json b/Libraries/SptAssets/Assets/database/bots/types/followergluharsecurity.json index 47b10ffa..28dd384a 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followergluharsecurity.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followergluharsecurity.json @@ -4,1072 +4,2198 @@ "5d28ae2986f7742926686185": 1 }, "feet": { - "5d28af5386f774292364a6e8": 1407, "5d28af3486f774292364a6e7": 1397, + "5d28af5386f774292364a6e8": 1407, "5d5e7f4986f7746956659f8a": 1402 }, "hands": { "5cc2e68f14c02e28b47de290": 1 }, "head": { - "5f68c4a7c174a17c0f4c8945": 8329, - "5d28afe786f774292668618d": 8311, - "5cde9ff17d6c8b0474535daa": 8468, "5cc2e4d014c02e000d0115f8": 8450, + "5cde9ff17d6c8b0474535daa": 8468, + "5d28afe786f774292668618d": 8311, + "5f68c4a7c174a17c0f4c8945": 8329, "5f68c4c217d579077152a252": 8514 }, "voice": { - "Scav_3": 6930, - "Scav_5": 7010, - "Scav_2": 7011, "Scav_1": 7064, + "Scav_2": 7011, + "Scav_3": 6930, "Scav_4": 7096, + "Scav_5": 7010, "Scav_6": 6961 } }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 49, + "Backpack": 86, + "Earpiece": 0, + "Eyewear": 0, + "FaceCover": 100, + "FirstPrimaryWeapon": 100, + "Headwear": 82, + "Holster": 0, + "Pockets": 100, + "Scabbard": 0, + "SecondPrimaryWeapon": 93, + "SecuredContainer": 100, + "TacticalVest": 100 + }, + "equipmentMods": { + "back_plate": 100, + "front_plate": 100, + "left_side_plate": 47, + "mod_equipment": 94, + "mod_equipment_000": 32, + "mod_equipment_001": 1, + "mod_equipment_002": 3, + "mod_mount": 0, + "mod_nvg": 0, + "right_side_plate": 47 + }, + "weaponMods": { + "mod_bipod": 100, + "mod_charge": 0, + "mod_charge_001": 0, + "mod_foregrip": 49, + "mod_launcher": 0, + "mod_magazine": 100, + "mod_mount": 32, + "mod_mount_000": 62, + "mod_mount_001": 0, + "mod_muzzle": 44, + "mod_reciever": 59, + "mod_scope": 86, + "mod_sight_rear": 38, + "mod_stock": 100, + "mod_stock_000": 100, + "mod_tactical": 95, + "mod_tactical_000": 0, + "mod_tactical_001": 100, + "mod_tactical_002": 0, + "mod_tactical_003": 0 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 50, + "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Boss", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 15, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 0, + "MIN_DIST_TO_ENEMY": 9, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 20, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 50, + "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Boss", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 15, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 0, + "MIN_DIST_TO_ENEMY": 9, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 20, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 50, + "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Boss", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 15, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 0, + "MIN_DIST_TO_ENEMY": 9, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 20, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BAD_SHOOTS_MAIN_COEF": 0.39, + "BAD_SHOOTS_MAX": 0, + "BAD_SHOOTS_MIN": 0, + "BAD_SHOOTS_OFFSET": 1, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "ENEMY_Y_WEAPON_OFFSET": 0.08, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.7, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 50, + "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Boss", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DIST_MAX_REWORK_NOT_TO_SHOOT": 15, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 0, + "MIN_DIST_TO_ENEMY": 9, + "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 20, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.01, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", + "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", + "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_BOT_TYPES": [ + "pmcBEAR", + "pmcUSEC" + ], + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIENDLY_BOT_TYPES": [], + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 5, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 330, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 300, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WARN_BOT_TYPES": [ + "assault" + ] + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_CHOOSE_RESERV": false, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, + "CHANCE_TO_CHANGE_WEAPON": 60, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + } + }, "experience": { + "aggressorBonus": { + "normal": 0.02 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": 325, - "max": 325 + "max": 325, + "min": 325 } }, "standingForKill": { "normal": -0.05 }, - "aggressorBonus": { - "normal": 0.02 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 41, - "max": 41 - }, - "Chest": { - "min": 180, - "max": 180 - }, - "Stomach": { - "min": 125, - "max": 125 - }, - "LeftArm": { - "min": 115, - "max": 115 - }, - "RightArm": { - "min": 115, - "max": 115 - }, - "LeftLeg": { - "min": 115, - "max": 115 - }, - "RightLeg": { - "min": 115, - "max": 115 - } - } - ] - }, - "skills": { - "Common": {} - }, - "inventory": { - "equipment": { - "Headwear": { - "5aa7e4a4e5b5b000137b76f2": 7168, - "5e4bfc1586f774264f7582d3": 5888, - "61bca7cda0eae612383adf57": 5862, - "5a154d5cfcdbcb001a3b00da": 1679, - "5aa7e454e5b5b0214e506fa2": 7150, - "65719f0775149d62ce0a670b": 1244, - "5d5e9c74a4b9364855191c40": 4624, - "5d6d3716a4b9361bc8618872": 412, - "5aa7e276e5b5b000171d0647": 434, - "5ca20ee186f774799474abc2": 379 - }, - "Earpiece": {}, - "FaceCover": { - "5ab8f4ff86f77431c60d91ba": 350, - "6571bde39837cc51b800c212": 351 - }, - "ArmorVest": { - "5f5f41476bdad616ad46d631": 8243, - "5ca2151486f774244a3b8d30": 1149, - "6038b4b292ec1c3103795a0b": 595, - "5ab8e79e86f7742d8b372e78": 8378, - "5b44cd8b86f774503d30cba2": 606, - "60a283193cb70855c43a381d": 573, - "5c0e625a86f7742d77340f62": 583, - "545cdb794bdc2d3a198b456a": 576 - }, - "Eyewear": {}, - "ArmBand": {}, - "TacticalVest": { - "5d5d85c586f774279a21cbdb": 3450, - "59e7643b86f7742cbf2c109a": 5353, - "5c0e6a1586f77404597b4965": 2959, - "5ca20abf86f77418567a43f2": 5519, - "5929a2a086f7744f4b234d43": 5576, - "6040dd4ddcf9592f401632d2": 3029, - "592c2d1a86f7746dbe2af32a": 5476, - "5ab8dab586f77441cd04f2a2": 3443, - "5b44c8ea86f7742d1627baf1": 3055, - "603648ff5a45383c122086ac": 2191, - "5ab8dced86f774646209ec87": 794, - "5c0e722886f7740458316a57": 1227 - }, - "Backpack": { - "656ddcf0f02d7bcea90bf395": 3364, - "5e9dcf5986f7746c417435b3": 8120, - "5ca20d5986f774331e7c9602": 12340, - "544a5cde4bdc2d39388b456b": 12360, - "5e4abc6786f77406812bd572": 391 - }, - "FirstPrimaryWeapon": { - "576165642459773c7a400233": 8291, - "5e848cc2988a8701445df1e8": 2960, - "5ac66d725acfc43b321d4b60": 12150, - "65268d8ecb944ff1e90ea385": 3754, - "5447a9cd4bdc2dbd208b4567": 5599, - "5d2f0d8048f0356c925bc3b0": 5455, - "6513ef33e06849f06c0957ca": 3716, - "66ffa9b66e19cc902401c5e8": 139 - }, - "SecondPrimaryWeapon": { - "56dee2bdd2720bc8328b4567": 1329, - "54491c4f4bdc2db1078b4568": 1324, - "57d14d2524597714373db789": 1287 - }, - "Holster": {}, - "Scabbard": {}, - "Pockets": { - "557ffd194bdc2d28148b457f": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - } - }, - "Ammo": { - "Caliber12g": { - "5c0d591486f7744c505b416f": 120, - "560d5e524bdc2d25448b4571": 57, - "58820d1224597753c90aeb13": 23 - }, - "Caliber23x75": { - "5e85a9f4add9fe03027d9bf1": 503, - "5e85aa1a988a8701445df1f5": 1200, - "5e85a9a6eacf8c039e4e2ac1": 1250 - }, - "Caliber762x39": { - "59e4cf5286f7741778269d8a": 3700, - "64b7af434b75259c590fa893": 276, - "5656d7c34bdc2d9d198b4587": 1810, - "64b7af5a8532cf95ee0a0dbd": 261 - }, - "Caliber556x45NATO": { - "59e6906286f7746c9f75e847": 1 - }, - "Caliber9x18PM": { - "57372140245977611f70ee91": 1 - }, - "Caliber9x19PARA": { - "64b7bbb74b75259c590fa897": 3270, - "5c3df7d588a4501f290594e5": 1050, - "5a3c16fe86f77452b62de32a": 1010, - "5c925fa22e221601da359b7b": 107 - } - }, - "mods": { - "576165642459773c7a400233": { - "mod_handguard": [ - "58272b392459774b4c7b3ccd" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_muzzle": [ - "59c0ec5b86f77435b128bfca" - ], - "mod_magazine": [ - "5cf8f3b0d7f00c00217872ef", - "5a966f51a2750c00156aacf6", - "57616a9e2459773c7a400234" - ], - "patron_in_weapon": [ - "5c0d591486f7744c505b416f", - "560d5e524bdc2d25448b4571", - "58820d1224597753c90aeb13" - ], - "mod_stock": [ - "5cf50fc5d7f00c056c53f83c" - ] - }, - "58272b392459774b4c7b3ccd": { - "mod_scope": [ - "584984812459776a704a82a6" - ], - "mod_tactical_001": [ - "5b3a337e5acfc4704b4a19a0" - ] - }, - "5e848cc2988a8701445df1e8": { - "mod_barrel": [ - "5e848d1c264f7c180b5e35a9" - ], - "mod_handguard": [ - "5e848d51e4dbc5266a4ec63b" - ], - "mod_stock": [ - "5e848d99865c0f329958c83b" - ], - "mod_magazine": [ - "5f647d9f8499b57dc40ddb93" - ] - }, - "5e848d99865c0f329958c83b": { - "mod_stock": [ - "5e848dc4e4dbc5266a4ec63d" - ] - }, - "5aa7e4a4e5b5b000137b76f2": { - "Helmet_top": [ - "657f925dada5fadd1f07a57a" - ], - "Helmet_back": [ - "657f92acada5fadd1f07a57e" - ], - "Helmet_ears": [ - "657f92e7f4c82973640b2354" - ], - "mod_equipment": [ - "5aa7e3abe5b5b000171d064d" - ] - }, - "5ac66d725acfc43b321d4b60": { - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac733a45acfc400192630e2" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ], - "mod_gas_block": [ - "59e649f986f77411d949b246" - ], - "mod_muzzle": [ - "5649ab884bdc2ded0b8b457f", - "5cc9ad73d7f00c000e2579d4", - "5ac72e895acfc43b321d4bd5" - ], - "mod_magazine": [ - "5cbdc23eae9215001136a407", - "5ac66bea5acfc43b321d4aec" - ] - }, - "59e649f986f77411d949b246": { - "mod_handguard": [ - "5d1b198cd7ad1a604869ad72", - "5c9a07572e221644f31c4b32", - "5d4aaa54a4b9365392071170" - ] - }, - "5d1b198cd7ad1a604869ad72": { - "mod_foregrip": [ - "57cffce524597763b31685d8" - ] - }, - "56dee2bdd2720bc8328b4567": { - "mod_barrel": [ - "56deec93d2720bec348b4568" - ], - "mod_handguard": [ - "56deed6ed2720b4c698b4583" - ], - "mod_stock": [ - "56083be64bdc2d20478b456f" - ], - "mod_mount_000": [ - "55d48ebc4bdc2d8c2f8b456c" - ], - "mod_magazine": [ - "56deeefcd2720bc8328b4568" - ] - }, - "55d48ebc4bdc2d8c2f8b456c": { - "mod_tactical_001": [ - "5a5f1ce64f39f90b401987bc", - "5b3a337e5acfc4704b4a19a0" - ] - }, - "5f5f41476bdad616ad46d631": { - "Front_plate": [ - "656f664200d62bcd2e024077" - ], - "Back_plate": [ - "657b2797c3dbcb01d60c35ea" - ], - "Left_side_plate": [ - "654a4f8bc721968a4404ef18" - ], - "Right_side_plate": [ - "654a4f8bc721968a4404ef18" - ], - "Soft_armor_front": [ - "65731b46cea9255e2102360a" - ], - "Soft_armor_back": [ - "65731b4fcea9255e2102360e" - ], - "Soft_armor_left": [ - "65731b576e709cddd001ec3f" - ], - "soft_armor_right": [ - "65731b60ff6dc44a7d068c4a" - ], - "Collar": [ - "65731b666e709cddd001ec43" - ], - "Groin": [ - "65731b716e709cddd001ec47" - ], - "Groin_back": [ - "65731b6b6042b0f210020ef6" - ] - }, - "65268d8ecb944ff1e90ea385": { - "mod_stock": [ - "6513f1798cb24472490ee331" - ], - "mod_barrel": [ - "6513eff1e06849f06c0957d4", - "65266fd43341ed9aa903dd56" - ], - "mod_handguard": [ - "6513f05a94c72326990a3866" - ], - "mod_sight_rear": [ - "6513f153e63f29908d0ffaba" - ], - "mod_scope": [ - "618a75c9a3884f56c957ca1b", - "5cf638cbd7f00c06595bc936", - "57486e672459770abd687134" - ], - "mod_magazine": [ - "6513f0a194c72326990a3868" - ] - }, - "6513f1798cb24472490ee331": { - "mod_pistolgrip": [ - "6513f13a8cb24472490ee32f" - ] - }, - "6513eff1e06849f06c0957d4": { - "mod_bipod": [ - "6513f037e06849f06c0957d7" - ], - "mod_muzzle": [ - "6513f0f5e63f29908d0ffab8" - ] - }, - "618a75c9a3884f56c957ca1b": { - "mod_scope": [ - "618a75f0bd321d49084cd399" - ] - }, - "5e4bfc1586f774264f7582d3": { - "Helmet_top": [ - "657f9c78ada5fadd1f07a58d" - ], - "Helmet_back": [ - "657f9cb587e11c61f70bfaca" - ], - "mod_equipment_000": [ - "5a16b7e1fcdbcb00165aa6c9" - ] - }, - "5cf50fc5d7f00c056c53f83c": { - "mod_stock": [ - "5a9eb32da2750c00171b3f9c" - ] - }, - "5447a9cd4bdc2dbd208b4567": { - "mod_pistol_grip": [ - "55d4b9964bdc2d1d4e8b456e" - ], - "mod_charge": [ - "55d44fd14bdc2d962f8b456e" - ], - "mod_reciever": [ - "55d355e64bdc2d962f8b4569" - ], - "mod_stock": [ - "591aef7986f774139d495f03", - "5649be884bdc2d79388b4577" - ], - "mod_magazine": [ - "544a37c44bdc2d25388b4567" - ] - }, - "55d355e64bdc2d962f8b4569": { - "mod_barrel": [ - "55d35ee94bdc2d61338b4568" - ], - "mod_handguard": [ - "5c78f2792e221600106f4683" - ], - "mod_scope": [ - "5c7d55f52e221644f31bff6a" - ] - }, - "55d35ee94bdc2d61338b4568": { - "mod_gas_block": [ - "56eabcd4d2720b66698b4574" - ], - "mod_muzzle": [ - "5a9fbb84a2750c00137fa685" - ] - }, - "5c78f2792e221600106f4683": { - "mod_mount_000": [ - "5b7be47f5acfc400170e2dd2" - ], - "mod_foregrip": [ - "5b7be4895acfc400170e2dd5" - ] - }, - "5b7be47f5acfc400170e2dd2": { - "mod_tactical": [ - "5a7b483fe899ef0016170d15", - "5d2369418abbc306c62e0c80", - "5b3a337e5acfc4704b4a19a0" - ] - }, - "5b7be4895acfc400170e2dd5": { - "mod_foregrip": [ - "5c87ca002e221600114cb150", - "5c1bc7752e221602b1779b34" - ] - }, - "5c7d55f52e221644f31bff6a": { - "mod_scope": [ - "5c7d560b2e22160bc12c6139" - ] - }, - "5c7d560b2e22160bc12c6139": { - "mod_scope": [ - "5c7d55de2e221644f31bff68" - ] - }, - "61bca7cda0eae612383adf57": { - "Helmet_top": [ - "657bbcc9a1c61ee0c3036327" - ], - "Helmet_back": [ - "657bbcffbbd440df880b2dd5" - ] - }, - "5ca2151486f774244a3b8d30": { - "Front_plate": [ - "65573fa5655447403702a816" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Soft_armor_front": [ - "6575dd3e9e27f4a85e081142" - ], - "Soft_armor_back": [ - "6575dd519e27f4a85e081146" - ], - "Soft_armor_left": [ - "6575dd64945bf78edd04c438" - ], - "soft_armor_right": [ - "6575dd6e9d3a0ddf660b9047" - ], - "Collar": [ - "6575dd769d3a0ddf660b904b" - ], - "Groin": [ - "6575dd800546f8b1de093df6" - ], - "Groin_back": [ - "6575dd94945bf78edd04c43c" - ] - }, - "5649be884bdc2d79388b4577": { - "mod_stock_000": [ - "55d4ae6c4bdc2d8b2f8b456e" - ] - }, - "54491c4f4bdc2db1078b4568": { - "mod_barrel": [ - "55d4491a4bdc2d882f8b456e" - ], - "mod_handguard": [ - "55d45d3f4bdc2d972f8b456c" - ], - "mod_stock": [ - "56083cba4bdc2de22e8b456f" - ], - "mod_mount_000": [ - "55d48ebc4bdc2d8c2f8b456c" - ], - "mod_magazine": [ - "55d485804bdc2d8c2f8b456b" - ] - }, - "57d14d2524597714373db789": { - "mod_pistol_grip": [ - "57d152ec245977144076ccdf" - ], - "mod_mount": [ - "57ee59b42459771c7b045da5" - ], - "mod_magazine": [ - "57d1519e24597714373db79d" - ] - }, - "57ee59b42459771c7b045da5": { - "mod_scope": [ - "57ae0171245977343c27bfcf" - ], - "mod_tactical": [ - "5a5f1ce64f39f90b401987bc" - ] - }, - "5a154d5cfcdbcb001a3b00da": { - "Helmet_top": [ - "657f8ec5f4c82973640b234c" - ], - "Helmet_back": [ - "657f8f10f4c82973640b2350" - ], - "mod_equipment_000": [ - "5a16b7e1fcdbcb00165aa6c9", - "5a16badafcdbcb001865f72d" - ] - }, - "5d2f0d8048f0356c925bc3b0": { - "mod_reciever": [ - "5d2f261548f03576f500e7b7" - ], - "mod_charge": [ - "5d2f2d5748f03572ec0c0139" - ], - "mod_magazine": [ - "5926c3b286f774640d189b6b", - "5a351711c4a282000b1521a4" - ], - "patron_in_weapon": [ - "64b7bbb74b75259c590fa897", - "5c3df7d588a4501f290594e5", - "5a3c16fe86f77452b62de32a", - "5c925fa22e221601da359b7b" - ] - }, - "5d2f261548f03576f500e7b7": { - "mod_handguard": [ - "5d2f259b48f0355a844acd74" - ], - "mod_stock": [ - "5d2f25bc48f03502573e5d85" - ], - "mod_mount": [ - "5926dad986f7741f82604363" - ] - }, - "5926dad986f7741f82604363": { - "mod_scope": [ - "5d2da1e948f035477b1ce2ba", - "5a33b2c9c4a282000c5a9511" - ] - }, - "5aa7e454e5b5b0214e506fa2": { - "Helmet_top": [ - "657f925dada5fadd1f07a57a" - ], - "Helmet_back": [ - "657f92acada5fadd1f07a57e" - ], - "Helmet_ears": [ - "657f92e7f4c82973640b2354" - ], - "mod_equipment": [ - "5aa7e3abe5b5b000171d064d" - ] - }, - "6038b4b292ec1c3103795a0b": { - "Front_plate": [ - "656fa76500d62bcd2e024080" - ], - "Back_plate": [ - "656fa76500d62bcd2e024080" - ], - "Soft_armor_front": [ - "6575e71760703324250610c3" - ], - "Soft_armor_back": [ - "6575e72660703324250610c7" - ] - }, - "5c9a07572e221644f31c4b32": { - "mod_mount_000": [ - "5b7be47f5acfc400170e2dd2" - ], - "mod_foregrip": [ - "57cffb66245977632f391a99" - ] - }, - "65719f0775149d62ce0a670b": { - "Helmet_top": [ - "657fa0fcd4caf976440afe3e" - ], - "Helmet_back": [ - "657fa168e9433140ad0baf8e" - ], - "Helmet_ears": [ - "657fa186d4caf976440afe42" - ], - "mod_equipment_000": [ - "65719f9ef392ad76c50a2ec8" - ] - }, - "5ab8e79e86f7742d8b372e78": { - "Front_plate": [ - "656f611f94b480b8a500c0db" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Soft_armor_front": [ - "65732688d9d89ff7ac0d9c4c" - ], - "Soft_armor_back": [ - "657326978c1cc6dcd9098b56" - ], - "Soft_armor_left": [ - "657326a28c1cc6dcd9098b5a" - ], - "soft_armor_right": [ - "657326b08c1cc6dcd9098b5e" - ], - "Collar": [ - "657326bc5d3a3129fb05f36b" - ] - }, - "5a33b2c9c4a282000c5a9511": { - "mod_scope": [ - "5a32aa8bc4a2826c6e06d737" - ] - }, - "5ab8dced86f774646209ec87": { - "Front_plate": [ - "656fa25e94b480b8a500c0e0" - ], - "Back_plate": [ - "656fa25e94b480b8a500c0e0" - ], - "Soft_armor_front": [ - "6570f6e774d84423df065f21" - ], - "Soft_armor_back": [ - "6570f71dd67d0309980a7af8" - ], - "Soft_armor_left": [ - "6570f74774d84423df065f25" - ], - "soft_armor_right": [ - "6570f79c4c65ab77a6015121" - ] - }, - "5b44cd8b86f774503d30cba2": { - "Front_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Back_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Left_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Right_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Soft_armor_front": [ - "6575c2adefc786cd9101a5d9" - ], - "Soft_armor_back": [ - "6575c2be52b7f8c76a05ee25" - ], - "Soft_armor_left": [ - "6575c2cd52b7f8c76a05ee29" - ], - "soft_armor_right": [ - "6575c2d852b7f8c76a05ee2d" - ], - "Collar": [ - "6575c2e4efc786cd9101a5dd" - ], - "Shoulder_l": [ - "6575c2f7efc786cd9101a5e1" - ], - "Shoulder_r": [ - "6575c30352b7f8c76a05ee31" - ], - "Groin": [ - "6575c31b52b7f8c76a05ee35" - ], - "Groin_back": [ - "6575c326c6700bd6b40e8a80" - ] - }, - "6513ef33e06849f06c0957ca": { - "mod_stock": [ - "6513f1798cb24472490ee331" - ], - "mod_barrel": [ - "6513eff1e06849f06c0957d4", - "65266fd43341ed9aa903dd56" - ], - "mod_handguard": [ - "6513f05a94c72326990a3866" - ], - "mod_sight_rear": [ - "6513f153e63f29908d0ffaba" - ], - "mod_magazine": [ - "6513f0a194c72326990a3868" - ] - }, - "5c0e722886f7740458316a57": { - "Front_plate": [ - "656fa0fb498d1b7e3e071d9c" - ], - "Back_plate": [ - "656fa0fb498d1b7e3e071d9c" - ], - "Soft_armor_front": [ - "65730c0e292ecadbfa09ad49" - ], - "Soft_armor_back": [ - "65730c2213a2f660f60bea96" - ], - "Soft_armor_left": [ - "65730c2b292ecadbfa09ad50" - ], - "soft_armor_right": [ - "65730c35292ecadbfa09ad54" - ] - }, - "5d5e9c74a4b9364855191c40": { - "Helmet_top": [ - "657f8b94f92cd718b70154ff" - ], - "Helmet_back": [ - "657f8b43f92cd718b70154fb" - ] - }, - "60a283193cb70855c43a381d": { - "Front_plate": [ - "656fa61e94b480b8a500c0e8" - ], - "Back_plate": [ - "656fa61e94b480b8a500c0e8" - ], - "Left_side_plate": [ - "64afdb577bb3bfe8fe03fd1d" - ], - "Right_side_plate": [ - "64afdb577bb3bfe8fe03fd1d" - ], - "Soft_armor_front": [ - "6575d561b15fef3dd4051670" - ], - "Soft_armor_back": [ - "6575d56b16c2762fba005818" - ], - "Soft_armor_left": [ - "6575d57a16c2762fba00581c" - ], - "soft_armor_right": [ - "6575d589b15fef3dd4051674" - ], - "Collar": [ - "6575d598b15fef3dd4051678" - ], - "Shoulder_l": [ - "6575d5b316c2762fba005824" - ], - "Shoulder_r": [ - "6575d5bd16c2762fba005828" - ], - "Groin": [ - "6575d5a616c2762fba005820" - ] - }, - "618a75f0bd321d49084cd399": { - "mod_tactical": [ - "618a760e526131765025aae3" - ] - }, - "5d6d3716a4b9361bc8618872": { - "Helmet_top": [ - "657fa009d4caf976440afe3a" - ], - "Helmet_back": [ - "657fa04ac6679fefb3051e24" - ], - "Helmet_ears": [ - "657fa07387e11c61f70bface" - ], - "mod_equipment_001": [ - "5d6d3be5a4b9361bc73bc763" - ], - "mod_equipment_002": [ - "5d6d3943a4b9360dbc46d0cc" - ], - "mod_equipment_000": [ - "5d6d3829a4b9361bc8618943" - ] - }, - "5cf638cbd7f00c06595bc936": { - "mod_tactical": [ - "5cf639aad7f00c065703d455" - ] - }, - "5c0e625a86f7742d77340f62": { - "Front_plate": [ - "656f63c027aed95beb08f62c" - ], - "Back_plate": [ - "656fafe3498d1b7e3e071da4" - ], - "Left_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Right_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Soft_armor_front": [ - "65764275d8537eb26a0355e9" - ], - "Soft_armor_back": [ - "657642b0e6d5dd75f40688a5" - ], - "Soft_armor_left": [ - "6576434820cc24d17102b148" - ], - "soft_armor_right": [ - "657643732bc38ef78e076477" - ], - "Collar": [ - "657643a220cc24d17102b14c" - ] - }, - "545cdb794bdc2d3a198b456a": { - "Front_plate": [ - "64afc71497cf3a403c01ff38" - ], - "Back_plate": [ - "64afc71497cf3a403c01ff38" - ], - "Left_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Right_side_plate": [ - "64afd81707e2cf40e903a316" - ], - "Soft_armor_front": [ - "6575ce3716c2762fba0057fd" - ], - "Soft_armor_back": [ - "6575ce45dc9932aed601c616" - ], - "Soft_armor_left": [ - "6575ce5016c2762fba005802" - ], - "soft_armor_right": [ - "6575ce5befc786cd9101a671" - ], - "Collar": [ - "6575ce6f16c2762fba005806" - ], - "Shoulder_l": [ - "6575ce9db15fef3dd4051628" - ], - "Shoulder_r": [ - "6575cea8b15fef3dd405162c" - ], - "Groin": [ - "6575ce8bdc9932aed601c61e" - ] - }, - "5d4aaa54a4b9365392071170": { - "mod_foregrip": [ - "5b7be4895acfc400170e2dd5" - ], - "mod_mount_001": [ - "5b7be47f5acfc400170e2dd2" - ] - }, - "5aa7e276e5b5b000171d0647": { - "Helmet_top": [ - "657bc06daab96fccee08be9b" - ], - "Helmet_back": [ - "657bc0d8a1c61ee0c303632f" - ], - "Helmet_ears": [ - "657bc107aab96fccee08be9f" - ], - "mod_equipment": [ - "5aa7e373e5b5b000137b76f0" - ] - }, - "5ca20ee186f774799474abc2": { - "Helmet_top": [ - "657bbe73a1c61ee0c303632b" - ], - "Helmet_back": [ - "657bbed0aab96fccee08be96" - ], - "Helmet_ears": [ - "657bbefeb30eca9763051189" - ], - "mod_equipment": [ - "5ca2113f86f7740b2547e1d2" - ] - }, - "66ffa9b66e19cc902401c5e8": { - "mod_stock": [ - "66ffac9e316b08f6840a73e6" - ], - "mod_barrel": [ - "66ffac601f7492c901027bbb" - ], - "mod_magazine": [ - "66ffaab91f7492c901027bb8" - ] - } - }, - "items": { - "TacticalVest": { - "57616a9e2459773c7a400234": 10000, - "5710c24ad2720bc3458b45a3": 10000, - "5448be9a4bdc2dfd2f8b456a": 10000, - "5a01c29586f77474660c694c": 10000, - "59c1383d86f774290a37e0ca": 7966, - "57d1519e24597714373db79d": 10000, - "5926c3b286f774640d189b6b": 3739, - "5a351711c4a282000b1521a4": 3873, - "6513f0a194c72326990a3868": 221, - "66ffaab91f7492c901027bb8": 193 - }, - "Pockets": { - "590c678286f77426c9660122": 571, - "544fb3f34bdc2d03748b456a": 455, - "5e85a9f4add9fe03027d9bf1": 19, - "5c0d591486f7744c505b416f": 322, - "5e85aa1a988a8701445df1f5": 31, - "5c0e530286f7747fa1419862": 59, - "5e85a9a6eacf8c039e4e2ac1": 44 - }, - "Backpack": { - "5c0fa877d174af02a012e1cf": 7508, - "5e8488fa988a8701445df1e4": 409, - "5af0548586f7743a532b7e99": 145, - "5c0e530286f7747fa1419862": 152, - "5751a25924597722c463c472": 1263, - "544fb3f34bdc2d03748b456a": 163, - "5c94bbff86f7747ee735c08f": 2870, - "5ed515e03a40a50460332579": 94, - "5af0454c86f7746bf20992e8": 529, - "66507eabf5ddb0818b085b68": 46, - "5c0e531d86f7747fa23f4d42": 416, - "590c678286f77426c9660122": 163, - "590c661e86f7741e566b646a": 425, - "5d02797c86f774203f38e30a": 151, - "544fb25a4bdc2dfb738b4567": 1360, - "544fb37f4bdc2dee738b4567": 681, - "544fb45d4bdc2dee738b4568": 540, - "5755356824597772cb798962": 657, - "5e831507ea0a7c419c2f9bd9": 405, - "590c657e86f77412b013051d": 266, - "60098af40accd37ef2175f27": 448, - "5755383e24597772cb798966": 169, - "544fb3364bdc2d34748b456a": 1056, - "637b612fb7afa97bfc3d7005": 94, - "5c0e531286f7747fa54205c2": 158, - "60098ad7c2240c0fe85c570a": 352, - "5ed51652f6c34d2cc26336a1": 75, - "5c0e533786f7747fa23f4d47": 177, - "5ed515ece452db0eb56fc028": 85, - "637b6179104668754b72f8f5": 82, - "5d02778e86f774203e7dedbe": 170, - "590c695186f7741e566b64a2": 157, - "5c0e534186f7747fa1419867": 142, - "5ed515f6915ec335206e4152": 78, - "5ed515c8d380ab312177c0fa": 179, - "5fca13ca637ee0341a484f46": 82, - "637b6251104668754b72f8f9": 47, - "637b620db7afa97bfc3d7009": 71, - "5ed5160a87bb8443d10680b5": 76, - "5c10c8fd86f7743d7d706df3": 164, - "5fca138c2a7b221b2852a5c6": 31, - "5751a89d24597722aa0e8db0": 43, - "637b60c3b7afa97bfc3d7001": 31, - "5ed5166ad380ab312177c100": 33 - }, - "SecuredContainer": { - "5c0d591486f7744c505b416f": 100000, - "5e85a9f4add9fe03027d9bf1": 4877, - "59e4cf5286f7741778269d8a": 95720, - "64b7af434b75259c590fa893": 12910, - "560d5e524bdc2d25448b4571": 41520, - "59e6906286f7746c9f75e847": 54220, - "5e85aa1a988a8701445df1f5": 11690, - "57372140245977611f70ee91": 100000, - "64b7bbb74b75259c590fa897": 31760, - "5656d7c34bdc2d9d198b4587": 69210, - "5c3df7d588a4501f290594e5": 10200, - "64b7af5a8532cf95ee0a0dbd": 12180, - "5a3c16fe86f77452b62de32a": 9827, - "58820d1224597753c90aeb13": 16780, - "5e85a9a6eacf8c039e4e2ac1": 12160, - "5c925fa22e221601da359b7b": 1052 - }, - "SpecialLoot": {} - } - }, "firstName": [ "Человек", "Ряха", @@ -1100,2210 +2226,8 @@ "Райан", "Плутон" ], - "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 20, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 0, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 15, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Boss", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 50, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15, - "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 20, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 0, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 15, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Boss", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 50, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15, - "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 20, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 0, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 15, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Boss", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 50, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15, - "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 15, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "ENEMY_Y_WEAPON_OFFSET": 0.08, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.7, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BAD_SHOOTS_MIN": 0, - "BAD_SHOOTS_MAX": 0, - "BAD_SHOOTS_OFFSET": 1, - "BAD_SHOOTS_MAIN_COEF": 0.39 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 100, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 60, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 60, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.01, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MIN_TO_ENEMY_TO_BE_NOT_SAFE": 20, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 0, - "DIST_MAX_REWORK_NOT_TO_SHOOT": 15, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 50 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 1, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 60, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHOOSE_RESERV": false, - "CAN_CHECK_MAGAZINE": false, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 26, - "FAR_DIST": 56, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 5, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 330, - "STANDART_AMBUSH_DIST": 300, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1, - "PANIC_SIT_WEIGHT": 80, - "PANIC_LAY_WEIGHT": 20, - "PANIC_NONE_WEIGHT": 40, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60, - "DEFAULT_SAVAGE_BEHAVIOUR": "Warn", - "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", - "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "FRIENDLY_BOT_TYPES": [], - "WARN_BOT_TYPES": [ - "assault" - ], - "ENEMY_BOT_TYPES": [ - "pmcBEAR", - "pmcUSEC" - ] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 32, - "KILLA_LARGE_ATTACK_DIST": 61, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KOJANIY_COVER_POWER": 500, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, - "GLUHAR_FOLLOWER_PATH_NAME": "Boss", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 50, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15, - "GLUHAR_BOSS_DIST_TO_ENEMY_WANT_KILL": 25 - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 82, - "Earpiece": 0, - "FaceCover": 100, - "ArmorVest": 49, - "Eyewear": 0, - "ArmBand": 0, - "TacticalVest": 100, - "Backpack": 86, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 93, - "Holster": 0, - "Scabbard": 0, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_mount_000": 62, - "mod_muzzle": 44, - "mod_reciever": 59, - "mod_sight_rear": 38, - "mod_stock": 100, - "mod_magazine": 100, - "mod_charge": 0, - "mod_mount_001": 0, - "mod_scope": 86, - "mod_foregrip": 49, - "mod_tactical_000": 0, - "mod_tactical_001": 100, - "mod_tactical_002": 0, - "mod_launcher": 0, - "mod_mount": 32, - "mod_tactical_003": 0, - "mod_bipod": 100, - "mod_tactical": 95, - "mod_charge_001": 0, - "mod_stock_000": 100 - }, - "equipmentMods": { - "mod_equipment": 94, - "front_plate": 100, - "back_plate": 100, - "left_side_plate": 47, - "right_side_plate": 47, - "mod_equipment_000": 32, - "mod_nvg": 0, - "mod_mount": 0, - "mod_equipment_001": 1, - "mod_equipment_002": 3 - } - }, "generation": { "items": { - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, "backpackLoot": { "weights": { "0": 1, @@ -3317,6 +2241,67 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, "pocketLoot": { "weights": { "0": 1, @@ -3327,6 +2312,21 @@ }, "whitelist": [] }, + "specialItems": { + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, "vestLoot": { "weights": { "0": 1, @@ -3338,28 +2338,1032 @@ "6": 0 }, "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 1 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 2, - "2": 1, - "3": 1, - "4": 0, - "5": 0 - }, - "whitelist": [] } } + }, + "health": { + "BodyParts": [ + { + "Chest": { + "max": 180, + "min": 180 + }, + "Head": { + "max": 41, + "min": 41 + }, + "LeftArm": { + "max": 115, + "min": 115 + }, + "LeftLeg": { + "max": 115, + "min": 115 + }, + "RightArm": { + "max": 115, + "min": 115 + }, + "RightLeg": { + "max": 115, + "min": 115 + }, + "Stomach": { + "max": 125, + "min": 125 + } + } + ], + "Energy": { + "max": 100, + "min": 100 + }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { + "Ammo": { + "Caliber12g": { + "560d5e524bdc2d25448b4571": 57, + "58820d1224597753c90aeb13": 23, + "5c0d591486f7744c505b416f": 120 + }, + "Caliber23x75": { + "5e85a9a6eacf8c039e4e2ac1": 1250, + "5e85a9f4add9fe03027d9bf1": 503, + "5e85aa1a988a8701445df1f5": 1200 + }, + "Caliber556x45NATO": { + "59e6906286f7746c9f75e847": 1 + }, + "Caliber762x39": { + "5656d7c34bdc2d9d198b4587": 1810, + "59e4cf5286f7741778269d8a": 3700, + "64b7af434b75259c590fa893": 276, + "64b7af5a8532cf95ee0a0dbd": 261 + }, + "Caliber9x18PM": { + "57372140245977611f70ee91": 1 + }, + "Caliber9x19PARA": { + "5a3c16fe86f77452b62de32a": 1010, + "5c3df7d588a4501f290594e5": 1050, + "5c925fa22e221601da359b7b": 107, + "64b7bbb74b75259c590fa897": 3270 + } + }, + "equipment": { + "ArmBand": {}, + "ArmorVest": { + "545cdb794bdc2d3a198b456a": 576, + "5ab8e79e86f7742d8b372e78": 8378, + "5b44cd8b86f774503d30cba2": 606, + "5c0e625a86f7742d77340f62": 583, + "5ca2151486f774244a3b8d30": 1149, + "5f5f41476bdad616ad46d631": 8243, + "6038b4b292ec1c3103795a0b": 595, + "60a283193cb70855c43a381d": 573 + }, + "Backpack": { + "544a5cde4bdc2d39388b456b": 12360, + "5ca20d5986f774331e7c9602": 12340, + "5e4abc6786f77406812bd572": 391, + "5e9dcf5986f7746c417435b3": 8120, + "656ddcf0f02d7bcea90bf395": 3364 + }, + "Earpiece": {}, + "Eyewear": {}, + "FaceCover": { + "5ab8f4ff86f77431c60d91ba": 350, + "6571bde39837cc51b800c212": 351 + }, + "FirstPrimaryWeapon": { + "5447a9cd4bdc2dbd208b4567": 5599, + "576165642459773c7a400233": 8291, + "5ac66d725acfc43b321d4b60": 12150, + "5d2f0d8048f0356c925bc3b0": 5455, + "5e848cc2988a8701445df1e8": 2960, + "6513ef33e06849f06c0957ca": 3716, + "65268d8ecb944ff1e90ea385": 3754, + "66ffa9b66e19cc902401c5e8": 139 + }, + "Headwear": { + "5a154d5cfcdbcb001a3b00da": 1679, + "5aa7e276e5b5b000171d0647": 434, + "5aa7e454e5b5b0214e506fa2": 7150, + "5aa7e4a4e5b5b000137b76f2": 7168, + "5ca20ee186f774799474abc2": 379, + "5d5e9c74a4b9364855191c40": 4624, + "5d6d3716a4b9361bc8618872": 412, + "5e4bfc1586f774264f7582d3": 5888, + "61bca7cda0eae612383adf57": 5862, + "65719f0775149d62ce0a670b": 1244 + }, + "Holster": {}, + "Pockets": { + "557ffd194bdc2d28148b457f": 1 + }, + "Scabbard": {}, + "SecondPrimaryWeapon": { + "54491c4f4bdc2db1078b4568": 1324, + "56dee2bdd2720bc8328b4567": 1329, + "57d14d2524597714373db789": 1287 + }, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": { + "5929a2a086f7744f4b234d43": 5576, + "592c2d1a86f7746dbe2af32a": 5476, + "59e7643b86f7742cbf2c109a": 5353, + "5ab8dab586f77441cd04f2a2": 3443, + "5ab8dced86f774646209ec87": 794, + "5b44c8ea86f7742d1627baf1": 3055, + "5c0e6a1586f77404597b4965": 2959, + "5c0e722886f7740458316a57": 1227, + "5ca20abf86f77418567a43f2": 5519, + "5d5d85c586f774279a21cbdb": 3450, + "603648ff5a45383c122086ac": 2191, + "6040dd4ddcf9592f401632d2": 3029 + } + }, + "items": { + "Backpack": { + "544fb25a4bdc2dfb738b4567": 1360, + "544fb3364bdc2d34748b456a": 1056, + "544fb37f4bdc2dee738b4567": 681, + "544fb3f34bdc2d03748b456a": 163, + "544fb45d4bdc2dee738b4568": 540, + "5751a25924597722c463c472": 1263, + "5751a89d24597722aa0e8db0": 43, + "5755356824597772cb798962": 657, + "5755383e24597772cb798966": 169, + "590c657e86f77412b013051d": 266, + "590c661e86f7741e566b646a": 425, + "590c678286f77426c9660122": 163, + "590c695186f7741e566b64a2": 157, + "5af0454c86f7746bf20992e8": 529, + "5af0548586f7743a532b7e99": 145, + "5c0e530286f7747fa1419862": 152, + "5c0e531286f7747fa54205c2": 158, + "5c0e531d86f7747fa23f4d42": 416, + "5c0e533786f7747fa23f4d47": 177, + "5c0e534186f7747fa1419867": 142, + "5c0fa877d174af02a012e1cf": 7508, + "5c10c8fd86f7743d7d706df3": 164, + "5c94bbff86f7747ee735c08f": 2870, + "5d02778e86f774203e7dedbe": 170, + "5d02797c86f774203f38e30a": 151, + "5e831507ea0a7c419c2f9bd9": 405, + "5e8488fa988a8701445df1e4": 409, + "5ed515c8d380ab312177c0fa": 179, + "5ed515e03a40a50460332579": 94, + "5ed515ece452db0eb56fc028": 85, + "5ed515f6915ec335206e4152": 78, + "5ed5160a87bb8443d10680b5": 76, + "5ed51652f6c34d2cc26336a1": 75, + "5ed5166ad380ab312177c100": 33, + "5fca138c2a7b221b2852a5c6": 31, + "5fca13ca637ee0341a484f46": 82, + "60098ad7c2240c0fe85c570a": 352, + "60098af40accd37ef2175f27": 448, + "637b60c3b7afa97bfc3d7001": 31, + "637b612fb7afa97bfc3d7005": 94, + "637b6179104668754b72f8f5": 82, + "637b620db7afa97bfc3d7009": 71, + "637b6251104668754b72f8f9": 47, + "66507eabf5ddb0818b085b68": 46 + }, + "Pockets": { + "544fb3f34bdc2d03748b456a": 455, + "590c678286f77426c9660122": 571, + "5c0d591486f7744c505b416f": 322, + "5c0e530286f7747fa1419862": 59, + "5e85a9a6eacf8c039e4e2ac1": 44, + "5e85a9f4add9fe03027d9bf1": 19, + "5e85aa1a988a8701445df1f5": 31 + }, + "SecuredContainer": { + "560d5e524bdc2d25448b4571": 41520, + "5656d7c34bdc2d9d198b4587": 69210, + "57372140245977611f70ee91": 100000, + "58820d1224597753c90aeb13": 16780, + "59e4cf5286f7741778269d8a": 95720, + "59e6906286f7746c9f75e847": 54220, + "5a3c16fe86f77452b62de32a": 9827, + "5c0d591486f7744c505b416f": 100000, + "5c3df7d588a4501f290594e5": 10200, + "5c925fa22e221601da359b7b": 1052, + "5e85a9a6eacf8c039e4e2ac1": 12160, + "5e85a9f4add9fe03027d9bf1": 4877, + "5e85aa1a988a8701445df1f5": 11690, + "64b7af434b75259c590fa893": 12910, + "64b7af5a8532cf95ee0a0dbd": 12180, + "64b7bbb74b75259c590fa897": 31760 + }, + "SpecialLoot": {}, + "TacticalVest": { + "5448be9a4bdc2dfd2f8b456a": 10000, + "5710c24ad2720bc3458b45a3": 10000, + "57616a9e2459773c7a400234": 10000, + "57d1519e24597714373db79d": 10000, + "5926c3b286f774640d189b6b": 3739, + "59c1383d86f774290a37e0ca": 7966, + "5a01c29586f77474660c694c": 10000, + "5a351711c4a282000b1521a4": 3873, + "6513f0a194c72326990a3868": 221, + "66ffaab91f7492c901027bb8": 193 + } + }, + "mods": { + "5447a9cd4bdc2dbd208b4567": { + "mod_charge": [ + "55d44fd14bdc2d962f8b456e" + ], + "mod_magazine": [ + "544a37c44bdc2d25388b4567" + ], + "mod_pistol_grip": [ + "55d4b9964bdc2d1d4e8b456e" + ], + "mod_reciever": [ + "55d355e64bdc2d962f8b4569" + ], + "mod_stock": [ + "591aef7986f774139d495f03", + "5649be884bdc2d79388b4577" + ] + }, + "54491c4f4bdc2db1078b4568": { + "mod_barrel": [ + "55d4491a4bdc2d882f8b456e" + ], + "mod_handguard": [ + "55d45d3f4bdc2d972f8b456c" + ], + "mod_magazine": [ + "55d485804bdc2d8c2f8b456b" + ], + "mod_mount_000": [ + "55d48ebc4bdc2d8c2f8b456c" + ], + "mod_stock": [ + "56083cba4bdc2de22e8b456f" + ] + }, + "545cdb794bdc2d3a198b456a": { + "Back_plate": [ + "64afc71497cf3a403c01ff38" + ], + "Collar": [ + "6575ce6f16c2762fba005806" + ], + "Front_plate": [ + "64afc71497cf3a403c01ff38" + ], + "Groin": [ + "6575ce8bdc9932aed601c61e" + ], + "Left_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Shoulder_l": [ + "6575ce9db15fef3dd4051628" + ], + "Shoulder_r": [ + "6575cea8b15fef3dd405162c" + ], + "Soft_armor_back": [ + "6575ce45dc9932aed601c616" + ], + "Soft_armor_front": [ + "6575ce3716c2762fba0057fd" + ], + "Soft_armor_left": [ + "6575ce5016c2762fba005802" + ], + "soft_armor_right": [ + "6575ce5befc786cd9101a671" + ] + }, + "55d355e64bdc2d962f8b4569": { + "mod_barrel": [ + "55d35ee94bdc2d61338b4568" + ], + "mod_handguard": [ + "5c78f2792e221600106f4683" + ], + "mod_scope": [ + "5c7d55f52e221644f31bff6a" + ] + }, + "55d35ee94bdc2d61338b4568": { + "mod_gas_block": [ + "56eabcd4d2720b66698b4574" + ], + "mod_muzzle": [ + "5a9fbb84a2750c00137fa685" + ] + }, + "55d48ebc4bdc2d8c2f8b456c": { + "mod_tactical_001": [ + "5a5f1ce64f39f90b401987bc", + "5b3a337e5acfc4704b4a19a0" + ] + }, + "5649be884bdc2d79388b4577": { + "mod_stock_000": [ + "55d4ae6c4bdc2d8b2f8b456e" + ] + }, + "56dee2bdd2720bc8328b4567": { + "mod_barrel": [ + "56deec93d2720bec348b4568" + ], + "mod_handguard": [ + "56deed6ed2720b4c698b4583" + ], + "mod_magazine": [ + "56deeefcd2720bc8328b4568" + ], + "mod_mount_000": [ + "55d48ebc4bdc2d8c2f8b456c" + ], + "mod_stock": [ + "56083be64bdc2d20478b456f" + ] + }, + "576165642459773c7a400233": { + "mod_handguard": [ + "58272b392459774b4c7b3ccd" + ], + "mod_magazine": [ + "5cf8f3b0d7f00c00217872ef", + "5a966f51a2750c00156aacf6", + "57616a9e2459773c7a400234" + ], + "mod_muzzle": [ + "59c0ec5b86f77435b128bfca" + ], + "mod_pistol_grip": [ + "5649ade84bdc2d1b2b8b4587" + ], + "mod_stock": [ + "5cf50fc5d7f00c056c53f83c" + ], + "patron_in_weapon": [ + "5c0d591486f7744c505b416f", + "560d5e524bdc2d25448b4571", + "58820d1224597753c90aeb13" + ] + }, + "57d14d2524597714373db789": { + "mod_magazine": [ + "57d1519e24597714373db79d" + ], + "mod_mount": [ + "57ee59b42459771c7b045da5" + ], + "mod_pistol_grip": [ + "57d152ec245977144076ccdf" + ] + }, + "57ee59b42459771c7b045da5": { + "mod_scope": [ + "57ae0171245977343c27bfcf" + ], + "mod_tactical": [ + "5a5f1ce64f39f90b401987bc" + ] + }, + "58272b392459774b4c7b3ccd": { + "mod_scope": [ + "584984812459776a704a82a6" + ], + "mod_tactical_001": [ + "5b3a337e5acfc4704b4a19a0" + ] + }, + "5926dad986f7741f82604363": { + "mod_scope": [ + "5d2da1e948f035477b1ce2ba", + "5a33b2c9c4a282000c5a9511" + ] + }, + "59e649f986f77411d949b246": { + "mod_handguard": [ + "5d1b198cd7ad1a604869ad72", + "5c9a07572e221644f31c4b32", + "5d4aaa54a4b9365392071170" + ] + }, + "5a154d5cfcdbcb001a3b00da": { + "Helmet_back": [ + "657f8f10f4c82973640b2350" + ], + "Helmet_top": [ + "657f8ec5f4c82973640b234c" + ], + "mod_equipment_000": [ + "5a16b7e1fcdbcb00165aa6c9", + "5a16badafcdbcb001865f72d" + ] + }, + "5a33b2c9c4a282000c5a9511": { + "mod_scope": [ + "5a32aa8bc4a2826c6e06d737" + ] + }, + "5aa7e276e5b5b000171d0647": { + "Helmet_back": [ + "657bc0d8a1c61ee0c303632f" + ], + "Helmet_ears": [ + "657bc107aab96fccee08be9f" + ], + "Helmet_top": [ + "657bc06daab96fccee08be9b" + ], + "mod_equipment": [ + "5aa7e373e5b5b000137b76f0" + ] + }, + "5aa7e454e5b5b0214e506fa2": { + "Helmet_back": [ + "657f92acada5fadd1f07a57e" + ], + "Helmet_ears": [ + "657f92e7f4c82973640b2354" + ], + "Helmet_top": [ + "657f925dada5fadd1f07a57a" + ], + "mod_equipment": [ + "5aa7e3abe5b5b000171d064d" + ] + }, + "5aa7e4a4e5b5b000137b76f2": { + "Helmet_back": [ + "657f92acada5fadd1f07a57e" + ], + "Helmet_ears": [ + "657f92e7f4c82973640b2354" + ], + "Helmet_top": [ + "657f925dada5fadd1f07a57a" + ], + "mod_equipment": [ + "5aa7e3abe5b5b000171d064d" + ] + }, + "5ab8dced86f774646209ec87": { + "Back_plate": [ + "656fa25e94b480b8a500c0e0" + ], + "Front_plate": [ + "656fa25e94b480b8a500c0e0" + ], + "Soft_armor_back": [ + "6570f71dd67d0309980a7af8" + ], + "Soft_armor_front": [ + "6570f6e774d84423df065f21" + ], + "Soft_armor_left": [ + "6570f74774d84423df065f25" + ], + "soft_armor_right": [ + "6570f79c4c65ab77a6015121" + ] + }, + "5ab8e79e86f7742d8b372e78": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "657326bc5d3a3129fb05f36b" + ], + "Front_plate": [ + "656f611f94b480b8a500c0db" + ], + "Soft_armor_back": [ + "657326978c1cc6dcd9098b56" + ], + "Soft_armor_front": [ + "65732688d9d89ff7ac0d9c4c" + ], + "Soft_armor_left": [ + "657326a28c1cc6dcd9098b5a" + ], + "soft_armor_right": [ + "657326b08c1cc6dcd9098b5e" + ] + }, + "5ac66d725acfc43b321d4b60": { + "mod_gas_block": [ + "59e649f986f77411d949b246" + ], + "mod_magazine": [ + "5cbdc23eae9215001136a407", + "5ac66bea5acfc43b321d4aec" + ], + "mod_muzzle": [ + "5649ab884bdc2ded0b8b457f", + "5cc9ad73d7f00c000e2579d4", + "5ac72e895acfc43b321d4bd5" + ], + "mod_pistol_grip": [ + "5649ade84bdc2d1b2b8b4587" + ], + "mod_reciever": [ + "5ac50da15acfc4001718d287" + ], + "mod_sight_rear": [ + "5ac733a45acfc400192630e2" + ], + "mod_stock": [ + "5ac50c185acfc400163398d4" + ] + }, + "5b44cd8b86f774503d30cba2": { + "Back_plate": [ + "656fa8d700d62bcd2e024084" + ], + "Collar": [ + "6575c2e4efc786cd9101a5dd" + ], + "Front_plate": [ + "656fa8d700d62bcd2e024084" + ], + "Groin": [ + "6575c31b52b7f8c76a05ee35" + ], + "Groin_back": [ + "6575c326c6700bd6b40e8a80" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962" + ], + "Shoulder_l": [ + "6575c2f7efc786cd9101a5e1" + ], + "Shoulder_r": [ + "6575c30352b7f8c76a05ee31" + ], + "Soft_armor_back": [ + "6575c2be52b7f8c76a05ee25" + ], + "Soft_armor_front": [ + "6575c2adefc786cd9101a5d9" + ], + "Soft_armor_left": [ + "6575c2cd52b7f8c76a05ee29" + ], + "soft_armor_right": [ + "6575c2d852b7f8c76a05ee2d" + ] + }, + "5b7be47f5acfc400170e2dd2": { + "mod_tactical": [ + "5a7b483fe899ef0016170d15", + "5d2369418abbc306c62e0c80", + "5b3a337e5acfc4704b4a19a0" + ] + }, + "5b7be4895acfc400170e2dd5": { + "mod_foregrip": [ + "5c87ca002e221600114cb150", + "5c1bc7752e221602b1779b34" + ] + }, + "5c0e625a86f7742d77340f62": { + "Back_plate": [ + "656fafe3498d1b7e3e071da4" + ], + "Collar": [ + "657643a220cc24d17102b14c" + ], + "Front_plate": [ + "656f63c027aed95beb08f62c" + ], + "Left_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "657642b0e6d5dd75f40688a5" + ], + "Soft_armor_front": [ + "65764275d8537eb26a0355e9" + ], + "Soft_armor_left": [ + "6576434820cc24d17102b148" + ], + "soft_armor_right": [ + "657643732bc38ef78e076477" + ] + }, + "5c0e722886f7740458316a57": { + "Back_plate": [ + "656fa0fb498d1b7e3e071d9c" + ], + "Front_plate": [ + "656fa0fb498d1b7e3e071d9c" + ], + "Soft_armor_back": [ + "65730c2213a2f660f60bea96" + ], + "Soft_armor_front": [ + "65730c0e292ecadbfa09ad49" + ], + "Soft_armor_left": [ + "65730c2b292ecadbfa09ad50" + ], + "soft_armor_right": [ + "65730c35292ecadbfa09ad54" + ] + }, + "5c78f2792e221600106f4683": { + "mod_foregrip": [ + "5b7be4895acfc400170e2dd5" + ], + "mod_mount_000": [ + "5b7be47f5acfc400170e2dd2" + ] + }, + "5c7d55f52e221644f31bff6a": { + "mod_scope": [ + "5c7d560b2e22160bc12c6139" + ] + }, + "5c7d560b2e22160bc12c6139": { + "mod_scope": [ + "5c7d55de2e221644f31bff68" + ] + }, + "5c9a07572e221644f31c4b32": { + "mod_foregrip": [ + "57cffb66245977632f391a99" + ], + "mod_mount_000": [ + "5b7be47f5acfc400170e2dd2" + ] + }, + "5ca20ee186f774799474abc2": { + "Helmet_back": [ + "657bbed0aab96fccee08be96" + ], + "Helmet_ears": [ + "657bbefeb30eca9763051189" + ], + "Helmet_top": [ + "657bbe73a1c61ee0c303632b" + ], + "mod_equipment": [ + "5ca2113f86f7740b2547e1d2" + ] + }, + "5ca2151486f774244a3b8d30": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "6575dd769d3a0ddf660b904b" + ], + "Front_plate": [ + "65573fa5655447403702a816" + ], + "Groin": [ + "6575dd800546f8b1de093df6" + ], + "Groin_back": [ + "6575dd94945bf78edd04c43c" + ], + "Soft_armor_back": [ + "6575dd519e27f4a85e081146" + ], + "Soft_armor_front": [ + "6575dd3e9e27f4a85e081142" + ], + "Soft_armor_left": [ + "6575dd64945bf78edd04c438" + ], + "soft_armor_right": [ + "6575dd6e9d3a0ddf660b9047" + ] + }, + "5cf50fc5d7f00c056c53f83c": { + "mod_stock": [ + "5a9eb32da2750c00171b3f9c" + ] + }, + "5cf638cbd7f00c06595bc936": { + "mod_tactical": [ + "5cf639aad7f00c065703d455" + ] + }, + "5d1b198cd7ad1a604869ad72": { + "mod_foregrip": [ + "57cffce524597763b31685d8" + ] + }, + "5d2f0d8048f0356c925bc3b0": { + "mod_charge": [ + "5d2f2d5748f03572ec0c0139" + ], + "mod_magazine": [ + "5926c3b286f774640d189b6b", + "5a351711c4a282000b1521a4" + ], + "mod_reciever": [ + "5d2f261548f03576f500e7b7" + ], + "patron_in_weapon": [ + "64b7bbb74b75259c590fa897", + "5c3df7d588a4501f290594e5", + "5a3c16fe86f77452b62de32a", + "5c925fa22e221601da359b7b" + ] + }, + "5d2f261548f03576f500e7b7": { + "mod_handguard": [ + "5d2f259b48f0355a844acd74" + ], + "mod_mount": [ + "5926dad986f7741f82604363" + ], + "mod_stock": [ + "5d2f25bc48f03502573e5d85" + ] + }, + "5d4aaa54a4b9365392071170": { + "mod_foregrip": [ + "5b7be4895acfc400170e2dd5" + ], + "mod_mount_001": [ + "5b7be47f5acfc400170e2dd2" + ] + }, + "5d5e9c74a4b9364855191c40": { + "Helmet_back": [ + "657f8b43f92cd718b70154fb" + ], + "Helmet_top": [ + "657f8b94f92cd718b70154ff" + ] + }, + "5d6d3716a4b9361bc8618872": { + "Helmet_back": [ + "657fa04ac6679fefb3051e24" + ], + "Helmet_ears": [ + "657fa07387e11c61f70bface" + ], + "Helmet_top": [ + "657fa009d4caf976440afe3a" + ], + "mod_equipment_000": [ + "5d6d3829a4b9361bc8618943" + ], + "mod_equipment_001": [ + "5d6d3be5a4b9361bc73bc763" + ], + "mod_equipment_002": [ + "5d6d3943a4b9360dbc46d0cc" + ] + }, + "5e4bfc1586f774264f7582d3": { + "Helmet_back": [ + "657f9cb587e11c61f70bfaca" + ], + "Helmet_top": [ + "657f9c78ada5fadd1f07a58d" + ], + "mod_equipment_000": [ + "5a16b7e1fcdbcb00165aa6c9" + ] + }, + "5e848cc2988a8701445df1e8": { + "mod_barrel": [ + "5e848d1c264f7c180b5e35a9" + ], + "mod_handguard": [ + "5e848d51e4dbc5266a4ec63b" + ], + "mod_magazine": [ + "5f647d9f8499b57dc40ddb93" + ], + "mod_stock": [ + "5e848d99865c0f329958c83b" + ] + }, + "5e848d99865c0f329958c83b": { + "mod_stock": [ + "5e848dc4e4dbc5266a4ec63d" + ] + }, + "5f5f41476bdad616ad46d631": { + "Back_plate": [ + "657b2797c3dbcb01d60c35ea" + ], + "Collar": [ + "65731b666e709cddd001ec43" + ], + "Front_plate": [ + "656f664200d62bcd2e024077" + ], + "Groin": [ + "65731b716e709cddd001ec47" + ], + "Groin_back": [ + "65731b6b6042b0f210020ef6" + ], + "Left_side_plate": [ + "654a4f8bc721968a4404ef18" + ], + "Right_side_plate": [ + "654a4f8bc721968a4404ef18" + ], + "Soft_armor_back": [ + "65731b4fcea9255e2102360e" + ], + "Soft_armor_front": [ + "65731b46cea9255e2102360a" + ], + "Soft_armor_left": [ + "65731b576e709cddd001ec3f" + ], + "soft_armor_right": [ + "65731b60ff6dc44a7d068c4a" + ] + }, + "6038b4b292ec1c3103795a0b": { + "Back_plate": [ + "656fa76500d62bcd2e024080" + ], + "Front_plate": [ + "656fa76500d62bcd2e024080" + ], + "Soft_armor_back": [ + "6575e72660703324250610c7" + ], + "Soft_armor_front": [ + "6575e71760703324250610c3" + ] + }, + "60a283193cb70855c43a381d": { + "Back_plate": [ + "656fa61e94b480b8a500c0e8" + ], + "Collar": [ + "6575d598b15fef3dd4051678" + ], + "Front_plate": [ + "656fa61e94b480b8a500c0e8" + ], + "Groin": [ + "6575d5a616c2762fba005820" + ], + "Left_side_plate": [ + "64afdb577bb3bfe8fe03fd1d" + ], + "Right_side_plate": [ + "64afdb577bb3bfe8fe03fd1d" + ], + "Shoulder_l": [ + "6575d5b316c2762fba005824" + ], + "Shoulder_r": [ + "6575d5bd16c2762fba005828" + ], + "Soft_armor_back": [ + "6575d56b16c2762fba005818" + ], + "Soft_armor_front": [ + "6575d561b15fef3dd4051670" + ], + "Soft_armor_left": [ + "6575d57a16c2762fba00581c" + ], + "soft_armor_right": [ + "6575d589b15fef3dd4051674" + ] + }, + "618a75c9a3884f56c957ca1b": { + "mod_scope": [ + "618a75f0bd321d49084cd399" + ] + }, + "618a75f0bd321d49084cd399": { + "mod_tactical": [ + "618a760e526131765025aae3" + ] + }, + "61bca7cda0eae612383adf57": { + "Helmet_back": [ + "657bbcffbbd440df880b2dd5" + ], + "Helmet_top": [ + "657bbcc9a1c61ee0c3036327" + ] + }, + "6513ef33e06849f06c0957ca": { + "mod_barrel": [ + "6513eff1e06849f06c0957d4", + "65266fd43341ed9aa903dd56" + ], + "mod_handguard": [ + "6513f05a94c72326990a3866" + ], + "mod_magazine": [ + "6513f0a194c72326990a3868" + ], + "mod_sight_rear": [ + "6513f153e63f29908d0ffaba" + ], + "mod_stock": [ + "6513f1798cb24472490ee331" + ] + }, + "6513eff1e06849f06c0957d4": { + "mod_bipod": [ + "6513f037e06849f06c0957d7" + ], + "mod_muzzle": [ + "6513f0f5e63f29908d0ffab8" + ] + }, + "6513f1798cb24472490ee331": { + "mod_pistolgrip": [ + "6513f13a8cb24472490ee32f" + ] + }, + "65268d8ecb944ff1e90ea385": { + "mod_barrel": [ + "6513eff1e06849f06c0957d4", + "65266fd43341ed9aa903dd56" + ], + "mod_handguard": [ + "6513f05a94c72326990a3866" + ], + "mod_magazine": [ + "6513f0a194c72326990a3868" + ], + "mod_scope": [ + "618a75c9a3884f56c957ca1b", + "5cf638cbd7f00c06595bc936", + "57486e672459770abd687134" + ], + "mod_sight_rear": [ + "6513f153e63f29908d0ffaba" + ], + "mod_stock": [ + "6513f1798cb24472490ee331" + ] + }, + "65719f0775149d62ce0a670b": { + "Helmet_back": [ + "657fa168e9433140ad0baf8e" + ], + "Helmet_ears": [ + "657fa186d4caf976440afe42" + ], + "Helmet_top": [ + "657fa0fcd4caf976440afe3e" + ], + "mod_equipment_000": [ + "65719f9ef392ad76c50a2ec8" + ] + }, + "66ffa9b66e19cc902401c5e8": { + "mod_barrel": [ + "66ffac601f7492c901027bbb" + ], + "mod_magazine": [ + "66ffaab91f7492c901027bb8" + ], + "mod_stock": [ + "66ffac9e316b08f6840a73e6" + ] + } + } + }, + "lastName": [], + "skills": { + "Common": {} } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerkojaniy.json b/Libraries/SptAssets/Assets/database/bots/types/followerkojaniy.json index d2f01cbd..0dc733b8 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerkojaniy.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerkojaniy.json @@ -181,14 +181,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -202,7 +202,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -550,6 +550,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 100, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -677,14 +678,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -698,7 +699,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1046,6 +1047,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 100, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1173,14 +1175,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1194,7 +1196,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1542,6 +1544,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 100, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1669,14 +1672,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1690,7 +1693,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.013, + "GainSightCoef": 15.384, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2038,6 +2041,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 100, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerkolontayassault.json b/Libraries/SptAssets/Assets/database/bots/types/followerkolontayassault.json index ae19710e..87ed1b5c 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerkolontayassault.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerkolontayassault.json @@ -204,14 +204,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -225,7 +225,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -388,7 +388,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.8, @@ -582,6 +582,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 10, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -727,14 +728,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -748,7 +749,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -911,7 +912,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.8, @@ -1105,6 +1106,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 10, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1250,14 +1252,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1271,7 +1273,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1434,7 +1436,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.8, @@ -1628,6 +1630,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 10, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1773,14 +1776,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1794,7 +1797,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1957,7 +1960,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.8, @@ -2151,6 +2154,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 10, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerkolontaysecurity.json b/Libraries/SptAssets/Assets/database/bots/types/followerkolontaysecurity.json index 2174e09f..91722c13 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerkolontaysecurity.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerkolontaysecurity.json @@ -205,14 +205,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -226,7 +226,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -391,7 +391,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.8, @@ -585,6 +585,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 10, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -731,14 +732,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -752,7 +753,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -917,7 +918,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.8, @@ -1111,6 +1112,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 10, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1257,14 +1259,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1278,7 +1280,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1443,7 +1445,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.8, @@ -1637,6 +1639,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 10, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1783,14 +1786,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1804,7 +1807,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1969,7 +1972,7 @@ "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, "LOOK_AROUND_DELTA": 1.1, "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LOOK_THROUGH_GRASS": true, + "LOOK_THROUGH_GRASS": false, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, "MAX_VISION_GRASS_METERS": 0.8, @@ -2163,6 +2166,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 10, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followersanitar.json b/Libraries/SptAssets/Assets/database/bots/types/followersanitar.json index df1fd185..e8193bc3 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followersanitar.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followersanitar.json @@ -182,14 +182,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -203,7 +203,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -559,6 +559,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": -60, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -683,14 +684,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -704,7 +705,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1060,6 +1061,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": -60, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1184,14 +1186,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1205,7 +1207,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1561,6 +1563,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": -60, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1685,14 +1688,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1706,7 +1709,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 3.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2062,6 +2065,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": -60, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/followerzryachiy.json b/Libraries/SptAssets/Assets/database/bots/types/followerzryachiy.json index dae45b35..3211353f 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/followerzryachiy.json +++ b/Libraries/SptAssets/Assets/database/bots/types/followerzryachiy.json @@ -152,14 +152,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -173,7 +173,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -638,14 +638,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -659,7 +659,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1124,14 +1124,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1145,7 +1145,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1610,14 +1610,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1631,7 +1631,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/gifter.json b/Libraries/SptAssets/Assets/database/bots/types/gifter.json index 01a22f5b..ec99e571 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/gifter.json +++ b/Libraries/SptAssets/Assets/database/bots/types/gifter.json @@ -192,14 +192,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -213,7 +213,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 10.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -675,14 +675,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -696,7 +696,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 10.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1158,14 +1158,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1179,7 +1179,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 10.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1641,14 +1641,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1662,7 +1662,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 4, "HearingSense": 10.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/infectedassault.json b/Libraries/SptAssets/Assets/database/bots/types/infectedassault.json index abde1cb6..665d2606 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/infectedassault.json +++ b/Libraries/SptAssets/Assets/database/bots/types/infectedassault.json @@ -154,14 +154,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -175,7 +175,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -671,14 +671,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -692,7 +692,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1183,14 +1183,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1204,7 +1204,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1700,14 +1700,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1721,7 +1721,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/infectedcivil.json b/Libraries/SptAssets/Assets/database/bots/types/infectedcivil.json index b4e838c7..fe537c9c 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/infectedcivil.json +++ b/Libraries/SptAssets/Assets/database/bots/types/infectedcivil.json @@ -144,14 +144,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -165,7 +165,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -660,14 +660,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -681,7 +681,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1171,14 +1171,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1192,7 +1192,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1687,14 +1687,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1708,7 +1708,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/infectedlaborant.json b/Libraries/SptAssets/Assets/database/bots/types/infectedlaborant.json index e65c35f5..7fd0607d 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/infectedlaborant.json +++ b/Libraries/SptAssets/Assets/database/bots/types/infectedlaborant.json @@ -144,14 +144,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -165,7 +165,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -660,14 +660,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -681,7 +681,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1171,14 +1171,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1192,7 +1192,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1687,14 +1687,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1708,7 +1708,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/infectedpmc.json b/Libraries/SptAssets/Assets/database/bots/types/infectedpmc.json index ba56f994..b2a59d1f 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/infectedpmc.json +++ b/Libraries/SptAssets/Assets/database/bots/types/infectedpmc.json @@ -149,14 +149,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -170,7 +170,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -645,14 +645,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -666,7 +666,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1145,14 +1145,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1166,7 +1166,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1644,14 +1644,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1665,7 +1665,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/infectedtagilla.json b/Libraries/SptAssets/Assets/database/bots/types/infectedtagilla.json index c53d36a5..4f4e0fa5 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/infectedtagilla.json +++ b/Libraries/SptAssets/Assets/database/bots/types/infectedtagilla.json @@ -169,14 +169,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -190,7 +190,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -679,14 +679,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -700,7 +700,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1189,14 +1189,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1210,7 +1210,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1699,14 +1699,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1720,7 +1720,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 3.95, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/marksman.json b/Libraries/SptAssets/Assets/database/bots/types/marksman.json index 238c8ac0..dbc0afff 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/marksman.json +++ b/Libraries/SptAssets/Assets/database/bots/types/marksman.json @@ -110,8 +110,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 60, "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, - "BASE_HIT_AFFECTION_MAX_ANG": 21, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 32, + "BASE_HIT_AFFECTION_MIN_ANG": 30, "BASE_SHIEF": 1, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.7, @@ -197,14 +197,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -218,7 +218,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.05, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -380,6 +380,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -421,6 +422,7 @@ "DANGER_POINT_CHOOSE_COEF": 1, "DIST_TO_ENEMY_YO_CAN_HEAL": 30, "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_HIDE_ASSAULT": 105, "DIST_TO_STOP_RUN_ENEMY": 15, "DOG_FIGHT_IN": 3, "DOG_FIGHT_OUT": 6, @@ -548,6 +550,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, @@ -583,8 +586,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 60, "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 32, + "BASE_HIT_AFFECTION_MIN_ANG": 20, "BASE_SHIEF": 0.5, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.7, @@ -670,14 +673,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -691,7 +694,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -853,6 +856,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -894,6 +898,7 @@ "DANGER_POINT_CHOOSE_COEF": 1, "DIST_TO_ENEMY_YO_CAN_HEAL": 30, "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_HIDE_ASSAULT": 105, "DIST_TO_STOP_RUN_ENEMY": 15, "DOG_FIGHT_IN": 3, "DOG_FIGHT_OUT": 6, @@ -1021,6 +1026,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, @@ -1056,8 +1062,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 10, "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, - "BASE_HIT_AFFECTION_MAX_ANG": 8, - "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_HIT_AFFECTION_MAX_ANG": 12, + "BASE_HIT_AFFECTION_MIN_ANG": 9, "BASE_SHIEF": 0.05, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.7, @@ -1141,14 +1147,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1162,7 +1168,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.01, + "GainSightCoef": 20, "HearingSense": 3.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1324,6 +1330,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.8, "MAX_VISION_GRASS_METERS_FLARE": 8, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -1365,6 +1372,7 @@ "DANGER_POINT_CHOOSE_COEF": 1, "DIST_TO_ENEMY_YO_CAN_HEAL": 30, "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_HIDE_ASSAULT": 105, "DIST_TO_STOP_RUN_ENEMY": 15, "DOG_FIGHT_IN": 3, "DOG_FIGHT_OUT": 6, @@ -1527,8 +1535,8 @@ "ANYTIME_LIGHT_WHEN_AIM_100": -1, "ANY_PART_SHOOT_TIME": 60, "BASE_HIT_AFFECTION_DELAY_SEC": 0.77, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_HIT_AFFECTION_MAX_ANG": 32, + "BASE_HIT_AFFECTION_MIN_ANG": 20, "BASE_SHIEF": 0.8, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.7, @@ -1614,14 +1622,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1635,7 +1643,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.2, + "GainSightCoef": 1, "HearingSense": 1.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1797,6 +1805,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, "LightOnVisionDistance": 30, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.4, "MAX_VISION_GRASS_METERS_FLARE": 7, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -1838,6 +1847,7 @@ "DANGER_POINT_CHOOSE_COEF": 1, "DIST_TO_ENEMY_YO_CAN_HEAL": 30, "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_HIDE_ASSAULT": 105, "DIST_TO_STOP_RUN_ENEMY": 15, "DOG_FIGHT_IN": 3, "DOG_FIGHT_OUT": 6, @@ -1965,6 +1975,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 50, diff --git a/Libraries/SptAssets/Assets/database/bots/types/peacemaker.json b/Libraries/SptAssets/Assets/database/bots/types/peacemaker.json index 71782d04..40fe0368 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/peacemaker.json +++ b/Libraries/SptAssets/Assets/database/bots/types/peacemaker.json @@ -172,14 +172,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -193,7 +193,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -666,14 +666,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -687,7 +687,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1160,14 +1160,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1181,7 +1181,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1654,14 +1654,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1675,7 +1675,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.85, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/pmcbear.json b/Libraries/SptAssets/Assets/database/bots/types/pmcbear.json index 492b394a..3b7ed846 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/pmcbear.json +++ b/Libraries/SptAssets/Assets/database/bots/types/pmcbear.json @@ -208,14 +208,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -229,7 +229,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -701,14 +701,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -722,7 +722,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1195,14 +1195,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1216,7 +1216,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1689,14 +1689,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1710,7 +1710,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/pmcbot.json b/Libraries/SptAssets/Assets/database/bots/types/pmcbot.json index 8012c4af..4c85ba05 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/pmcbot.json +++ b/Libraries/SptAssets/Assets/database/bots/types/pmcbot.json @@ -191,14 +191,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -212,7 +212,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -557,6 +557,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -677,14 +678,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -698,7 +699,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1043,6 +1044,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1163,14 +1165,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1184,7 +1186,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1529,6 +1531,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1649,14 +1652,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1670,7 +1673,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -2015,6 +2018,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, diff --git a/Libraries/SptAssets/Assets/database/bots/types/pmcusec.json b/Libraries/SptAssets/Assets/database/bots/types/pmcusec.json index 77a0577d..5bf4b7f9 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/pmcusec.json +++ b/Libraries/SptAssets/Assets/database/bots/types/pmcusec.json @@ -213,14 +213,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -234,7 +234,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -706,14 +706,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -727,7 +727,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1200,14 +1200,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1221,7 +1221,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1694,14 +1694,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1715,7 +1715,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 2, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, diff --git a/Libraries/SptAssets/Assets/database/bots/types/sectantpriest.json b/Libraries/SptAssets/Assets/database/bots/types/sectantpriest.json index 95db07e9..a6f26eef 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/sectantpriest.json +++ b/Libraries/SptAssets/Assets/database/bots/types/sectantpriest.json @@ -17,194 +17,2571 @@ "SectantPriest": 1 } }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 0, + "Backpack": 0, + "Earpiece": 0, + "Eyewear": 0, + "FaceCover": 0, + "FirstPrimaryWeapon": 100, + "Headwear": 0, + "Holster": 100, + "Pockets": 100, + "Scabbard": 100, + "SecondPrimaryWeapon": 0, + "SecuredContainer": 100, + "TacticalVest": 0 + }, + "equipmentMods": { + "mod_nvg": 100 + }, + "weaponMods": { + "mod_charge": 0, + "mod_foregrip": 20, + "mod_magazine": 100, + "mod_mount": 90, + "mod_mount_000": 22, + "mod_mount_001": 66, + "mod_mount_002": 100, + "mod_muzzle": 100, + "mod_reciever": 100, + "mod_scope": 15, + "mod_sight_front": 49, + "mod_sight_rear": 58, + "mod_stock": 100, + "mod_stock_000": 100, + "mod_tactical": 0, + "mod_tactical_000": 0, + "mod_tactical_001": 0, + "mod_tactical_002": 0 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 2, + "ANYTIME_LIGHT_WHEN_AIM_100": 10, + "ANY_PART_SHOOT_TIME": 5, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 100, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 100, + "BOSS_DIST_TO_WARNING_OUT": 100, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "EFFECT_PAINKILLER": true, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": false, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LAY_TO_COVER": true, + "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, + "CHANGE_RUN_TO_COVER_SEC": 12, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND_DIST": 15, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": false, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 7, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": true, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.15, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 36, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 66, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "ANGLE_FOR_GETUP": 178, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FULL_SECTOR_VIEW": true, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.2, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SELF_NIGHTVISION": true, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AGGRESSOR_LOYALTY_BONUS": 0, + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_TALK": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 999999, + "GROUP_EXACTLY_PHRASE_DELAY": 999999, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "REVENGE_BOT_TYPES": [], + "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 7, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "BREACH_CHANCE_100": 0, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "WAIT_DOOR_OPEN_SEC": 1, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_GESTUS": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 999999, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 999999.1, + "TALK_DELAY_BIG": 999999.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_HIT_MELEE": 1, + "DIST_TO_STOP_SPRINT_MELEE": 2, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "TRY_HIT_PERIOD_MELEE": 0.5, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 2, + "ANYTIME_LIGHT_WHEN_AIM_100": 10, + "ANY_PART_SHOOT_TIME": 5, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 100, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 100, + "BOSS_DIST_TO_WARNING_OUT": 100, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "EFFECT_PAINKILLER": true, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": false, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LAY_TO_COVER": true, + "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, + "CHANGE_RUN_TO_COVER_SEC": 12, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND_DIST": 15, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": false, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 7, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": true, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.15, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 36, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 66, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "ANGLE_FOR_GETUP": 178, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FULL_SECTOR_VIEW": true, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.2, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SELF_NIGHTVISION": true, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AGGRESSOR_LOYALTY_BONUS": 0, + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_TALK": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 999999, + "GROUP_EXACTLY_PHRASE_DELAY": 999999, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "REVENGE_BOT_TYPES": [], + "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 7, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "BREACH_CHANCE_100": 0, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "WAIT_DOOR_OPEN_SEC": 1, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_GESTUS": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 999999, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 999999.1, + "TALK_DELAY_BIG": 999999.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_HIT_MELEE": 1, + "DIST_TO_STOP_SPRINT_MELEE": 2, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "TRY_HIT_PERIOD_MELEE": 0.5, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 2, + "ANYTIME_LIGHT_WHEN_AIM_100": 10, + "ANY_PART_SHOOT_TIME": 5, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 100, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 100, + "BOSS_DIST_TO_WARNING_OUT": 100, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "EFFECT_PAINKILLER": true, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": false, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LAY_TO_COVER": true, + "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, + "CHANGE_RUN_TO_COVER_SEC": 12, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND_DIST": 15, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": false, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 7, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": true, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.15, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 36, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 66, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "ANGLE_FOR_GETUP": 178, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FULL_SECTOR_VIEW": true, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.2, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SELF_NIGHTVISION": true, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AGGRESSOR_LOYALTY_BONUS": 0, + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_TALK": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 999999, + "GROUP_EXACTLY_PHRASE_DELAY": 999999, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "REVENGE_BOT_TYPES": [], + "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 7, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "BREACH_CHANCE_100": 0, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "WAIT_DOOR_OPEN_SEC": 1, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_GESTUS": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 999999, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 999999.1, + "TALK_DELAY_BIG": 999999.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_HIT_MELEE": 1, + "DIST_TO_STOP_SPRINT_MELEE": 2, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "TRY_HIT_PERIOD_MELEE": 0.5, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 2, + "ANYTIME_LIGHT_WHEN_AIM_100": 10, + "ANY_PART_SHOOT_TIME": 5, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 100, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 100, + "BOSS_DIST_TO_WARNING_OUT": 100, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "EFFECT_PAINKILLER": true, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": false, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LAY_TO_COVER": true, + "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, + "CHANGE_RUN_TO_COVER_SEC": 12, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND_DIST": 15, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": false, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 7, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": true, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.15, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 36, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 66, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "ANGLE_FOR_GETUP": 178, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FULL_SECTOR_VIEW": true, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.2, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SELF_NIGHTVISION": true, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AGGRESSOR_LOYALTY_BONUS": 0, + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_TALK": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 999999, + "GROUP_EXACTLY_PHRASE_DELAY": 999999, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "REVENGE_BOT_TYPES": [], + "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 7, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "BREACH_CHANCE_100": 0, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "WAIT_DOOR_OPEN_SEC": 1, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHECK_MAGAZINE": false, + "CAN_GESTUS": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 999999, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 999999.1, + "TALK_DELAY_BIG": 999999.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_HIT_MELEE": 1, + "DIST_TO_STOP_SPRINT_MELEE": 2, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "TRY_HIT_PERIOD_MELEE": 0.5, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + } + }, "experience": { + "aggressorBonus": { + "normal": 0 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": 2900, - "max": 2900 + "max": 2900, + "min": 2900 } }, "standingForKill": { "normal": 0 }, - "aggressorBonus": { - "normal": 0 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 50, - "max": 50 + "firstName": [ + "Жрец" + ], + "generation": { + "items": { + "backpackLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 2, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 0 }, - "Chest": { - "min": 200, - "max": 200 + "whitelist": [] + }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 }, - "Stomach": { - "min": 200, - "max": 200 + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 }, - "LeftArm": { - "min": 100, - "max": 100 + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2, + "2": 0 }, - "RightArm": { - "min": 100, - "max": 100 + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 }, - "LeftLeg": { - "min": 100, - "max": 100 + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 }, - "RightLeg": { - "min": 100, - "max": 100 - } - } - ] - }, - "skills": { - "Common": { - "BotSound": { - "min": 5100, - "max": 5100 + "whitelist": [] }, - "CovertMovement": { - "min": 5100, - "max": 5100 + "healing": { + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] }, - "Endurance": { - "min": 5100, - "max": 5100 + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] }, - "Health": { - "min": 5100, - "max": 5100 + "pocketLoot": { + "weights": { + "0": 1, + "1": 6, + "2": 3, + "3": 1, + "4": 1 + }, + "whitelist": [] }, - "Immunity": { - "min": 5100, - "max": 5100 + "specialItems": { + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] }, - "Intellect": { - "min": 5100, - "max": 5100 + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] }, - "MagDrills": { - "min": 5100, - "max": 5100 - }, - "Metabolism": { - "min": 5100, - "max": 5100 - }, - "RecoilControl": { - "min": 5100, - "max": 5100 - }, - "Strength": { - "min": 5100, - "max": 5100 - }, - "StressResistance": { - "min": 5100, - "max": 5100 - }, - "Vitality": { - "min": 5100, - "max": 5100 + "vestLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 2, + "3": 1, + "4": 0, + "5": 0, + "6": 0 + }, + "whitelist": [] } } }, - "inventory": { - "equipment": { - "Headwear": { - "5c066ef40db834001966a595": 1 - }, - "Earpiece": {}, - "FaceCover": {}, - "ArmorVest": {}, - "Eyewear": {}, - "ArmBand": {}, - "TacticalVest": {}, - "Backpack": {}, - "FirstPrimaryWeapon": { - "57f3c6bd24597738e730fa2f": 13030, - "674d6121c09f69dfb201a888": 4017, - "58948c8e86f77409493f7266": 5263, - "5839a40f24597726f856b511": 11760, - "606587252535c57a13424cfd": 2593, - "5926bb2186f7744b1c6c6e60": 5406 - }, - "SecondPrimaryWeapon": {}, - "Holster": { - "59f98b4986f7746f546d2cef": 25540, - "669fa3f88abd2662d80eee77": 6695, - "602a9740da11d6478d5a06dc": 9837 - }, - "Scabbard": { - "5fc64ea372b0dd78d51159dc": 1 - }, - "Pockets": { - "5af99e9186f7747c447120b8": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 + "health": { + "BodyParts": [ + { + "Chest": { + "max": 200, + "min": 200 + }, + "Head": { + "max": 50, + "min": 50 + }, + "LeftArm": { + "max": 100, + "min": 100 + }, + "LeftLeg": { + "max": 100, + "min": 100 + }, + "RightArm": { + "max": 100, + "min": 100 + }, + "RightLeg": { + "max": 100, + "min": 100 + }, + "Stomach": { + "max": 200, + "min": 200 + } } + ], + "Energy": { + "max": 100, + "min": 100 }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { "Ammo": { - "Caliber9x18PM": { - "5737218f245977612125ba51": 1 - }, - "Caliber9x21": { - "5a26ac0ec4a28200741e1e18": 1 - }, "Caliber127x33": { "668fe62ac62660a5d8071446": 1 }, - "Caliber762x35": { - "5fd20ff893a8961fc660a954": 1 - }, - "Caliber9x19PARA": { - "5efb0e16aeb21837e749c7ff": 785, - "5c925fa22e221601da359b7b": 2000, - "5efb0da7a29a85116f6ea05f": 284 - }, "Caliber545x39": { "5c0d5e4486f77478390952fe": 1 }, + "Caliber762x35": { + "5fd20ff893a8961fc660a954": 1 + }, "Caliber762x39": { "59e0d99486f7744a32234762": 1 + }, + "Caliber9x18PM": { + "5737218f245977612125ba51": 1 + }, + "Caliber9x19PARA": { + "5c925fa22e221601da359b7b": 2000, + "5efb0da7a29a85116f6ea05f": 284, + "5efb0e16aeb21837e749c7ff": 785 + }, + "Caliber9x21": { + "5a26ac0ec4a28200741e1e18": 1 } }, + "equipment": { + "ArmBand": {}, + "ArmorVest": {}, + "Backpack": {}, + "Earpiece": {}, + "Eyewear": {}, + "FaceCover": {}, + "FirstPrimaryWeapon": { + "57f3c6bd24597738e730fa2f": 13030, + "5839a40f24597726f856b511": 11760, + "58948c8e86f77409493f7266": 5263, + "5926bb2186f7744b1c6c6e60": 5406, + "606587252535c57a13424cfd": 2593, + "674d6121c09f69dfb201a888": 4017 + }, + "Headwear": { + "5c066ef40db834001966a595": 1 + }, + "Holster": { + "59f98b4986f7746f546d2cef": 25540, + "602a9740da11d6478d5a06dc": 9837, + "669fa3f88abd2662d80eee77": 6695 + }, + "Pockets": { + "5af99e9186f7747c447120b8": 1 + }, + "Scabbard": { + "5fc64ea372b0dd78d51159dc": 1 + }, + "SecondPrimaryWeapon": {}, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": {} + }, + "items": { + "Backpack": {}, + "Pockets": { + "5448ba0b4bdc2d02308b456c": 54, + "55d480c04bdc2d1d4e8b456a": 10000, + "5672c92d4bdc2d180f8b4567": 46, + "5710c24ad2720bc3458b45a3": 10000, + "5780cda02459777b272ede61": 43, + "5780cf692459777de4559321": 42, + "5780cf722459777a5108b9a1": 49, + "5780cf7f2459777de4559322": 990, + "5780cf942459777df90dcb72": 649, + "5780cf9e2459777df90dcb73": 38, + "5780cfa52459777dfb276eb1": 215, + "5780d0532459777a5108b9a2": 76, + "5780d0652459777df90dcb74": 36, + "5780d07a2459777de4559324": 54, + "57d1519e24597714373db79d": 10000, + "5894a05586f774094708ef75": 10000, + "590c37d286f77443be3d7827": 68, + "590c392f86f77444754deb29": 21, + "590c621186f774138d11ea29": 49, + "590c651286f7741e566b6461": 86, + "5913611c86f77479e0084092": 328, + "5913651986f774432f15d132": 70, + "59136a4486f774447a1ed172": 191, + "59136e1e86f774432f15d133": 91, + "59136f6f86f774447a1ed173": 46, + "591382d986f774465a6413a7": 109, + "591383f186f7744a4c5edcf3": 152, + "5913877a86f774432f15d444": 40, + "5913915886f774123603c392": 73, + "5914578086f774123569ffa4": 151, + "59148c8a86f774197930e983": 220, + "59148f8286f7741b951ea113": 49, + "591ae8f986f77406f854be45": 60, + "591afe0186f77431bd616a11": 373, + "5926c3b286f774640d189b6b": 7020, + "5937ee6486f77408994ba448": 405, + "5938144586f77473c2087145": 53, + "5938504186f7740991483f30": 470, + "5938603e86f77435642354f4": 764, + "59387a4986f77401cc236e62": 51, + "5938994586f774523a425196": 237, + "593aa4be86f77457f56379f8": 506, + "59f99a7d86f7745b134aa97b": 10000, + "5a0060fc86f7745793204432": 5186, + "5a0dc45586f7742f6b0b73e3": 33, + "5a0dc95c86f77452440fc675": 73, + "5a0ea64786f7741707720468": 65, + "5a0ea69f86f7741cd5406619": 63, + "5a0ea79b86f7741d4a35298e": 40, + "5a0eb38b86f774153b320eb0": 45, + "5a0eb6ac86f7743124037a28": 54, + "5a0ec6d286f7742c0b518fb5": 23, + "5a0ec70e86f7742c0b518fba": 41, + "5a0ee30786f774023b6ee08f": 61, + "5a0ee34586f774023b6ee092": 45, + "5a0ee37f86f774023657a86f": 11, + "5a0ee4b586f7743698200d22": 12, + "5a0ee62286f774369454a7ac": 51, + "5a0ee72c86f77436955d3435": 29, + "5a0ee76686f7743698200d5c": 50, + "5a0eeb1a86f774688b70aa5c": 39, + "5a0eeb8e86f77461257ed71a": 39, + "5a0eebed86f77461230ddb3d": 45, + "5a0eec9686f77402ac5c39f2": 50, + "5a0eecf686f7740350630097": 23, + "5a0eed4386f77405112912aa": 20, + "5a0eedb386f77403506300be": 55, + "5a0eee1486f77402aa773226": 66, + "5a0eff2986f7741fd654e684": 52, + "5a0f006986f7741ffd2fe484": 45, + "5a0f045e86f7745b0f0d0e42": 55, + "5a0f068686f7745b0d4ea242": 41, + "5a0f075686f7745bcc42ee12": 54, + "5a0f08bc86f77478f33b84c2": 48, + "5a0f0f5886f7741c4e32a472": 53, + "5a13ee1986f774794d4c14cd": 55, + "5a13eebd86f7746fd639aa93": 17, + "5a13ef0686f7746e5a411744": 44, + "5a13ef7e86f7741290491063": 40, + "5a13f24186f77410e57c5626": 26, + "5a13f35286f77413ef1436b0": 39, + "5a13f46386f7741dd7384b04": 46, + "5a144bdb86f7741d374bbde0": 27, + "5a144dfd86f77445cb5a0982": 26, + "5a1452ee86f7746f33111763": 20, + "5a145d4786f7744cbb6f4a12": 21, + "5a145d7b86f7744cbb6f4a13": 26, + "5a145ebb86f77458f1796f05": 37, + "5a351711c4a282000b1521a4": 3792, + "5ad5ccd186f774446d5706e9": 43, + "5ad5cfbd86f7742c825d6104": 42, + "5ad5d20586f77449be26d877": 240, + "5ad5d49886f77455f9731921": 402, + "5ad5d64486f774079b080af8": 40, + "5ad5d7d286f77450166e0a89": 26, + "5ad5db3786f7743568421cce": 56, + "5ad7217186f7746744498875": 49, + "5ad7242b86f7740a6a3abd43": 54, + "5ad7247386f7747487619dc3": 26, + "5addaffe86f77470b455f900": 29, + "5c0548ae0db834001966a3c2": 8034, + "5c0e530286f7747fa1419862": 28, + "5c0e531286f7747fa54205c2": 23, + "5c0e531d86f7747fa23f4d42": 47, + "5c0e533786f7747fa23f4d47": 19, + "5c0e534186f7747fa1419867": 22, + "5c10c8fd86f7743d7d706df3": 22, + "5c1d0c5f86f7744bb2683cf0": 2, + "5c1d0d6d86f7744bb2683e1f": 12, + "5c1d0dc586f7744baf2e7b79": 3, + "5c1d0efb86f7744baf2e7b7b": 1, + "5c1e2a1e86f77431ea0ea84c": 39, + "5c1e2d1f86f77431e9280bee": 52, + "5c1e495a86f7743109743dfb": 2, + "5c1f79a086f7746ed066fb8f": 18, + "5c94bbff86f7747ee735c08f": 6, + "5d80c60f86f77440373c4ece": 359, + "5d80c62a86f7744036212b3f": 436, + "5d80c66d86f774405611c7d6": 20, + "5d80c6c586f77440351beef1": 21, + "5d80c6fc86f774403a401e3c": 24, + "5d80c78786f774403a401e3e": 29, + "5d80c88d86f77440556dbf07": 21, + "5d80c8f586f77440373c4ed0": 28, + "5d80c93086f7744036212b41": 26, + "5d80c95986f77440351beef3": 28, + "5d80ca9086f774403a401e40": 19, + "5d80cab086f77440535be201": 27, + "5d80cb3886f77440556dbf09": 49, + "5d80cb5686f77440545d1286": 50, + "5d80cb8786f774405611c7d9": 30, + "5d80cbd886f77470855c26c2": 28, + "5d80ccac86f77470841ff452": 21, + "5d80ccdd86f77474f7575e02": 26, + "5d80cd1a86f77402aa362f42": 25, + "5d8e0db586f7744450412a42": 31, + "5d8e0e0e86f774321140eb56": 35, + "5d8e15b686f774445103b190": 47, + "5d8e3ecc86f774414c78d05e": 25, + "5d947d3886f774447b415893": 34, + "5d947d4e86f774447b415895": 23, + "5d95d6be86f77424444eb3a7": 45, + "5d95d6fa86f77424484aa5e9": 41, + "5d9f1fa686f774726974a992": 19, + "5da46e3886f774653b7a83fe": 30, + "5da5cdcd86f774529238fb9b": 26, + "5da743f586f7744014504f72": 29, + "5e42c71586f7747f245e1343": 23, + "5e42c81886f7742a01529f57": 4, + "5e42c83786f7742a021fdf3c": 2, + "5ed515c8d380ab312177c0fa": 21, + "5ed515e03a40a50460332579": 9, + "5ed515ece452db0eb56fc028": 12, + "5ed515f6915ec335206e4152": 10, + "5ed5160a87bb8443d10680b5": 12, + "5ed51652f6c34d2cc26336a1": 16, + "5ed5166ad380ab312177c100": 5, + "5ede7a8229445733cb4c18e2": 202, + "5ede7b0c6d23e5473e6e8c66": 27, + "5eff09cd30a7dc22fd1ddfed": 106, + "5fca138c2a7b221b2852a5c6": 143, + "5fca13ca637ee0341a484f46": 49, + "602286df23506e50807090c6": 10000, + "619bde7fc9546643a67df6f4": 67, + "61a64428a8c6aa1b795f0ba1": 42, + "61a6444b8c141d68246e2d2f": 55, + "61a64492ba05ef10d62adcc1": 44, + "61aa5aed32a4743c3453d319": 47, + "61aa5b518f5e7a39b41416e2": 30, + "61aa5b7db225ac1ead7957c1": 46, + "61aa5ba8018e9821b7368da9": 44, + "61aa81fcb225ac1ead7957c3": 51, + "61bf7c024770ee6f9c6b8b53": 42, + "62987c658081af308d7558c6": 49, + "62987cb98081af308d7558c8": 46, + "62987da96188c076bc0d8c51": 56, + "62987dfc402c7f69bf010923": 12, + "62987e26a77ec735f90a2995": 96, + "62a09ec84f842e1bd12da3f2": 107, + "62a0a16d0b9d3c46de5b6e97": 33, + "62a9cb937377a65d7b070cef": 54, + "635267f063651329f75a4ee8": 31, + "637b60c3b7afa97bfc3d7001": 8, + "637b612fb7afa97bfc3d7005": 10, + "637b6179104668754b72f8f5": 9, + "637b620db7afa97bfc3d7009": 14, + "637b6251104668754b72f8f9": 3, + "63a39667c9b3aa4b61683e98": 51, + "63a399193901f439517cafb6": 26, + "63a39c69af870e651d58e6aa": 44, + "63a39c7964283b5e9c56b280": 242, + "63a39cb1c9b3aa4b61683ee2": 58, + "63a39ce4cd6db0635c1975fa": 48, + "63a39df18a56922e82001f25": 101, + "63a39dfe3901f439517cafba": 50, + "63a39e49cd6db0635c1975fc": 21, + "63a39f08cd6db0635c197600": 77, + "63a39f18c2d53c2c6839c1d3": 44, + "63a39f6e64283b5e9c56b289": 52, + "63a39fc0af870e651d58e6ae": 27, + "63a39fd1c9b3aa4b61683efb": 119, + "63a39fdf1e21260da44a0256": 80, + "63a3a93f8a56922e82001f5d": 13, + "63a71e781031ac76fe773c7d": 96, + "63a71e86b7f4570d3a293169": 43, + "63a71e922b25f7513905ca20": 25, + "63a71eb5b7f4570d3a29316b": 41, + "63a71ed21031ac76fe773c7f": 38, + "64ccc1d4a0f13c24561edf27": 50, + "64ccc1ec1779ad6ba200a137": 51, + "64ccc1f4ff54fb38131acf27": 48, + "64ccc1fe088064307e14a6f7": 43, + "64ccc206793ca11c8f450a38": 49, + "64ccc2111779ad6ba200a139": 48, + "64ccc246ff54fb38131acf29": 49, + "64ccc24de61ea448b507d34d": 60, + "64ccc25f95763a1ae376e447": 6, + "64ccc268c41e91416064ebc7": 51, + "64d4b23dc1b37504b41ac2b6": 1, + "6581998038c79576a2569e11": 379, + "658199972dc4e60f6d556a2f": 464, + "6582dbe43a2e5248357dbe9a": 384, + "6582dc4b6ba9e979af6b79f4": 190, + "6582dc5740562727a654ebb1": 45, + "664d4b0103ef2c61246afb56": 1, + "66507eabf5ddb0818b085b68": 6, + "668fe5c5f35310705d02b696": 10000, + "66acd6702b17692df20144c0": 461, + "675aaa003107dac10006332f": 242, + "675aaa8f7f3c962069072b27": 395, + "675aaa9a3107dac100063331": 411, + "675aaab74bca0b001d02f356": 348, + "675aaae1dcf102478202c537": 144, + "675aaae75a3ab8372d0b02a7": 346, + "675aaaf674a7619a5304c233": 378, + "675aab0d6b6addc02a08f097": 352, + "6761a6ccd9bbb27ad703c48a": 12, + "6761a6f90575f25e020816a4": 287 + }, + "SecuredContainer": { + "5737218f245977612125ba51": 11240, + "59e0d99486f7744a32234762": 1769, + "5a26ac0ec4a28200741e1e18": 650, + "5c0d5e4486f77478390952fe": 3910, + "5c925fa22e221601da359b7b": 2253, + "5efb0da7a29a85116f6ea05f": 1175, + "5efb0e16aeb21837e749c7ff": 3085, + "5fd20ff893a8961fc660a954": 2346, + "668fe62ac62660a5d8071446": 172 + }, + "SpecialLoot": {}, + "TacticalVest": {} + }, "mods": { "57f3c6bd24597738e730fa2f": { - "mod_pistol_grip": [ - "57d152ec245977144076ccdf" + "mod_magazine": [ + "57d1519e24597714373db79d" ], "mod_muzzle": [ "57f3c7e024597738ea4ba286" ], - "mod_magazine": [ - "57d1519e24597714373db79d" + "mod_pistol_grip": [ + "57d152ec245977144076ccdf" ] }, "57f3c7e024597738ea4ba286": { @@ -212,74 +2589,33 @@ "57f3c8cc2459773ec4480328" ] }, - "59f98b4986f7746f546d2cef": { - "mod_mount": [ - "5a27bad7c4a282000b15184b" + "5839a40f24597726f856b511": { + "mod_gas_block": [ + "59d36a0086f7747e673f3946" ], "mod_magazine": [ - "59f99a7d86f7745b134aa97b" - ] - }, - "5a27bad7c4a282000b15184b": { - "mod_mount": [ - "5a27b3d0c4a282000d721ec1" - ] - }, - "5a27b3d0c4a282000d721ec1": { + "55d480c04bdc2d1d4e8b456a" + ], "mod_muzzle": [ - "5a27b6bec4a282000e496f78" - ] - }, - "669fa3f88abd2662d80eee77": { - "mod_barrel": [ - "669fa4ba1bd4416eaa09b3c6" + "57ffb0e42459777d047111c5" ], - "mod_pistolgrip": [ - "66a0da76b6f47fcfeb025e96" - ], - "mod_reciever": [ - "669fa5019aa2a422600442f6" - ], - "mod_magazine": [ - "668fe5c5f35310705d02b696" - ] - }, - "669fa4ba1bd4416eaa09b3c6": { - "mod_sight_front": [ - "668fe5ec4315934ba10c6f96" - ] - }, - "669fa5019aa2a422600442f6": { - "mod_sight_rear": [ - "668fe5e1800f0244f9036e46" - ] - }, - "674d6121c09f69dfb201a888": { "mod_pistol_grip": [ - "63f4da90f31d4a33b87bd054" - ], - "mod_handguard": [ - "674d5e287075e056160e0176" + "5649ad3f4bdc2df8348b4585" ], "mod_reciever": [ - "628a665a86cbd9750d2ff5e5" + "5839a7742459773cf9693481" ], - "mod_scope": [ - "5a33b2c9c4a282000c5a9511" - ], - "mod_stock_000": [ - "5b0e794b5acfc47a877359b2" - ], - "mod_magazine": [ - "5c0548ae0db834001966a3c2" - ] - }, - "5a33b2c9c4a282000c5a9511": { - "mod_scope": [ - "5a32aa8bc4a2826c6e06d737" + "mod_stock": [ + "57dc347d245977596754e7a1" ] }, "58948c8e86f77409493f7266": { + "mod_charge": [ + "58949fac86f77409483e16aa" + ], + "mod_magazine": [ + "5894a05586f774094708ef75" + ], "mod_pistol_grip": [ "5fbcbd6c187fea44d52eda14" ], @@ -288,12 +2624,20 @@ ], "mod_stock": [ "58ac1bf086f77420ed183f9f" + ] + }, + "5894a42086f77426d2590762": { + "mod_mount_000": [ + "58a56f8d86f774651579314c" ], - "mod_charge": [ - "58949fac86f77409483e16aa" + "mod_mount_001": [ + "58a5c12e86f7745d585a2b9e" ], - "mod_magazine": [ - "5894a05586f774094708ef75" + "mod_mount_002": [ + "58a56f8d86f774651579314c" + ], + "mod_sight_front": [ + "5894a73486f77426d259076c" ] }, "5894a5b586f77426d2590767": { @@ -307,64 +2651,40 @@ "5894a81786f77427140b8347" ] }, - "58aeaaa886f7744fc1560f81": { - "mod_muzzle": [ - "58aeac1b86f77457c419f475" - ] - }, - "5894a42086f77426d2590762": { - "mod_sight_front": [ - "5894a73486f77426d259076c" - ], - "mod_mount_000": [ - "58a56f8d86f774651579314c" - ], - "mod_mount_001": [ - "58a5c12e86f7745d585a2b9e" - ], - "mod_mount_002": [ - "58a56f8d86f774651579314c" - ] - }, "58ac1bf086f77420ed183f9f": { "mod_stock": [ "57ade1442459771557167e15" ] }, - "602a9740da11d6478d5a06dc": { - "mod_barrel": [ - "602a95fe4e02ce1eaa358729" - ], - "mod_reciever": [ - "60228924961b8d75ee233c32" + "58aeaaa886f7744fc1560f81": { + "mod_muzzle": [ + "58aeac1b86f77457c419f475" + ] + }, + "5926bb2186f7744b1c6c6e60": { + "mod_charge": [ + "5926c32286f774616e42de99" ], "mod_magazine": [ - "602286df23506e50807090c6" + "5926c3b286f774640d189b6b", + "5a351711c4a282000b1521a4" + ], + "mod_reciever": [ + "5926c0df86f77462f647f764" ] }, - "602a95fe4e02ce1eaa358729": { + "5926c0df86f77462f647f764": { + "mod_handguard": [ + "5a9548c9159bd400133e97b3" + ], "mod_muzzle": [ - "602a97060ddce744014caf6f" - ] - }, - "5839a40f24597726f856b511": { - "mod_pistol_grip": [ - "5649ad3f4bdc2df8348b4585" + "5c0000c00db834001a6697fc" + ], + "mod_sight_rear": [ + "5926d2be86f774134d668e4e" ], "mod_stock": [ - "57dc347d245977596754e7a1" - ], - "mod_reciever": [ - "5839a7742459773cf9693481" - ], - "mod_gas_block": [ - "59d36a0086f7747e673f3946" - ], - "mod_muzzle": [ - "57ffb0e42459777d047111c5" - ], - "mod_magazine": [ - "55d480c04bdc2d1d4e8b456a" + "5926d40686f7740f152b6b7e" ] }, "59d36a0086f7747e673f3946": { @@ -372,73 +2692,27 @@ "57dc32dc245977596d4ef3d3" ] }, - "606587252535c57a13424cfd": { - "mod_pistol_grip": [ - "602e71bd53a60014f9705bfa" - ], - "mod_reciever": [ - "606587a88900dc2d9a55b659" - ], - "mod_stock_001": [ - "5d120a10d7ad1a4e1026ba85" - ], - "mod_charge": [ - "606587bd6d0bd7580617bacc" - ], + "59f98b4986f7746f546d2cef": { "mod_magazine": [ - "5a0060fc86f7745793204432" + "59f99a7d86f7745b134aa97b" + ], + "mod_mount": [ + "5a27bad7c4a282000b15184b" ] }, - "606587a88900dc2d9a55b659": { - "mod_barrel": [ - "60658776f2cb2e02a42ace2b" - ], - "mod_handguard": [ - "6065880c132d4d12c81fd8da" - ] - }, - "60658776f2cb2e02a42ace2b": { - "mod_gas_block": [ - "6065dc8a132d4d12c81fd8e3" - ], + "5a27b3d0c4a282000d721ec1": { "mod_muzzle": [ - "5c7954d52e221600106f4cc7" + "5a27b6bec4a282000e496f78" ] }, - "5c7954d52e221600106f4cc7": { - "mod_muzzle": [ - "5c7955c22e221644f31bfd5e" + "5a27bad7c4a282000b15184b": { + "mod_mount": [ + "5a27b3d0c4a282000d721ec1" ] }, - "5d120a10d7ad1a4e1026ba85": { - "mod_stock": [ - "5d120a28d7ad1a1c8962e295" - ] - }, - "5926bb2186f7744b1c6c6e60": { - "mod_charge": [ - "5926c32286f774616e42de99" - ], - "mod_reciever": [ - "5926c0df86f77462f647f764" - ], - "mod_magazine": [ - "5926c3b286f774640d189b6b", - "5a351711c4a282000b1521a4" - ] - }, - "5926c0df86f77462f647f764": { - "mod_handguard": [ - "5a9548c9159bd400133e97b3" - ], - "mod_stock": [ - "5926d40686f7740f152b6b7e" - ], - "mod_muzzle": [ - "5c0000c00db834001a6697fc" - ], - "mod_sight_rear": [ - "5926d2be86f774134d668e4e" + "5a33b2c9c4a282000c5a9511": { + "mod_scope": [ + "5a32aa8bc4a2826c6e06d737" ] }, "5a9548c9159bd400133e97b3": { @@ -455,2437 +2729,163 @@ "mod_nvg": [ "5c066e3a0db834001b7353f0" ] + }, + "5c7954d52e221600106f4cc7": { + "mod_muzzle": [ + "5c7955c22e221644f31bfd5e" + ] + }, + "5d120a10d7ad1a4e1026ba85": { + "mod_stock": [ + "5d120a28d7ad1a1c8962e295" + ] + }, + "602a95fe4e02ce1eaa358729": { + "mod_muzzle": [ + "602a97060ddce744014caf6f" + ] + }, + "602a9740da11d6478d5a06dc": { + "mod_barrel": [ + "602a95fe4e02ce1eaa358729" + ], + "mod_magazine": [ + "602286df23506e50807090c6" + ], + "mod_reciever": [ + "60228924961b8d75ee233c32" + ] + }, + "606587252535c57a13424cfd": { + "mod_charge": [ + "606587bd6d0bd7580617bacc" + ], + "mod_magazine": [ + "5a0060fc86f7745793204432" + ], + "mod_pistol_grip": [ + "602e71bd53a60014f9705bfa" + ], + "mod_reciever": [ + "606587a88900dc2d9a55b659" + ], + "mod_stock_001": [ + "5d120a10d7ad1a4e1026ba85" + ] + }, + "60658776f2cb2e02a42ace2b": { + "mod_gas_block": [ + "6065dc8a132d4d12c81fd8e3" + ], + "mod_muzzle": [ + "5c7954d52e221600106f4cc7" + ] + }, + "606587a88900dc2d9a55b659": { + "mod_barrel": [ + "60658776f2cb2e02a42ace2b" + ], + "mod_handguard": [ + "6065880c132d4d12c81fd8da" + ] + }, + "669fa3f88abd2662d80eee77": { + "mod_barrel": [ + "669fa4ba1bd4416eaa09b3c6" + ], + "mod_magazine": [ + "668fe5c5f35310705d02b696" + ], + "mod_pistolgrip": [ + "66a0da76b6f47fcfeb025e96" + ], + "mod_reciever": [ + "669fa5019aa2a422600442f6" + ] + }, + "669fa4ba1bd4416eaa09b3c6": { + "mod_sight_front": [ + "668fe5ec4315934ba10c6f96" + ] + }, + "669fa5019aa2a422600442f6": { + "mod_sight_rear": [ + "668fe5e1800f0244f9036e46" + ] + }, + "674d6121c09f69dfb201a888": { + "mod_handguard": [ + "674d5e287075e056160e0176" + ], + "mod_magazine": [ + "5c0548ae0db834001966a3c2" + ], + "mod_pistol_grip": [ + "63f4da90f31d4a33b87bd054" + ], + "mod_reciever": [ + "628a665a86cbd9750d2ff5e5" + ], + "mod_scope": [ + "5a33b2c9c4a282000c5a9511" + ], + "mod_stock_000": [ + "5b0e794b5acfc47a877359b2" + ] } - }, - "items": { - "TacticalVest": {}, - "Pockets": { - "57d1519e24597714373db79d": 10000, - "59f99a7d86f7745b134aa97b": 10000, - "5710c24ad2720bc3458b45a3": 10000, - "668fe5c5f35310705d02b696": 10000, - "5c0548ae0db834001966a3c2": 8034, - "5ad7217186f7746744498875": 49, - "5894a05586f774094708ef75": 10000, - "602286df23506e50807090c6": 10000, - "5d80c60f86f77440373c4ece": 359, - "591382d986f774465a6413a7": 109, - "5938504186f7740991483f30": 470, - "591383f186f7744a4c5edcf3": 152, - "5938603e86f77435642354f4": 764, - "675aaae1dcf102478202c537": 144, - "55d480c04bdc2d1d4e8b456a": 10000, - "637b612fb7afa97bfc3d7005": 10, - "6582dbe43a2e5248357dbe9a": 384, - "5780cf7f2459777de4559322": 990, - "675aaa9a3107dac100063331": 411, - "66acd6702b17692df20144c0": 461, - "5a0060fc86f7745793204432": 5186, - "5eff09cd30a7dc22fd1ddfed": 106, - "5ede7a8229445733cb4c18e2": 202, - "5d947d3886f774447b415893": 34, - "5780cf942459777df90dcb72": 649, - "63a39df18a56922e82001f25": 101, - "5ad5d20586f77449be26d877": 240, - "5926c3b286f774640d189b6b": 7020, - "5c0e531286f7747fa54205c2": 23, - "5a0ee62286f774369454a7ac": 51, - "5914578086f774123569ffa4": 151, - "61aa5aed32a4743c3453d319": 47, - "5a0ec70e86f7742c0b518fba": 41, - "59148c8a86f774197930e983": 220, - "591afe0186f77431bd616a11": 373, - "5a13ee1986f774794d4c14cd": 55, - "675aaa003107dac10006332f": 242, - "61bf7c024770ee6f9c6b8b53": 42, - "5ad5d49886f77455f9731921": 402, - "62987cb98081af308d7558c8": 46, - "5ed5166ad380ab312177c100": 5, - "6761a6f90575f25e020816a4": 287, - "5a13f35286f77413ef1436b0": 39, - "5a351711c4a282000b1521a4": 3792, - "658199972dc4e60f6d556a2f": 464, - "593aa4be86f77457f56379f8": 506, - "590c651286f7741e566b6461": 86, - "5780cf722459777a5108b9a1": 49, - "62a09ec84f842e1bd12da3f2": 107, - "63a39f18c2d53c2c6839c1d3": 44, - "675aaa8f7f3c962069072b27": 395, - "5a0ee37f86f774023657a86f": 11, - "675aaaf674a7619a5304c233": 378, - "675aaab74bca0b001d02f356": 348, - "64ccc2111779ad6ba200a139": 48, - "5ad7242b86f7740a6a3abd43": 54, - "5780d07a2459777de4559324": 54, - "64ccc24de61ea448b507d34d": 60, - "5780d0652459777df90dcb74": 36, - "63a71ed21031ac76fe773c7f": 38, - "5938994586f774523a425196": 237, - "5a0eedb386f77403506300be": 55, - "59148f8286f7741b951ea113": 49, - "5a0eb38b86f774153b320eb0": 45, - "62987e26a77ec735f90a2995": 96, - "5d80c62a86f7744036212b3f": 436, - "5a0ee76686f7743698200d5c": 50, - "61aa5b7db225ac1ead7957c1": 46, - "5addaffe86f77470b455f900": 29, - "5a144dfd86f77445cb5a0982": 26, - "5a0eecf686f7740350630097": 23, - "63a71e781031ac76fe773c7d": 96, - "63a71e922b25f7513905ca20": 25, - "59136a4486f774447a1ed172": 191, - "63a39667c9b3aa4b61683e98": 51, - "5a0f006986f7741ffd2fe484": 45, - "5ed515c8d380ab312177c0fa": 21, - "64ccc1ec1779ad6ba200a137": 51, - "5ad5d7d286f77450166e0a89": 26, - "5fca138c2a7b221b2852a5c6": 143, - "63a39fd1c9b3aa4b61683efb": 119, - "5a0ee72c86f77436955d3435": 29, - "5d95d6be86f77424444eb3a7": 45, - "5a0f08bc86f77478f33b84c2": 48, - "61a6444b8c141d68246e2d2f": 55, - "6581998038c79576a2569e11": 379, - "5937ee6486f77408994ba448": 405, - "590c621186f774138d11ea29": 49, - "675aaae75a3ab8372d0b02a7": 346, - "6582dc4b6ba9e979af6b79f4": 190, - "5913651986f774432f15d132": 70, - "5a0eb6ac86f7743124037a28": 54, - "64ccc1fe088064307e14a6f7": 43, - "5913611c86f77479e0084092": 328, - "62987da96188c076bc0d8c51": 56, - "5a0f0f5886f7741c4e32a472": 53, - "63a39c7964283b5e9c56b280": 242, - "5d8e15b686f774445103b190": 47, - "5780cfa52459777dfb276eb1": 215, - "590c37d286f77443be3d7827": 68, - "61aa81fcb225ac1ead7957c3": 51, - "5a145ebb86f77458f1796f05": 37, - "5a145d4786f7744cbb6f4a12": 21, - "5d80cb3886f77440556dbf09": 49, - "63a39fdf1e21260da44a0256": 80, - "5da5cdcd86f774529238fb9b": 26, - "637b6179104668754b72f8f5": 9, - "5d947d4e86f774447b415895": 23, - "5a0eff2986f7741fd654e684": 52, - "59136e1e86f774432f15d133": 91, - "5a0ea64786f7741707720468": 65, - "5a13ef7e86f7741290491063": 40, - "63a71e86b7f4570d3a293169": 43, - "5a0eeb1a86f774688b70aa5c": 39, - "5a0ea79b86f7741d4a35298e": 40, - "5672c92d4bdc2d180f8b4567": 46, - "5913915886f774123603c392": 73, - "5c1e2a1e86f77431ea0ea84c": 39, - "5a144bdb86f7741d374bbde0": 27, - "61a64428a8c6aa1b795f0ba1": 42, - "5a0dc45586f7742f6b0b73e3": 33, - "675aab0d6b6addc02a08f097": 352, - "63a39ce4cd6db0635c1975fa": 48, - "5d80cb5686f77440545d1286": 50, - "64ccc268c41e91416064ebc7": 51, - "5c0e533786f7747fa23f4d47": 19, - "5ed5160a87bb8443d10680b5": 12, - "5a0ee30786f774023b6ee08f": 61, - "5a0dc95c86f77452440fc675": 73, - "63a71eb5b7f4570d3a29316b": 41, - "64ccc1d4a0f13c24561edf27": 50, - "5a0ec6d286f7742c0b518fb5": 23, - "63a39f08cd6db0635c197600": 77, - "59387a4986f77401cc236e62": 51, - "5d80c78786f774403a401e3e": 29, - "5d80c88d86f77440556dbf07": 21, - "619bde7fc9546643a67df6f4": 67, - "5938144586f77473c2087145": 53, - "5d80ccdd86f77474f7575e02": 26, - "5d80cab086f77440535be201": 27, - "61a64492ba05ef10d62adcc1": 44, - "5a0eec9686f77402ac5c39f2": 50, - "64ccc206793ca11c8f450a38": 49, - "5ad7247386f7747487619dc3": 26, - "5d80ccac86f77470841ff452": 21, - "64ccc1f4ff54fb38131acf27": 48, - "63a39dfe3901f439517cafba": 50, - "5780cf9e2459777df90dcb73": 38, - "5ad5ccd186f774446d5706e9": 43, - "5a0f068686f7745b0d4ea242": 41, - "5448ba0b4bdc2d02308b456c": 54, - "5e42c71586f7747f245e1343": 23, - "63a39f6e64283b5e9c56b289": 52, - "5d8e0db586f7744450412a42": 31, - "5c10c8fd86f7743d7d706df3": 22, - "5a0eebed86f77461230ddb3d": 45, - "5d80c93086f7744036212b41": 26, - "5ad5db3786f7743568421cce": 56, - "61aa5ba8018e9821b7368da9": 44, - "5ad5cfbd86f7742c825d6104": 42, - "62987c658081af308d7558c6": 49, - "5c1e2d1f86f77431e9280bee": 52, - "62a9cb937377a65d7b070cef": 54, - "5a0ee34586f774023b6ee092": 45, - "591ae8f986f77406f854be45": 60, - "5ede7b0c6d23e5473e6e8c66": 27, - "5d80cd1a86f77402aa362f42": 25, - "5a13ef0686f7746e5a411744": 44, - "5a0f075686f7745bcc42ee12": 54, - "5780cda02459777b272ede61": 43, - "5a0f045e86f7745b0f0d0e42": 55, - "64ccc246ff54fb38131acf29": 49, - "5a0ea69f86f7741cd5406619": 63, - "635267f063651329f75a4ee8": 31, - "5c1d0dc586f7744baf2e7b79": 3, - "5ed515ece452db0eb56fc028": 12, - "59136f6f86f774447a1ed173": 46, - "5d80c8f586f77440373c4ed0": 28, - "5c0e531d86f7747fa23f4d42": 47, - "5780cf692459777de4559321": 42, - "5a0eee1486f77402aa773226": 66, - "63a39cb1c9b3aa4b61683ee2": 58, - "5fca13ca637ee0341a484f46": 49, - "5a13f46386f7741dd7384b04": 46, - "637b6251104668754b72f8f9": 3, - "5780d0532459777a5108b9a2": 76, - "637b60c3b7afa97bfc3d7001": 8, - "5c0e530286f7747fa1419862": 28, - "5d80c6fc86f774403a401e3c": 24, - "5913877a86f774432f15d444": 40, - "62a0a16d0b9d3c46de5b6e97": 33, - "5d80cbd886f77470855c26c2": 28, - "5a13eebd86f7746fd639aa93": 17, - "63a399193901f439517cafb6": 26, - "5d95d6fa86f77424484aa5e9": 41, - "63a39c69af870e651d58e6aa": 44, - "63a39fc0af870e651d58e6ae": 27, - "62987dfc402c7f69bf010923": 12, - "5d80c66d86f774405611c7d6": 20, - "5c1f79a086f7746ed066fb8f": 18, - "5a0eeb8e86f77461257ed71a": 39, - "5a13f24186f77410e57c5626": 26, - "6582dc5740562727a654ebb1": 45, - "5ed515f6915ec335206e4152": 10, - "5a1452ee86f7746f33111763": 20, - "5ad5d64486f774079b080af8": 40, - "5d9f1fa686f774726974a992": 19, - "5c0e534186f7747fa1419867": 22, - "64ccc25f95763a1ae376e447": 6, - "66507eabf5ddb0818b085b68": 6, - "63a3a93f8a56922e82001f5d": 13, - "5c94bbff86f7747ee735c08f": 6, - "63a39e49cd6db0635c1975fc": 21, - "61aa5b518f5e7a39b41416e2": 30, - "5d80c95986f77440351beef3": 28, - "5d80c6c586f77440351beef1": 21, - "5da46e3886f774653b7a83fe": 30, - "5d80ca9086f774403a401e40": 19, - "590c392f86f77444754deb29": 21, - "5d80cb8786f774405611c7d9": 30, - "5da743f586f7744014504f72": 29, - "5d8e3ecc86f774414c78d05e": 25, - "5d8e0e0e86f774321140eb56": 35, - "5a0eed4386f77405112912aa": 20, - "5a0ee4b586f7743698200d22": 12, - "637b620db7afa97bfc3d7009": 14, - "5ed51652f6c34d2cc26336a1": 16, - "5a145d7b86f7744cbb6f4a13": 26, - "5c1e495a86f7743109743dfb": 2, - "5e42c81886f7742a01529f57": 4, - "5ed515e03a40a50460332579": 9, - "5c1d0d6d86f7744bb2683e1f": 12, - "5c1d0c5f86f7744bb2683cf0": 2, - "6761a6ccd9bbb27ad703c48a": 12, - "5e42c83786f7742a021fdf3c": 2, - "5c1d0efb86f7744baf2e7b7b": 1, - "664d4b0103ef2c61246afb56": 1, - "64d4b23dc1b37504b41ac2b6": 1 - }, - "Backpack": {}, - "SecuredContainer": { - "5737218f245977612125ba51": 11240, - "5a26ac0ec4a28200741e1e18": 650, - "668fe62ac62660a5d8071446": 172, - "5fd20ff893a8961fc660a954": 2346, - "5efb0e16aeb21837e749c7ff": 3085, - "5c925fa22e221601da359b7b": 2253, - "5c0d5e4486f77478390952fe": 3910, - "59e0d99486f7744a32234762": 1769, - "5efb0da7a29a85116f6ea05f": 1175 - }, - "SpecialLoot": {} } }, - "firstName": [ - "Жрец" - ], "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 + "skills": { + "Common": { + "BotSound": { + "max": 5100, + "min": 5100 }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 2, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": 10, - "ANY_PART_SHOOT_TIME": 5, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 + "CovertMovement": { + "max": 5100, + "min": 5100 }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "ANGLE_FOR_GETUP": 178, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "SELF_NIGHTVISION": true, - "FULL_SECTOR_VIEW": true, - "LOOK_THROUGH_GRASS": true, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true + "Endurance": { + "max": 5100, + "min": 5100 }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "DIST_TO_HIT_MELEE": 1, - "DIST_TO_STOP_SPRINT_MELEE": 2, - "TRY_HIT_PERIOD_MELEE": 0.5, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 + "Health": { + "max": 5100, + "min": 5100 }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "WAIT_DOOR_OPEN_SEC": 1, - "BREACH_CHANCE_100": 0, - "ETERNITY_STAMINA": true + "Immunity": { + "max": 5100, + "min": 5100 }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.15, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 + "Intellect": { + "max": 5100, + "min": 5100 }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 + "MagDrills": { + "max": 5100, + "min": 5100 }, - "Cover": { - "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "CHECK_CLOSEST_FRIEND_DIST": 15, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 12, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "SIT_DOWN_WHEN_HOLDING": true, - "DELETE_POINTS_BEHIND_ENEMIES": false, - "CAN_LAY_TO_COVER": true, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 7, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 + "Metabolism": { + "max": 5100, + "min": 5100 }, - "Patrol": { - "CAN_GESTUS": true, - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 999999.1, - "MIN_TALK_DELAY": 999999, - "TALK_DELAY_BIG": 999999.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHECK_MAGAZINE": false + "RecoilControl": { + "max": 5100, + "min": 5100 }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 36, - "FAR_DIST": 66, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 + "Strength": { + "max": 5100, + "min": 5100 }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 7, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "CAN_TAKE_ITEMS": false, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_TALK": false, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 999999, - "GROUP_EXACTLY_PHRASE_DELAY": 999999, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "AGGRESSOR_LOYALTY_BONUS": 0, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "REVENGE_FOR_SAVAGE_PLAYERS": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", - "REVENGE_BOT_TYPES": [] + "StressResistance": { + "max": 5100, + "min": 5100 }, - "Boss": { - "BOSS_DIST_TO_WARNING": 100, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 100, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 100, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": false, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "EFFECT_PAINKILLER": true - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 2, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": 10, - "ANY_PART_SHOOT_TIME": 5, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "ANGLE_FOR_GETUP": 178, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "SELF_NIGHTVISION": true, - "FULL_SECTOR_VIEW": true, - "LOOK_THROUGH_GRASS": true, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "DIST_TO_HIT_MELEE": 1, - "DIST_TO_STOP_SPRINT_MELEE": 2, - "TRY_HIT_PERIOD_MELEE": 0.5, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "WAIT_DOOR_OPEN_SEC": 1, - "BREACH_CHANCE_100": 0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.15, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "CHECK_CLOSEST_FRIEND_DIST": 15, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 12, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "SIT_DOWN_WHEN_HOLDING": true, - "DELETE_POINTS_BEHIND_ENEMIES": false, - "CAN_LAY_TO_COVER": true, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 7, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "CAN_GESTUS": true, - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 999999.1, - "MIN_TALK_DELAY": 999999, - "TALK_DELAY_BIG": 999999.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHECK_MAGAZINE": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 36, - "FAR_DIST": 66, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 7, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "CAN_TAKE_ITEMS": false, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_TALK": false, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 999999, - "GROUP_EXACTLY_PHRASE_DELAY": 999999, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "AGGRESSOR_LOYALTY_BONUS": 0, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "REVENGE_FOR_SAVAGE_PLAYERS": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", - "REVENGE_BOT_TYPES": [] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 100, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 100, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 100, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": false, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "EFFECT_PAINKILLER": true - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 2, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": 10, - "ANY_PART_SHOOT_TIME": 5, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "ANGLE_FOR_GETUP": 178, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "SELF_NIGHTVISION": true, - "FULL_SECTOR_VIEW": true, - "LOOK_THROUGH_GRASS": true, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "DIST_TO_HIT_MELEE": 1, - "DIST_TO_STOP_SPRINT_MELEE": 2, - "TRY_HIT_PERIOD_MELEE": 0.5, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "WAIT_DOOR_OPEN_SEC": 1, - "BREACH_CHANCE_100": 0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.15, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "CHECK_CLOSEST_FRIEND_DIST": 15, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 12, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "SIT_DOWN_WHEN_HOLDING": true, - "DELETE_POINTS_BEHIND_ENEMIES": false, - "CAN_LAY_TO_COVER": true, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 7, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "CAN_GESTUS": true, - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 999999.1, - "MIN_TALK_DELAY": 999999, - "TALK_DELAY_BIG": 999999.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHECK_MAGAZINE": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 36, - "FAR_DIST": 66, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 7, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "CAN_TAKE_ITEMS": false, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_TALK": false, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 999999, - "GROUP_EXACTLY_PHRASE_DELAY": 999999, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "AGGRESSOR_LOYALTY_BONUS": 0, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "REVENGE_FOR_SAVAGE_PLAYERS": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", - "REVENGE_BOT_TYPES": [] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 100, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 100, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 100, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": false, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "EFFECT_PAINKILLER": true - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 2, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": 10, - "ANY_PART_SHOOT_TIME": 5, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "ANGLE_FOR_GETUP": 178, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "SELF_NIGHTVISION": true, - "FULL_SECTOR_VIEW": true, - "LOOK_THROUGH_GRASS": true, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "DIST_TO_HIT_MELEE": 1, - "DIST_TO_STOP_SPRINT_MELEE": 2, - "TRY_HIT_PERIOD_MELEE": 0.5, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "WAIT_DOOR_OPEN_SEC": 1, - "BREACH_CHANCE_100": 0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.15, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "CHECK_CLOSEST_FRIEND_DIST": 15, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 12, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "SIT_DOWN_WHEN_HOLDING": true, - "DELETE_POINTS_BEHIND_ENEMIES": false, - "CAN_LAY_TO_COVER": true, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 7, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "CAN_GESTUS": true, - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 999999.1, - "MIN_TALK_DELAY": 999999, - "TALK_DELAY_BIG": 999999.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_CHECK_MAGAZINE": false - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 36, - "FAR_DIST": 66, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 7, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "CAN_TAKE_ITEMS": false, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_TALK": false, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 999999, - "GROUP_EXACTLY_PHRASE_DELAY": 999999, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "AGGRESSOR_LOYALTY_BONUS": 0, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "REVENGE_FOR_SAVAGE_PLAYERS": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", - "REVENGE_BOT_TYPES": [] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 100, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 100, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 100, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": false, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "EFFECT_PAINKILLER": true - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 0, - "Earpiece": 0, - "FaceCover": 0, - "ArmorVest": 0, - "Eyewear": 0, - "ArmBand": 0, - "TacticalVest": 0, - "Backpack": 0, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 0, - "Holster": 100, - "Scabbard": 100, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_magazine": 100, - "mod_mount": 90, - "mod_tactical_000": 0, - "mod_tactical_001": 0, - "mod_tactical_002": 0, - "mod_scope": 15, - "mod_muzzle": 100, - "mod_sight_front": 49, - "mod_sight_rear": 58, - "mod_reciever": 100, - "mod_stock_000": 100, - "mod_mount_000": 22, - "mod_charge": 0, - "mod_stock": 100, - "mod_mount_001": 66, - "mod_mount_002": 100, - "mod_tactical": 0, - "mod_foregrip": 20 - }, - "equipmentMods": { - "mod_nvg": 100 - } - }, - "generation": { - "items": { - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, - "backpackLoot": { - "weights": { - "0": 1, - "1": 1, - "2": 2, - "3": 1, - "4": 1, - "5": 1, - "6": 1, - "7": 0 - }, - "whitelist": [] - }, - "pocketLoot": { - "weights": { - "0": 1, - "1": 6, - "2": 3, - "3": 1, - "4": 1 - }, - "whitelist": [] - }, - "vestLoot": { - "weights": { - "0": 1, - "1": 1, - "2": 2, - "3": 1, - "4": 0, - "5": 0, - "6": 0 - }, - "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 1 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 2, - "2": 1, - "3": 1, - "4": 0, - "5": 0 - }, - "whitelist": [] + "Vitality": { + "max": 5100, + "min": 5100 } } } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/sectantwarrior.json b/Libraries/SptAssets/Assets/database/bots/types/sectantwarrior.json index 764fec7e..810f3a3f 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/sectantwarrior.json +++ b/Libraries/SptAssets/Assets/database/bots/types/sectantwarrior.json @@ -4,3837 +4,2112 @@ "5fb53d0b7b5d1342ee24bd64": 1 }, "feet": { - "5fb535cf1c69e5198e234126": 2101, - "5fb535bd1c69e5198e234125": 2105 + "5fb535bd1c69e5198e234125": 2105, + "5fb535cf1c69e5198e234126": 2101 }, "hands": { "5cc2e68f14c02e28b47de290": 1 }, "head": { - "5fb52a537b5d1342ee24bd57": 705, - "5fb5297a0359a84b77066e56": 697 + "5fb5297a0359a84b77066e56": 697, + "5fb52a537b5d1342ee24bd57": 705 }, "voice": { "SectantWarrior": 1 } }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 72, + "Backpack": 68, + "Earpiece": 0, + "Eyewear": 0, + "FaceCover": 41, + "FirstPrimaryWeapon": 100, + "Headwear": 0, + "Holster": 0, + "Pockets": 100, + "Scabbard": 100, + "SecondPrimaryWeapon": 0, + "SecuredContainer": 100, + "TacticalVest": 100 + }, + "equipmentMods": { + "back_plate": 100, + "front_plate": 100, + "left_side_plate": 58, + "right_side_plate": 58 + }, + "weaponMods": { + "mod_charge": 0, + "mod_foregrip": 14, + "mod_launcher": 0, + "mod_magazine": 100, + "mod_mount": 24, + "mod_mount_000": 40, + "mod_mount_001": 36, + "mod_mount_002": 23, + "mod_mount_003": 0, + "mod_mount_004": 100, + "mod_muzzle": 92, + "mod_reciever": 100, + "mod_scope": 30, + "mod_sight_front": 50, + "mod_sight_rear": 64, + "mod_stock": 100, + "mod_stock_000": 100, + "mod_stock_001": 100, + "mod_tactical": 8, + "mod_tactical_000": 9 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 2, + "ANYTIME_LIGHT_WHEN_AIM_100": 10, + "ANY_PART_SHOOT_TIME": 5, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "HARD_AIM_CHANCE_100": 60, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 100, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 100, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "EFFECT_PAINKILLER": true, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LAY_TO_COVER": true, + "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, + "CHANGE_RUN_TO_COVER_SEC": 15, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 7, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": true, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.15, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 36, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 66, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_CLOSEST_FRIEND": true, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 3, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121, + "SHALL_GETUP_ON_ROTATE": false, + "SHALL_LAY_WITHOUT_CHECK": true + }, + "Look": { + "ANGLE_FOR_GETUP": 178, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FULL_SECTOR_VIEW": true, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.2, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SELF_NIGHTVISION": true, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AGGRESSOR_LOYALTY_BONUS": 0, + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 999999, + "GROUP_EXACTLY_PHRASE_DELAY": 999999, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "REVENGE_BOT_TYPES": [], + "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 7, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "BREACH_CHANCE_100": 0, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "WAIT_DOOR_OPEN_SEC": 1, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_LOOK_TO_DEADBODIES": true, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 999999, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 999999.1, + "TALK_DELAY_BIG": 999999.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_HIT_MELEE": 1.3, + "DIST_TO_STOP_SPRINT_MELEE": 1.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "TRY_HIT_PERIOD_MELEE": 0.5, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 2, + "ANYTIME_LIGHT_WHEN_AIM_100": 10, + "ANY_PART_SHOOT_TIME": 5, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "HARD_AIM_CHANCE_100": 60, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 100, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 100, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "EFFECT_PAINKILLER": true, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LAY_TO_COVER": true, + "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, + "CHANGE_RUN_TO_COVER_SEC": 15, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 7, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": true, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.15, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 36, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 66, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_CLOSEST_FRIEND": true, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 3, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121, + "SHALL_GETUP_ON_ROTATE": false, + "SHALL_LAY_WITHOUT_CHECK": true + }, + "Look": { + "ANGLE_FOR_GETUP": 178, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FULL_SECTOR_VIEW": true, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.2, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SELF_NIGHTVISION": true, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AGGRESSOR_LOYALTY_BONUS": 0, + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 999999, + "GROUP_EXACTLY_PHRASE_DELAY": 999999, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "REVENGE_BOT_TYPES": [], + "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 7, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "BREACH_CHANCE_100": 0, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "WAIT_DOOR_OPEN_SEC": 1, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_LOOK_TO_DEADBODIES": true, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 999999, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 999999.1, + "TALK_DELAY_BIG": 999999.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_HIT_MELEE": 1.3, + "DIST_TO_STOP_SPRINT_MELEE": 1.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "TRY_HIT_PERIOD_MELEE": 0.5, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 2, + "ANYTIME_LIGHT_WHEN_AIM_100": 10, + "ANY_PART_SHOOT_TIME": 5, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "HARD_AIM_CHANCE_100": 60, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 100, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 100, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "EFFECT_PAINKILLER": true, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LAY_TO_COVER": true, + "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, + "CHANGE_RUN_TO_COVER_SEC": 15, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 7, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": true, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.15, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 36, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 66, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_CLOSEST_FRIEND": true, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 3, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121, + "SHALL_GETUP_ON_ROTATE": false, + "SHALL_LAY_WITHOUT_CHECK": true + }, + "Look": { + "ANGLE_FOR_GETUP": 178, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FULL_SECTOR_VIEW": true, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.2, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SELF_NIGHTVISION": true, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AGGRESSOR_LOYALTY_BONUS": 0, + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 999999, + "GROUP_EXACTLY_PHRASE_DELAY": 999999, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "REVENGE_BOT_TYPES": [], + "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 7, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "BREACH_CHANCE_100": 0, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "WAIT_DOOR_OPEN_SEC": 1, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_LOOK_TO_DEADBODIES": true, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 999999, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 999999.1, + "TALK_DELAY_BIG": 999999.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_HIT_MELEE": 1.3, + "DIST_TO_STOP_SPRINT_MELEE": 1.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "TRY_HIT_PERIOD_MELEE": 0.5, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 2, + "ANYTIME_LIGHT_WHEN_AIM_100": 10, + "ANY_PART_SHOOT_TIME": 5, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "HARD_AIM_CHANCE_100": 60, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.4, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 100, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 100, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "EFFECT_PAINKILLER": true, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CAN_LAY_TO_COVER": true, + "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, + "CHANGE_RUN_TO_COVER_SEC": 15, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 7, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SIT_DOWN_WHEN_HOLDING": true, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.15, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 18.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 36, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 66, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_CLOSEST_FRIEND": true, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 3, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121, + "SHALL_GETUP_ON_ROTATE": false, + "SHALL_LAY_WITHOUT_CHECK": true + }, + "Look": { + "ANGLE_FOR_GETUP": 178, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FULL_SECTOR_VIEW": true, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.2, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LOOK_THROUGH_GRASS": true, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "SELF_NIGHTVISION": true, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AGGRESSOR_LOYALTY_BONUS": 0, + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 999999, + "GROUP_EXACTLY_PHRASE_DELAY": 999999, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "REVENGE_BOT_TYPES": [], + "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 7, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "BREACH_CHANCE_100": 0, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "WAIT_DOOR_OPEN_SEC": 1, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_LOOK_TO_DEADBODIES": true, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 999999, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 999999.1, + "TALK_DELAY_BIG": 999999.1, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_HIT_MELEE": 1.3, + "DIST_TO_STOP_SPRINT_MELEE": 1.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.04, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.04, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "TRY_HIT_PERIOD_MELEE": 0.5, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + } + }, "experience": { + "aggressorBonus": { + "normal": 0 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": 800, - "max": 800 + "max": 800, + "min": 800 } }, "standingForKill": { "normal": 0 }, - "aggressorBonus": { - "normal": 0 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 50, - "max": 50 - }, - "Chest": { - "min": 220, - "max": 220 - }, - "Stomach": { - "min": 180, - "max": 180 - }, - "LeftArm": { - "min": 100, - "max": 100 - }, - "RightArm": { - "min": 100, - "max": 100 - }, - "LeftLeg": { - "min": 100, - "max": 100 - }, - "RightLeg": { - "min": 100, - "max": 100 - } - } - ] - }, - "skills": { - "Common": { - "AimDrills": { - "min": 5100, - "max": 5100 - }, - "Attention": { - "min": 5100, - "max": 5100 - }, - "BotSound": { - "min": 5100, - "max": 5100 - }, - "CovertMovement": { - "min": 5100, - "max": 5100 - }, - "Endurance": { - "min": 5100, - "max": 5100 - }, - "FieldMedicine": { - "min": 5100, - "max": 5100 - }, - "FirstAid": { - "min": 5100, - "max": 5100 - }, - "Health": { - "min": 5100, - "max": 5100 - }, - "MagDrills": { - "min": 5100, - "max": 5100 - }, - "Metabolism": { - "min": 5100, - "max": 5100 - }, - "ProneMovement": { - "min": 5100, - "max": 5100 - }, - "RecoilControl": { - "min": 5100, - "max": 5100 - }, - "Strength": { - "min": 5100, - "max": 5100 - }, - "StressResistance": { - "min": 5100, - "max": 5100 - }, - "Vitality": { - "min": 5100, - "max": 5100 - } - } - }, - "inventory": { - "equipment": { - "Headwear": {}, - "Earpiece": {}, - "FaceCover": { - "60363c0c92ec1c31037959f5": 3740, - "5b432c305acfc40019478128": 3725, - "657089638db3adca1009f4ca": 2035, - "572b7fa524597762b747ce82": 1922, - "5b432b2f5acfc4771e1c6622": 2029, - "59e7715586f7742ee5789605": 2036, - "6570aead4d84f81fd002a033": 2001 - }, - "ArmorVest": { - "5e9dacf986f774054d6b89f4": 6173, - "60a283193cb70855c43a381d": 2162, - "6038b4ca92ec1c3103795a0d": 1522, - "5f5f41476bdad616ad46d631": 8444, - "5648a7494bdc2d9d488b4583": 8330, - "5fd4c474dd870108a754b241": 2257, - "5e4abb5086f77406975c9342": 1530 - }, - "Eyewear": {}, - "ArmBand": {}, - "TacticalVest": { - "5e9db13186f7742f845ee9d3": 3711, - "5ca20abf86f77418567a43f2": 3725, - "66b6296d7994640992013b17": 3759, - "5d5d8ca986f7742798716522": 3748, - "5c0e9f2c86f77432297fe0a3": 3588, - "5fd4c60f875c30179f5d04c2": 3719, - "5ab8dab586f77441cd04f2a2": 3740, - "61bc85697113f767765c7fe7": 3691, - "628cd624459354321c4b7fa2": 1413, - "603648ff5a45383c122086ac": 3746, - "5d5d85c586f774279a21cbdb": 3632, - "5e4abc1f86f774069619fbaa": 3600 - }, - "Backpack": { - "656f198fb27298d6fd005466": 4219, - "5ab8ee7786f7742d8f33f0b9": 3737, - "5e9dcf5986f7746c417435b3": 5836, - "60a2828e8689911a226117f9": 4314, - "628e1ffc83ec92260c0f437f": 4406, - "5d5d940f86f7742797262046": 2088, - "5ca20d5986f774331e7c9602": 4030 - }, - "FirstPrimaryWeapon": { - "5c46fbd72e2216398b5a8c9c": 4943, - "5fb64bc92b1b027b1f50bcf2": 1612, - "583990e32459771419544dd2": 4264, - "5beed0f50db834001c062b12": 2755, - "574d967124597745970e7c94": 3804, - "5df8ce05b11454561e39243b": 334, - "59d6088586f774275f37482f": 4688, - "58948c8e86f77409493f7266": 1594, - "5ac66d9b5acfc4001633997a": 4631, - "628b9c37a733087d0d7fe84b": 898, - "5a0ec13bfcdbcb00165aa685": 4794, - "62e14904c2699c0ec93adc47": 231, - "59984ab886f7743e98271174": 4766, - "60339954d62c9b14ed777c06": 1282, - "57c44b372459772d2b39b8ce": 658, - "6499849fc93611967b034949": 199, - "5e00903ae9dc277128008b87": 397, - "674d6121c09f69dfb201a888": 222 - }, - "SecondPrimaryWeapon": {}, - "Holster": {}, - "Scabbard": { - "5fc64ea372b0dd78d51159dc": 30180, - "57e26ea924597715ca604a09": 5787, - "5bffdc370db834001d23eca8": 5792, - "601948682627df266209af05": 307 - }, - "Pockets": { - "557ffd194bdc2d28148b457f": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - } - }, - "Ammo": { - "Caliber762x54R": { - "560d61e84bdc2da74d8b4571": 1 - }, - "Caliber1143x23ACP": { - "5e81f423763d9f754677bf2e": 78, - "5efb0cabfb3e451d70735af5": 83 - }, - "Caliber545x39": { - "56dff026d2720bb8668b4567": 478, - "56dfef82d2720bbd668b4567": 1850, - "56dff3afd2720bba668b4567": 414, - "56dff061d2720bb5668b4567": 329, - "5c0d5e4486f77478390952fe": 744 - }, - "Caliber762x39": { - "59e0d99486f7744a32234762": 1 - }, - "Caliber762x51": { - "5a608bf24f39f98ffc77720e": 1 - }, - "Caliber9x19PARA": { - "5c0d56a986f774449d5de529": 4780, - "5c925fa22e221601da359b7b": 4270, - "56d59d3ad2720bdb418b4577": 2390, - "5efb0da7a29a85116f6ea05f": 5010, - "5efb0e16aeb21837e749c7ff": 2820, - "5a3c16fe86f77452b62de32a": 4650, - "64b7bbb74b75259c590fa897": 171 - }, - "Caliber9x21": { - "5a26ac0ec4a28200741e1e18": 1 - }, - "Caliber9x39": { - "57a0dfb82459774d3078b56c": 81, - "5c0d668f86f7747ccb7f13b2": 200 - }, - "Caliber762x35": { - "5fd20ff893a8961fc660a954": 27, - "64b8725c4b75259c590fa899": 158, - "5fbe3ffdf8b6a877a729ea82": 37 - } - }, - "mods": { - "5c46fbd72e2216398b5a8c9c": { - "mod_pistol_grip": [ - "5c471be12e221602b66cd9ac" - ], - "mod_barrel": [ - "5c471cb32e221602b177afaa" - ], - "mod_mount_001": [ - "5c471c2d2e22164bef5d077f" - ], - "mod_reciever": [ - "5c471bd12e221602b4129c3a" - ], - "mod_stock": [ - "5c471b5d2e221602b21d4e14" - ], - "mod_mount_000": [ - "5a7c74b3e899ef0014332c29", - "5e569a2e56edd02abe09f280" - ], - "mod_magazine": [ - "5c471c442e221602b542a6f8" - ] - }, - "5c471cb32e221602b177afaa": { - "mod_gas_block": [ - "5c471c842e221615214259b5" - ], - "mod_muzzle": [ - "5c471bfc2e221602b21d4e17" - ] - }, - "5c471bfc2e221602b21d4e17": { - "mod_sight_front": [ - "5c471ba12e221602b3137d76" - ], - "mod_muzzle": [ - "5e01e9e273d8eb11426f5bc3" - ] - }, - "5e01e9e273d8eb11426f5bc3": { - "mod_muzzle": [ - "5e01ea19e9dc277128008c0b" - ] - }, - "5c471c2d2e22164bef5d077f": { - "mod_handguard": [ - "5e56991336989c75ab4f03f6" - ] - }, - "5e9dacf986f774054d6b89f4": { - "Front_plate": [ - "65573fa5655447403702a816" - ], - "Back_plate": [ - "65573fa5655447403702a816" - ], - "Soft_armor_front": [ - "65732de75d3a3129fb05f3dd" - ], - "Soft_armor_back": [ - "65732df4d0acf75aea06c87b" - ], - "Soft_armor_left": [ - "65732e05d0acf75aea06c87f" - ], - "soft_armor_right": [ - "65732e0f6784ca384b0167ad" - ], - "Collar": [ - "65732e215d3a3129fb05f3e1" - ], - "Groin": [ - "65732e30dd8739f6440ef383" - ] - }, - "5fb64bc92b1b027b1f50bcf2": { - "mod_magazine": [ - "5fb651b52b1b027b1f50bcff", - "5fb651dc85f90547f674b6f4" - ], - "mod_mount_001": [ - "5fce0f9b55375d18a253eff2" - ], - "mod_mount_002": [ - "5fce0f9b55375d18a253eff2" - ], - "mod_barrel": [ - "5fb65363d1409e5ca04b54f5" - ], - "mod_sight_front": [ - "5fb6567747ce63734e3fa1dc" - ], - "mod_sight_rear": [ - "5fb6564947ce63734e3fa1da" - ], - "mod_stock": [ - "5fb655b748c711690e3a8d5a" - ], - "mod_mount": [ - "5fbb976df9986c4cff3fe5f2" - ] - }, - "5fb65363d1409e5ca04b54f5": { - "mod_muzzle": [ - "5fc4b992187fea44d52edaa9" - ] - }, - "5fc4b992187fea44d52edaa9": { - "mod_muzzle": [ - "5fc4b9b17283c4046c5814d7" - ] - }, - "5fb655b748c711690e3a8d5a": { - "mod_stock_000": [ - "5fb655a72b1b027b1f50bd06" - ] - }, - "5fbb976df9986c4cff3fe5f2": { - "mod_foregrip": [ - "5c7fc87d2e221644f31c0298" - ] - }, - "583990e32459771419544dd2": { - "mod_pistol_grip": [ - "5649ad3f4bdc2df8348b4585" - ], - "mod_stock": [ - "57dc347d245977596754e7a1" - ], - "mod_reciever": [ - "57dc334d245977597164366f" - ], - "mod_gas_block": [ - "59d36a0086f7747e673f3946" - ], - "mod_muzzle": [ - "57ffb0e42459777d047111c5" - ], - "mod_magazine": [ - "5bed61680db834001d2c45ab" - ] - }, - "59d36a0086f7747e673f3946": { - "mod_handguard": [ - "57dc32dc245977596d4ef3d3" - ] - }, - "66b6296d7994640992013b17": { - "Front_plate": [ - "656fa0fb498d1b7e3e071d9c" - ], - "Back_plate": [ - "656fa0fb498d1b7e3e071d9c" - ], - "Soft_armor_front": [ - "66b884f4c5d72b02774886eb" - ], - "Soft_armor_back": [ - "66b884eaacff495a29492849" - ], - "Soft_armor_left": [ - "66b8851678bbc0200425fa03" - ], - "soft_armor_right": [ - "66b88521a7f72d197e70be3b" - ], - "Groin": [ - "66b884fd7994640992013b37" - ] - }, - "5beed0f50db834001c062b12": { - "mod_pistol_grip": [ - "5beec8ea0db834001a6f9dbf" - ], - "mod_reciever": [ - "5beec91a0db834001961942d" - ], - "mod_stock_001": [ - "5beec8b20db834001961942a" - ], - "mod_handguard": [ - "5beec3e30db8340019619424" - ], - "mod_barrel": [ - "5beec1bd0db834001e6006f3" - ], - "mod_magazine": [ - "55d482194bdc2d1d4e8b456b" - ] - }, - "5beec91a0db834001961942d": { - "mod_sight_rear": [ - "5beec9450db83400970084fd" - ] - }, - "5beec9450db83400970084fd": { - "mod_sight_rear": [ - "5bf3f59f0db834001a6fa060" - ] - }, - "5beec8b20db834001961942a": { - "mod_stock": [ - "5beec8c20db834001d2c465c" - ] - }, - "5beec3e30db8340019619424": { - "mod_mount_000": [ - "5beecbb80db834001d2c465e" - ], - "mod_mount_001": [ - "5beecbb80db834001d2c465e" - ] - }, - "5beec1bd0db834001e6006f3": { - "mod_muzzle": [ - "564caa3d4bdc2d17108b458e" - ] - }, - "60a283193cb70855c43a381d": { - "Front_plate": [ - "656fa61e94b480b8a500c0e8" - ], - "Back_plate": [ - "656fa61e94b480b8a500c0e8" - ], - "Left_side_plate": [ - "64afdb577bb3bfe8fe03fd1d" - ], - "Right_side_plate": [ - "64afdb577bb3bfe8fe03fd1d" - ], - "Soft_armor_front": [ - "6575d561b15fef3dd4051670" - ], - "Soft_armor_back": [ - "6575d56b16c2762fba005818" - ], - "Soft_armor_left": [ - "6575d57a16c2762fba00581c" - ], - "soft_armor_right": [ - "6575d589b15fef3dd4051674" - ], - "Collar": [ - "6575d598b15fef3dd4051678" - ], - "Shoulder_l": [ - "6575d5b316c2762fba005824" - ], - "Shoulder_r": [ - "6575d5bd16c2762fba005828" - ], - "Groin": [ - "6575d5a616c2762fba005820" - ] - }, - "574d967124597745970e7c94": { - "mod_stock": [ - "5afd7ded5acfc40017541f5e" - ], - "mod_barrel": [ - "634f02331f9f536910079b51" - ], - "mod_reciever": [ - "634f05ca517ccc8a960fc748" - ], - "mod_magazine": [ - "5c5970672e221602b21d7855" - ] - }, - "5afd7ded5acfc40017541f5e": { - "mod_stock": [ - "5afd7e095acfc40017541f61" - ], - "mod_pistol_grip": [ - "5afd7e445acfc4001637e35a" - ], - "mod_mount": [ - "653ed19d22e1ef3d9002c328" - ] - }, - "5afd7e095acfc40017541f61": { - "mod_stock": [ - "55d4ae6c4bdc2d8b2f8b456e" - ] - }, - "634f02331f9f536910079b51": { - "mod_mount_000": [ - "634f04d82e5def262d0b30c6" - ] - }, - "634f04d82e5def262d0b30c6": { - "mod_gas_block": [ - "634f02d7517ccc8a960fc744" - ], - "mod_sight_rear": [ - "574db213245977459a2f3f5d" - ] - }, - "634f02d7517ccc8a960fc744": { - "mod_mount_000": [ - "653ecd065a1690d9d90491e6" - ] - }, - "6038b4ca92ec1c3103795a0d": { - "Front_plate": [ - "656fa76500d62bcd2e024080" - ], - "Back_plate": [ - "656fa76500d62bcd2e024080" - ], - "Soft_armor_front": [ - "6575e71760703324250610c3" - ], - "Soft_armor_back": [ - "6575e72660703324250610c7" - ] - }, - "5f5f41476bdad616ad46d631": { - "Front_plate": [ - "656f664200d62bcd2e024077" - ], - "Back_plate": [ - "657b2797c3dbcb01d60c35ea" - ], - "Left_side_plate": [ - "654a4f8bc721968a4404ef18" - ], - "Right_side_plate": [ - "654a4f8bc721968a4404ef18" - ], - "Soft_armor_front": [ - "65731b46cea9255e2102360a" - ], - "Soft_armor_back": [ - "65731b4fcea9255e2102360e" - ], - "Soft_armor_left": [ - "65731b576e709cddd001ec3f" - ], - "soft_armor_right": [ - "65731b60ff6dc44a7d068c4a" - ], - "Collar": [ - "65731b666e709cddd001ec43" - ], - "Groin": [ - "65731b716e709cddd001ec47" - ], - "Groin_back": [ - "65731b6b6042b0f210020ef6" - ] - }, - "5df8ce05b11454561e39243b": { - "mod_pistol_grip": [ - "5b07db875acfc40dc528a5f6" - ], - "mod_stock": [ - "5c793fb92e221644f31bfb64" - ], - "mod_reciever": [ - "5df8e4080b92095fd441e594" - ], - "mod_charge": [ - "5df8e085bb49d91fb446d6a8" - ], - "mod_magazine": [ - "5a3501acc4a282000d72293a" - ] - }, - "5c793fb92e221644f31bfb64": { - "mod_stock_000": [ - "5c793fde2e221601da358614" - ] - }, - "5df8e4080b92095fd441e594": { - "mod_scope": [ - "5b3b6dc75acfc47a8773fb1e" - ], - "mod_barrel": [ - "5df917564a9f347bc92edca3" - ], - "mod_handguard": [ - "5df916dfbb49d91fb446d6b9" - ], - "mod_sight_rear": [ - "5c1780312e221602b66cc189" - ] - }, - "5b3b6dc75acfc47a8773fb1e": { - "mod_scope": [ - "5b3b6e495acfc4330140bd88" - ] - }, - "5df917564a9f347bc92edca3": { - "mod_muzzle": [ - "5a34fd2bc4a282329a73b4c5" - ], - "mod_gas_block": [ - "5dfa3d45dfc58d14537c20b0" - ] - }, - "5a34fd2bc4a282329a73b4c5": { - "mod_muzzle": [ - "5a34fe59c4a282000b1521a2" - ] - }, - "5df916dfbb49d91fb446d6b9": { - "mod_scope": [ - "5649a2464bdc2d91118b45a8" - ], - "mod_tactical": [ - "5d10b49bd7ad1a1a560708b0" - ], - "mod_sight_front": [ - "5dfa3d950dee1b22f862eae0" - ], - "mod_foregrip": [ - "5b7be4895acfc400170e2dd5" - ] - }, - "5649a2464bdc2d91118b45a8": { - "mod_scope": [ - "58d2664f86f7747fec5834f6" - ] - }, - "58d2664f86f7747fec5834f6": { - "mod_scope": [ - "58d268fc86f774111273f8c2" - ] - }, - "5b7be4895acfc400170e2dd5": { - "mod_foregrip": [ - "59f8a37386f7747af3328f06" - ] - }, - "5648a7494bdc2d9d488b4583": { - "Soft_armor_front": [ - "65703d866584602f7d057a8a" - ], - "Soft_armor_back": [ - "65703fa06584602f7d057a8e" - ], - "Soft_armor_left": [ - "65703fe46a912c8b5c03468b" - ], - "soft_armor_right": [ - "657040374e67e8ec7a0d261c" - ] - }, - "61bc85697113f767765c7fe7": { - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_front": [ - "6572fc809a866b80ab07eb59" - ], - "Soft_armor_back": [ - "6572fc8c9a866b80ab07eb5d" - ], - "Soft_armor_left": [ - "6572fc989a866b80ab07eb61" - ], - "soft_armor_right": [ - "6572fca39a866b80ab07eb65" - ] - }, - "628cd624459354321c4b7fa2": { - "Front_plate": [ - "64afdcb83efdfea28601d041" - ], - "Back_plate": [ - "64afdcb83efdfea28601d041" - ] - }, - "59d6088586f774275f37482f": { - "mod_gas_block": [ - "59d64ec286f774171d1e0a42" - ], - "mod_pistol_grip": [ - "59e62cc886f77440d40b52a1" - ], - "mod_reciever": [ - "59d6507c86f7741b846413a2" - ], - "mod_sight_rear": [ - "59d650cf86f7741b846413a4" - ], - "mod_stock": [ - "59d6514b86f774171a068a08" - ], - "mod_muzzle": [ - "5a9fbacda2750c00141e080f" - ], - "mod_magazine": [ - "59e5f5a486f7746c530b3ce2" - ] - }, - "59d64ec286f774171d1e0a42": { - "mod_handguard": [ - "59d64f2f86f77417193ef8b3" - ] - }, - "5fd4c474dd870108a754b241": { - "front_plate": [ - "656faf0ca0dce000a2020f77" - ], - "back_plate": [ - "656faf0ca0dce000a2020f77" - ] - }, - "5e569a2e56edd02abe09f280": { - "mod_scope": [ - "67641a851b2899700609901a" - ] - }, - "67641a851b2899700609901a": { - "mod_scope": [ - "67641b461c2eb66ade05dba6" - ] - }, - "5e4abb5086f77406975c9342": { - "Front_plate": [ - "656fa76500d62bcd2e024080" - ], - "Back_plate": [ - "656fa76500d62bcd2e024080" - ], - "Soft_armor_front": [ - "6575e71760703324250610c3" - ], - "Soft_armor_back": [ - "6575e72660703324250610c7" - ] - }, - "58948c8e86f77409493f7266": { - "mod_pistol_grip": [ - "5fbcbd6c187fea44d52eda14" - ], - "mod_reciever": [ - "5894a5b586f77426d2590767" - ], - "mod_stock": [ - "58ac1bf086f77420ed183f9f" - ], - "mod_charge": [ - "58949fac86f77409483e16aa" - ], - "mod_magazine": [ - "5c5db6652e221600113fba51" - ] - }, - "5894a5b586f77426d2590767": { - "mod_barrel": [ - "58aeaaa886f7744fc1560f81" - ], - "mod_handguard": [ - "5894a42086f77426d2590762" - ], - "mod_sight_rear": [ - "5894a81786f77427140b8347" - ] - }, - "58aeaaa886f7744fc1560f81": { - "mod_muzzle": [ - "58aeac1b86f77457c419f475" - ] - }, - "5894a42086f77426d2590762": { - "mod_sight_front": [ - "5894a73486f77426d259076c" - ], - "mod_mount_000": [ - "58a56f8d86f774651579314c" - ], - "mod_mount_001": [ - "58a5c12e86f7745d585a2b9e" - ], - "mod_mount_002": [ - "58a56f8d86f774651579314c" - ] - }, - "58ac1bf086f77420ed183f9f": { - "mod_stock": [ - "57ade1442459771557167e15" - ] - }, - "5ac66d9b5acfc4001633997a": { - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac733a45acfc400192630e2" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ], - "mod_muzzle": [ - "593d493f86f7745e6b2ceb22" - ], - "mod_magazine": [ - "5cbdaf89ae9215000e5b9c94", - "5bed61680db834001d2c45ab" - ] - }, - "59c6633186f7740cf0493bb9": { - "mod_handguard": [ - "5648b1504bdc2d9d488b4584" - ] - }, - "628b9c37a733087d0d7fe84b": { - "mod_gas_block": [ - "628b8d83717774443b15e248" - ], - "mod_pistol_grip": [ - "5cf50850d7f00c056e24104c" - ], - "mod_stock_000": [ - "628b9a40717774443b15e9f2" - ], - "mod_muzzle": [ - "593d493f86f7745e6b2ceb22" - ], - "mod_magazine": [ - "5bed61680db834001d2c45ab" - ] - }, - "628b8d83717774443b15e248": { - "mod_handguard": [ - "628b916469015a4e1711ed8d" - ] - }, - "628b916469015a4e1711ed8d": { - "mod_reciever": [ - "628b9be6cff66b70c002b14c" - ] - }, - "628b9be6cff66b70c002b14c": { - "mod_sight_rear": [ - "628b9471078f94059a4b9bfb" - ] - }, - "628b9a40717774443b15e9f2": { - "mod_stock": [ - "55d4ae6c4bdc2d8b2f8b456e" - ] - }, - "5a0ec13bfcdbcb00165aa685": { - "mod_gas_block": [ - "59d64ec286f774171d1e0a42" - ], - "mod_pistol_grip": [ - "59e62cc886f77440d40b52a1" - ], - "mod_reciever": [ - "59d6507c86f7741b846413a2" - ], - "mod_sight_rear": [ - "59d650cf86f7741b846413a4" - ], - "mod_stock": [ - "59d6514b86f774171a068a08" - ], - "mod_muzzle": [ - "5a0d63621526d8dba31fe3bf" - ], - "mod_mount_000": [ - "5a7c74b3e899ef0014332c29", - "5c61a40d2e2216001403158d" - ], - "mod_magazine": [ - "59d625f086f774661516605d" - ] - }, - "5c61a40d2e2216001403158d": { - "mod_scope": [ - "67641a851b2899700609901a" - ] - }, - "67641b461c2eb66ade05dba6": { - "mod_tactical": [ - "67641bec4ad898aa100c1079" - ] - }, - "62e14904c2699c0ec93adc47": { - "mod_muzzle": [ - "62e2a7138e1ac9380579c122" - ], - "mod_stock": [ - "62e2969582ebf260c20539c2" - ], - "mod_reciever": [ - "62e27a7865f0b1592a49e17b" - ], - "mod_handguard": [ - "637ba19df7ca6372bf2613d7" - ], - "mod_pistolgrip": [ - "637ba29bf7ca6372bf2613db" - ], - "mod_magazine": [ - "62e153bcdb1a5c41971c1b5b" - ] - }, - "62e27a7865f0b1592a49e17b": { - "mod_mount": [ - "62e281349ecd3f493f6df954" - ] - }, - "62e281349ecd3f493f6df954": { - "mod_scope": [ - "616554fe50224f204c1da2aa" - ] - }, - "616554fe50224f204c1da2aa": { - "mod_scope": [ - "61657230d92c473c770213d7" - ] - }, - "637ba19df7ca6372bf2613d7": { - "mod_mount_001": [ - "62ed1921b3608410ef5a2c04" - ] - }, - "62ed1921b3608410ef5a2c04": { - "mod_tactical": [ - "560d657b4bdc2da74d8b4572" - ] - }, - "59984ab886f7743e98271174": { - "mod_pistol_grip": [ - "5998517986f7746017232f7e" - ], - "mod_stock": [ - "599851db86f77467372f0a18" - ], - "mod_reciever": [ - "59985a8086f77414ec448d1a" - ], - "mod_sight_rear": [ - "599860e986f7743bb57573a6" - ], - "mod_gas_block": [ - "59ccd11386f77428f24a488f" - ], - "mod_muzzle": [ - "59bfc5c886f7743bf6794e62" - ], - "mod_magazine": [ - "599860ac86f77436b225ed1a" - ] - }, - "59ccd11386f77428f24a488f": { - "mod_handguard": [ - "5648b1504bdc2d9d488b4584" - ] - }, - "60339954d62c9b14ed777c06": { - "mod_stock_001": [ - "602e3f1254072b51b239f713" - ], - "mod_charge": [ - "6033749e88382f4fab3fd2c5" - ], - "mod_tactical_000": [ - "602f85fd9b513876d4338d9c" - ], - "mod_pistol_grip": [ - "57c55efc2459772d2c6271e7" - ], - "mod_reciever": [ - "602e63fb6335467b0c5ac94d" - ], - "mod_magazine": [ - "5a7ad2e851dfba0016153692" - ] - }, - "602e3f1254072b51b239f713": { - "mod_stock_000": [ - "602e620f9b513876d4338d9a" - ] - }, - "602e63fb6335467b0c5ac94d": { - "mod_barrel": [ - "603372b4da11d6478d5a07ff" - ], - "mod_handguard": [ - "6034e3cb0ddce744014cb870" - ], - "mod_sight_rear": [ - "5bc09a18d4351e003562b68e" - ], - "mod_scope": [ - "59f9d81586f7744c7506ee62" - ] - }, - "603372b4da11d6478d5a07ff": { - "mod_muzzle": [ - "5c6165902e22160010261b28" - ] - }, - "6034e3cb0ddce744014cb870": { - "mod_sight_front": [ - "5bc09a30d4351e00367fb7c8" - ] - }, - "57c44b372459772d2b39b8ce": { - "mod_muzzle": [ - "57c44dd02459772d2e0ae249" - ], - "mod_reciever": [ - "57c44f4f2459772d2c627113" - ], - "mod_pistol_grip": [ - "57c44fa82459772d2d75e415" - ], - "mod_stock": [ - "57c450252459772d28133253" - ], - "mod_handguard": [ - "651178336cad06c37c049eb4" - ], - "mod_mount_004": [ - "5947db3f86f77447880cf76f" - ], - "mod_magazine": [ - "57838f9f2459774a150289a0" - ] - }, - "57c44dd02459772d2e0ae249": { - "mod_sight_rear": [ - "57c44e7b2459772d28133248" - ] - }, - "6499849fc93611967b034949": { - "mod_gas_block": [ - "649ec107961514b22506b10c" - ], - "mod_pistol_grip": [ - "5beec8ea0db834001a6f9dbf" - ], - "mod_handguard": [ - "649ec127c93611967b034957" - ], - "mod_stock_001": [ - "649ec87d8007560a9001ab36" - ], - "mod_muzzle": [ - "64c196ad26a15b84aa07132f" - ], - "mod_reciever": [ - "649ec2f3961514b22506b111" - ], - "mod_magazine": [ - "5bed61680db834001d2c45ab" - ] - }, - "649ec127c93611967b034957": { - "mod_mount_001": [ - "5beecbb80db834001d2c465e" - ] - }, - "649ec87d8007560a9001ab36": { - "mod_stock": [ - "5beec8c20db834001d2c465c" - ] - }, - "649ec2f3961514b22506b111": { - "mod_scope": [ - "609a63b6e2ff132951242d09", - "5c0505e00db834001b735073" - ] - }, - "5e00903ae9dc277128008b87": { - "mod_magazine": [ - "5de8eac42a78646d96665d91" - ], - "mod_muzzle": [ - "5de8f237bbaf010b10528a70" - ], - "mod_stock": [ - "5de910da8b6c4240ba2651b5" - ], - "mod_reciever": [ - "5de8e67c4a9f347bc92edbd7" - ], - "mod_charge": [ - "5de922d4b11454561e39239f" - ], - "mod_mount_000": [ - "5de8fbf2b74cd90030650c79" - ] - }, - "5de8f237bbaf010b10528a70": { - "mod_muzzle": [ - "5de8f2d5b74cd90030650c72" - ], - "mod_tactical": [ - "5b3a337e5acfc4704b4a19a0" - ] - }, - "5de8e67c4a9f347bc92edbd7": { - "mod_scope": [ - "5c064c400db834001d23f468" - ], - "mod_sight_rear": [ - "5de8fb539f98ac2bc659513a" - ], - "mod_mount": [ - "5de8fc0b205ddc616a6bc51b" - ] - }, - "5c064c400db834001d23f468": { - "mod_scope": [ - "5dfe6104585a0c3e995c7b82" - ] - }, - "5de8fc0b205ddc616a6bc51b": { - "mod_tactical": [ - "544909bb4bdc2d6f028b4577" - ] - }, - "5de8fbf2b74cd90030650c79": { - "mod_foregrip": [ - "58c157be86f77403c74b2bb6" - ] - }, - "674d6121c09f69dfb201a888": { - "mod_pistol_grip": [ - "63f4da90f31d4a33b87bd054" - ], - "mod_handguard": [ - "674d5e287075e056160e0176" - ], - "mod_reciever": [ - "628a665a86cbd9750d2ff5e5" - ], - "mod_scope": [ - "5a33b2c9c4a282000c5a9511" - ], - "mod_stock_000": [ - "5b0e794b5acfc47a877359b2" - ], - "mod_magazine": [ - "5c0548ae0db834001966a3c2" - ] - }, - "5a33b2c9c4a282000c5a9511": { - "mod_scope": [ - "5a32aa8bc4a2826c6e06d737" - ] - } - }, - "items": { - "TacticalVest": { - "5c471c442e221602b542a6f8": 9885, - "5fb651b52b1b027b1f50bcff": 1564, - "5bed61680db834001d2c45ab": 10000, - "5fb651dc85f90547f674b6f4": 1660, - "55d482194bdc2d1d4e8b456b": 5510, - "5c5970672e221602b21d7855": 7608, - "5a3501acc4a282000d72293a": 668, - "5c5db6652e221600113fba51": 3188, - "5cbdaf89ae9215000e5b9c94": 5992, - "59d625f086f774661516605d": 7175, - "62e153bcdb1a5c41971c1b5b": 462, - "599860ac86f77436b225ed1a": 9532, - "5a7ad2e851dfba0016153692": 2564, - "59e5f5a486f7746c530b3ce2": 866, - "57838f9f2459774a150289a0": 1316, - "5de8eac42a78646d96665d91": 794, - "5c0548ae0db834001966a3c2": 444 - }, - "Pockets": { - "5448be9a4bdc2dfd2f8b456a": 1 - }, - "Backpack": { - "5d63d33b86f7746ea9275524": 129, - "5d6fc78386f77449d825f9dc": 580, - "590a3c0a86f774385a33c450": 2483, - "5e2af47786f7746d404f3aaa": 1012, - "5909e99886f7740c983b9984": 2871, - "5d0377ce86f774186372f689": 679, - "5e2af51086f7746d3f3c3402": 567, - "573476d324597737da2adc13": 1380, - "590c595c86f7747884343ad7": 539, - "5734779624597737e04bf329": 2965, - "5d1c774f86f7746d6620f8db": 1490, - "5c05308086f7746b2101e90b": 129, - "5d03775b86f774203e7e0c4b": 678, - "5d03784a86f774203e7e0c4d": 1413, - "5d1b392c86f77425243e98fe": 3622, - "590a391c86f774385a33c404": 1441, - "5d1b2fa286f77425227d1674": 861, - "573475fb24597737fb1379e1": 1510, - "590a373286f774287540368b": 516, - "5df8a72c86f77412640e2e83": 374, - "5e2af2bc86f7746d3f3c33fc": 942, - "57347c2e24597744902c94a1": 1129, - "57347c1124597737fb1379e3": 1131, - "590a386e86f77429692b27ab": 2377, - "57347c5b245977448d35f6e1": 1654, - "5c06782b86f77426df5407d2": 3685, - "56742c284bdc2d98058b456d": 1010, - "61bf7b6302b3924be92fa8c3": 1400, - "5e2af4d286f7746d4159f07a": 941, - "5c12688486f77426843c7d32": 292, - "5d1b313086f77425227d1678": 2786, - "5672cb724bdc2dc2088b456b": 1405, - "5bc9b9ecd4351e3bac122519": 148, - "5734795124597738002c6176": 1037, - "5c06779c86f77426e00dd782": 3578, - "5c13cd2486f774072c757944": 1272, - "5bc9b355d4351e6d1509862a": 129, - "5b43575a86f77424f443fe62": 454, - "67586c61a0c49554ed0bb4a8": 286, - "5d80c66d86f774405611c7d6": 23, - "62a9cb937377a65d7b070cef": 45, - "59e35cbb86f7741778269d83": 778, - "62a09ee4cf4a99369e262453": 792, - "5df8a6a186f77412640e2e80": 178, - "573478bc24597738002c6175": 356, - "675aaaf674a7619a5304c233": 502, - "59e361e886f774176c10a2a5": 400, - "5d235a5986f77443f6329bc6": 141, - "5d1b3f2d86f774253763b735": 621, - "590a3efd86f77437d351a25b": 1171, - "5672cb124bdc2d1a0f8b4568": 1935, - "619cc01e0a7c3a1a2731940c": 861, - "62a0a043cf4a99369e2624a5": 497, - "5e54f62086f774219b0f1937": 153, - "590a3b0486f7743954552bdb": 1852, - "5938994586f774523a425196": 202, - "5d6fc87386f77449db3db94e": 673, - "57347b8b24597737dd42e192": 1103, - "5d1b2ffd86f77425243e8d17": 1689, - "5eff09cd30a7dc22fd1ddfed": 95, - "5c1e2a1e86f77431ea0ea84c": 40, - "637b612fb7afa97bfc3d7005": 52, - "56742c2e4bdc2d95058b456d": 775, - "62987c658081af308d7558c6": 44, - "63a39c7964283b5e9c56b280": 201, - "5e2aee0a86f774755a234b62": 485, - "5bc9c049d4351e44f824d360": 115, - "5734781f24597737e04bf32a": 2622, - "5d1b3a5d86f774252167ba22": 1168, - "5e2aedd986f7746d404f3aa4": 508, - "590c2b4386f77425357b6123": 369, - "5d1b2f3f86f774252167a52c": 338, - "5d40425986f7743185265461": 187, - "573477e124597737dd42e191": 1461, - "5ed515c8d380ab312177c0fa": 120, - "59faf98186f774067b6be103": 602, - "59e366c186f7741778269d85": 397, - "590c5a7286f7747884343aea": 1222, - "59e3556c86f7741776641ac2": 559, - "590c2c9c86f774245b1f03f2": 647, - "5672cb304bdc2dc2088b456a": 1342, - "57347baf24597738002c6178": 1377, - "5c94bbff86f7747ee735c08f": 133, - "5938603e86f77435642354f4": 595, - "5d1b309586f77425227d1676": 1878, - "5734770f24597738025ee254": 1147, - "590c31c586f774245e3141b2": 822, - "5733279d245977289b77ec24": 993, - "5af0484c86f7740f02001f7f": 512, - "59fafb5d86f774067a6f2084": 404, - "5e2af00086f7746d3f3c33f7": 609, - "57347cd0245977445a2d6ff1": 2621, - "59e35abd86f7741778269d82": 830, - "66acd6702b17692df20144c0": 1563, - "5914578086f774123569ffa4": 118, - "5e2af02c86f7746d420957d4": 605, - "59e35ef086f7741777737012": 1122, - "5e42c83786f7742a021fdf3c": 117, - "5d1c819a86f774771b0acd6c": 565, - "577e1c9d2459773cd707c525": 347, - "5bc9c377d4351e3bac12251b": 140, - "63a39fdf1e21260da44a0256": 55, - "5c13cef886f774072e618e82": 1235, - "590a3d9c86f774385926e510": 1417, - "5913611c86f77479e0084092": 236, - "57347c77245977448d35f6e2": 1679, - "59136a4486f774447a1ed172": 151, - "56742c324bdc2d150f8b456d": 1681, - "590c311186f77424d1667482": 676, - "59e3596386f774176c10a2a2": 505, - "64ccc1fe088064307e14a6f7": 48, - "67586bee39b1b82b0d0f9d06": 198, - "675aaa003107dac10006332f": 318, - "5fca138c2a7b221b2852a5c6": 1396, - "573476f124597737e04bf328": 878, - "59e3606886f77417674759a5": 425, - "5d1b304286f774253763a528": 1181, - "59e3658a86f7741776641ac4": 212, - "5d1b385e86f774252167b98a": 196, - "5d1b32c186f774252167a530": 335, - "63a0b208f444d32d6f03ea1e": 277, - "5a0f075686f7745bcc42ee12": 52, - "675aaab74bca0b001d02f356": 540, - "590c2e1186f77425357b6124": 462, - "5c1d0f4986f7744bb01837fa": 34, - "5d40412b86f7743cb332ac3a": 357, - "5e2af4a786f7746d3f3c3400": 870, - "591383f186f7744a4c5edcf3": 128, - "62a09ec84f842e1bd12da3f2": 68, - "590c346786f77423e50ed342": 802, - "62a0a098de7ac8199358053b": 572, - "590de7e986f7741b096e5f32": 135, - "590a3cd386f77436f20848cb": 3413, - "5af0561e86f7745f5f3ad6ac": 520, - "6581998038c79576a2569e11": 311, - "675aaae1dcf102478202c537": 139, - "59e36c6f86f774176c10a2a7": 2051, - "5e2af22086f7746d3f3c33fa": 912, - "591382d986f774465a6413a7": 83, - "5780cf942459777df90dcb72": 532, - "6761a6f90575f25e020816a4": 231, - "59e35de086f7741778269d84": 817, - "5d0376a486f7747d8050965c": 993, - "590c35a486f774273531c822": 534, - "5e2aef7986f7746d3f3c33f5": 624, - "5938504186f7740991483f30": 335, - "590c5c9f86f77477c91c36e7": 457, - "5d0375ff86f774186372f685": 707, - "5c0e531d86f7747fa23f4d42": 308, - "675aaa8f7f3c962069072b27": 520, - "5a0f045e86f7745b0f0d0e42": 40, - "5c0e530286f7747fa1419862": 108, - "590a358486f77429692b2790": 1338, - "5a144bdb86f7741d374bbde0": 29, - "5937ee6486f77408994ba448": 332, - "63a39fd1c9b3aa4b61683efb": 108, - "591afe0186f77431bd616a11": 278, - "5780d0532459777a5108b9a2": 67, - "5d0378d486f77420421a5ff4": 926, - "5d1b31ce86f7742523398394": 215, - "60b0f7057897d47c5b04ab94": 125, - "5913651986f774432f15d132": 47, - "5b4335ba86f7744d2837a264": 573, - "5df8a77486f77412672a1e3f": 209, - "5d947d3886f774447b415893": 17, - "5d1b36a186f7742523398433": 311, - "5c0e534186f7747fa1419867": 139, - "6389c6c7dbfd5e4b95197e68": 211, - "63a39667c9b3aa4b61683e98": 56, - "5d947d4e86f774447b415895": 13, - "619cbf476b8a1b37a54eebf8": 618, - "5d1b317c86f7742523398392": 169, - "64ccc1d4a0f13c24561edf27": 41, - "63a39fc0af870e651d58e6ae": 9, - "5d1b371186f774253763a656": 268, - "57347c93245977448d35f6e3": 745, - "62a08f4c4f842e1bd12d9d62": 132, - "62a0a0bb621468534a797ad5": 134, - "5c10c8fd86f7743d7d706df3": 137, - "593aa4be86f77457f56379f8": 386, - "66b37eb4acff495a29492407": 103, - "675aaae75a3ab8372d0b02a7": 520, - "5c1265fc86f7743f896a21c2": 1169, - "5e2af29386f7746d4159f077": 207, - "67586b7e49c2fa592e0d8ed9": 59, - "5a0eeb8e86f77461257ed71a": 24, - "63a39ce4cd6db0635c1975fa": 40, - "590c2d8786f774245b1f03f3": 273, - "62a091170b9d3c46de5b6cf2": 134, - "590c5bbd86f774785762df04": 281, - "59e358a886f7741776641ac3": 396, - "59e3639286f7741777737013": 132, - "5bc9be8fd4351e00334cae6e": 390, - "5c05300686f7746dce784e5d": 106, - "5e2af37686f774755a234b65": 207, - "5d80cd1a86f77402aa362f42": 16, - "5d1b327086f7742525194449": 200, - "5c052e6986f7746b207bc3c9": 21, - "5d0379a886f77420407aa271": 433, - "658199972dc4e60f6d556a2f": 403, - "675aab0d6b6addc02a08f097": 493, - "61a64428a8c6aa1b795f0ba1": 33, - "5ad5d49886f77455f9731921": 285, - "6582dbe43a2e5248357dbe9a": 296, - "5a0dc95c86f77452440fc675": 60, - "5ad5d20586f77449be26d877": 159, - "62987cb98081af308d7558c8": 36, - "6389c70ca33d8c4cdf4932c6": 753, - "5a0dc45586f7742f6b0b73e3": 44, - "60391b0fb847c71012789415": 582, - "5d03794386f77420415576f5": 712, - "5e2af41e86f774755a234b67": 626, - "5780cfa52459777dfb276eb1": 171, - "5a13ef7e86f7741290491063": 47, - "5f745ee30acaeb0d490d8c5b": 143, - "5a13ee1986f774794d4c14cd": 44, - "5a0ee76686f7743698200d5c": 43, - "5c1d0d6d86f7744bb2683e1f": 209, - "619cbfccbedcde2f5b3f7bdd": 144, - "67586af7036d7f3da60c3612": 142, - "5ad5db3786f7743568421cce": 29, - "5a13f46386f7741dd7384b04": 29, - "5a0ee30786f774023b6ee08f": 41, - "5780cf692459777de4559321": 45, - "57347ca924597744596b4e71": 314, - "5780cf7f2459777de4559322": 17, - "62a09cb7a04c0c5c6e0a84f8": 225, - "63a39e49cd6db0635c1975fc": 23, - "619cbfeb6b8a1b37a54eebfa": 161, - "5d1b39a386f774252339976f": 214, - "6582dc4b6ba9e979af6b79f4": 177, - "62a09cfe4f842e1bd12da3e4": 128, - "675aaa9a3107dac100063331": 562, - "5780d07a2459777de4559324": 43, - "5c1d0dc586f7744baf2e7b79": 44, - "5bc9bdb8d4351e003562b8a1": 143, - "5a0f0f5886f7741c4e32a472": 45, - "590c645c86f77412b01304d9": 153, - "59136f6f86f774447a1ed173": 41, - "62a0a124de7ac81993580542": 44, - "5913877a86f774432f15d444": 46, - "62a0a16d0b9d3c46de5b6e97": 59, - "5d4041f086f7743cac3f22a7": 253, - "5a13ef0686f7746e5a411744": 33, - "637b620db7afa97bfc3d7009": 74, - "5a0ec70e86f7742c0b518fba": 36, - "5a0eb38b86f774153b320eb0": 41, - "5e42c81886f7742a01529f57": 104, - "5d4042a986f7743185265463": 176, - "5a0eecf686f7740350630097": 19, - "5bc9bc53d4351e00367fbcee": 141, - "5672c92d4bdc2d180f8b4567": 38, - "5ad7242b86f7740a6a3abd43": 40, - "60391afc25aff57af81f7085": 159, - "5c052f6886f7746b1e3db148": 138, - "5780cf9e2459777df90dcb73": 44, - "5d95d6be86f77424444eb3a7": 31, - "590c651286f7741e566b6461": 120, - "60391a8b3364dc22b04d0ce5": 181, - "5a0f006986f7741ffd2fe484": 43, - "5c0e533786f7747fa23f4d47": 125, - "66b37f114410565a8f6789e2": 128, - "5c052fb986f7746b2101e909": 104, - "63a39df18a56922e82001f25": 72, - "6582dc5740562727a654ebb1": 34, - "5e54f6af86f7742199090bf3": 368, - "5d80cb8786f774405611c7d9": 21, - "573474f924597738002c6174": 516, - "66b37ea4c5d72b0277488439": 74, - "5c12620d86f7743f8b198b72": 83, - "5ed51652f6c34d2cc26336a1": 66, - "59136e1e86f774432f15d133": 98, - "590c621186f774138d11ea29": 61, - "5af0534a86f7743b6f354284": 262, - "5c1267ee86f77416ec610f72": 26, - "5d40419286f774318526545f": 159, - "63a39f18c2d53c2c6839c1d3": 20, - "6389c6463485cf0eeb260715": 367, - "5a0eebed86f77461230ddb3d": 35, - "5d80ccdd86f77474f7575e02": 19, - "64ccc268c41e91416064ebc7": 36, - "59148f8286f7741b951ea113": 39, - "5da743f586f7744014504f72": 28, - "5c1e495a86f7743109743dfb": 53, - "63a71e781031ac76fe773c7d": 77, - "61aa81fcb225ac1ead7957c3": 34, - "61bf83814088ec1a363d7097": 132, - "61aa5b7db225ac1ead7957c1": 36, - "64ccc1f4ff54fb38131acf27": 46, - "5c0e531286f7747fa54205c2": 140, - "5af04b6486f774195a3ebb49": 151, - "5d80cab086f77440535be201": 15, - "59387a4986f77401cc236e62": 41, - "5ed515e03a40a50460332579": 61, - "60b0f561c4449e4cb624c1d7": 142, - "62987e26a77ec735f90a2995": 68, - "5d80c6c586f77440351beef1": 24, - "63a71ed21031ac76fe773c7f": 36, - "63a39f6e64283b5e9c56b289": 36, - "5d80c95986f77440351beef3": 14, - "5a145d4786f7744cbb6f4a12": 23, - "5780cf722459777a5108b9a1": 37, - "5c0530ee86f774697952d952": 26, - "5ad5cfbd86f7742c825d6104": 43, - "5fca13ca637ee0341a484f46": 62, - "64ccc24de61ea448b507d34d": 41, - "5d80c93086f7744036212b41": 19, - "5ad5d7d286f77450166e0a89": 19, - "5a0ee62286f774369454a7ac": 56, - "61aa5b518f5e7a39b41416e2": 28, - "590de71386f774347051a052": 145, - "5a0ec6d286f7742c0b518fb5": 23, - "5913915886f774123603c392": 45, - "5d80c62a86f7744036212b3f": 18, - "61a64492ba05ef10d62adcc1": 56, - "5a13f24186f77410e57c5626": 17, - "5780cda02459777b272ede61": 37, - "5a0f068686f7745b0d4ea242": 43, - "59148c8a86f774197930e983": 153, - "5ede7b0c6d23e5473e6e8c66": 15, - "64ccc1ec1779ad6ba200a137": 43, - "63a71eb5b7f4570d3a29316b": 33, - "591ae8f986f77406f854be45": 31, - "59e3647686f774176a362507": 141, - "655c673673a43e23e857aebd": 1, - "61aa5ba8018e9821b7368da9": 41, - "5ed5160a87bb8443d10680b5": 67, - "62987da96188c076bc0d8c51": 41, - "5addaffe86f77470b455f900": 22, - "5d80c60f86f77440373c4ece": 13, - "63a39c69af870e651d58e6aa": 43, - "5c12613b86f7743bbe2c3f76": 37, - "590c639286f774151567fa95": 72, - "5bc9b720d4351e450201234b": 59, - "64ccc246ff54fb38131acf29": 35, - "590c37d286f77443be3d7827": 96, - "5a0ea79b86f7741d4a35298e": 39, - "5ede7a8229445733cb4c18e2": 12, - "5c1f79a086f7746ed066fb8f": 11, - "5a144dfd86f77445cb5a0982": 23, - "63a39cb1c9b3aa4b61683ee2": 47, - "5a0eee1486f77402aa773226": 35, - "5734758f24597738025ee253": 127, - "5a0eed4386f77405112912aa": 16, - "5448ba0b4bdc2d02308b456c": 29, - "5d80ca9086f774403a401e40": 22, - "5d95d6fa86f77424484aa5e9": 37, - "637b6179104668754b72f8f5": 57, - "59faff1d86f7746c51718c9c": 22, - "63a71e922b25f7513905ca20": 16, - "5ed515ece452db0eb56fc028": 51, - "63a39dfe3901f439517cafba": 37, - "5a13f35286f77413ef1436b0": 20, - "66507eabf5ddb0818b085b68": 30, - "63a39f08cd6db0635c197600": 78, - "59faf7ca86f7740dbe19f6c2": 150, - "5ed515f6915ec335206e4152": 53, - "63a71e86b7f4570d3a293169": 36, - "5a0eec9686f77402ac5c39f2": 38, - "5ad7217186f7746744498875": 22, - "5ad5ccd186f774446d5706e9": 39, - "5a0eeb1a86f774688b70aa5c": 29, - "5a0ee72c86f77436955d3435": 36, - "5e42c71586f7747f245e1343": 19, - "5d80c88d86f77440556dbf07": 22, - "5c1d0c5f86f7744bb2683cf0": 44, - "5d8e15b686f774445103b190": 43, - "5d8e0db586f7744450412a42": 23, - "5d80cb5686f77440545d1286": 38, - "5ad5d64486f774079b080af8": 31, - "5a0f08bc86f77478f33b84c2": 34, - "5a0eff2986f7741fd654e684": 43, - "63a399193901f439517cafb6": 21, - "5a13eebd86f7746fd639aa93": 13, - "5a0eedb386f77403506300be": 31, - "64ccc206793ca11c8f450a38": 32, - "5c1e2d1f86f77431e9280bee": 32, - "5d80cb3886f77440556dbf09": 32, - "5d8e0e0e86f774321140eb56": 23, - "64ccc2111779ad6ba200a139": 28, - "61aa5aed32a4743c3453d319": 41, - "61bf7c024770ee6f9c6b8b53": 45, - "62a09e974f842e1bd12da3f0": 14, - "5c1d0efb86f7744baf2e7b7b": 35, - "5a1452ee86f7746f33111763": 19, - "5a0ea64786f7741707720468": 27, - "5a0eb6ac86f7743124037a28": 29, - "61a6444b8c141d68246e2d2f": 32, - "590c392f86f77444754deb29": 51, - "5a0ee34586f774023b6ee092": 34, - "64d4b23dc1b37504b41ac2b6": 3, - "655c669103999d3c810c025b": 1, - "5a145ebb86f77458f1796f05": 33, - "5780d0652459777df90dcb74": 20, - "5a0ea69f86f7741cd5406619": 38, - "5d80c8f586f77440373c4ed0": 16, - "637b6251104668754b72f8f9": 26, - "5da5cdcd86f774529238fb9b": 19, - "5d80c78786f774403a401e3e": 30, - "5d80c6fc86f774403a401e3c": 24, - "62987dfc402c7f69bf010923": 12, - "5938144586f77473c2087145": 39, - "5d8e3ecc86f774414c78d05e": 11, - "5ed5166ad380ab312177c100": 25, - "5a0ee37f86f774023657a86f": 8, - "5ad7247386f7747487619dc3": 10, - "5d80cbd886f77470855c26c2": 19, - "64ccc25f95763a1ae376e447": 4, - "5a0ee4b586f7743698200d22": 21, - "5a145d7b86f7744cbb6f4a13": 12, - "637b60c3b7afa97bfc3d7001": 24, - "62a09e73af34e73a266d932a": 24, - "5d9f1fa686f774726974a992": 21, - "5da46e3886f774653b7a83fe": 19, - "67449b6c89d5e1ddc603f504": 7, - "5d80ccac86f77470841ff452": 17, - "63a3a93f8a56922e82001f5d": 11, - "6389c85357baa773a825b356": 1, - "6761a6ccd9bbb27ad703c48a": 7, - "6389c8fb46b54c634724d847": 1, - "6389c8c5dbfd5e4b95197e6b": 1 - }, - "SecuredContainer": { - "560d61e84bdc2da74d8b4571": 68130, - "5e81f423763d9f754677bf2e": 12540, - "56dff026d2720bb8668b4567": 23660, - "5efb0cabfb3e451d70735af5": 13340, - "56dfef82d2720bbd668b4567": 84840, - "59e0d99486f7744a32234762": 100000, - "5a608bf24f39f98ffc77720e": 5814, - "56dff3afd2720bba668b4567": 20270, - "5c0d56a986f774449d5de529": 22830, - "56dff061d2720bb5668b4567": 16880, - "5a26ac0ec4a28200741e1e18": 3815, - "5c925fa22e221601da359b7b": 21070, - "5c0d5e4486f77478390952fe": 34630, - "56d59d3ad2720bdb418b4577": 12960, - "5efb0da7a29a85116f6ea05f": 23900, - "5efb0e16aeb21837e749c7ff": 14780, - "5a3c16fe86f77452b62de32a": 22650, - "57a0dfb82459774d3078b56c": 3111, - "5c0d668f86f7747ccb7f13b2": 8146, - "64b7bbb74b75259c590fa897": 886, - "5fd20ff893a8961fc660a954": 433, - "64b8725c4b75259c590fa899": 2567, - "5fbe3ffdf8b6a877a729ea82": 631 - }, - "SpecialLoot": {} - } - }, "firstName": [ "Сектант" ], - "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 3, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "CHECK_CLOSEST_FRIEND": true, - "SHALL_LAY_WITHOUT_CHECK": true, - "SHALL_GETUP_ON_ROTATE": false, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "HARD_AIM_CHANCE_100": 60, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 2, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": 10, - "ANY_PART_SHOOT_TIME": 5, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "ANGLE_FOR_GETUP": 178, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "SELF_NIGHTVISION": true, - "FULL_SECTOR_VIEW": true, - "LOOK_THROUGH_GRASS": true, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "DIST_TO_HIT_MELEE": 1.3, - "DIST_TO_STOP_SPRINT_MELEE": 1.5, - "TRY_HIT_PERIOD_MELEE": 0.5, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "WAIT_DOOR_OPEN_SEC": 1, - "BREACH_CHANCE_100": 0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.15, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 15, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "CAN_LAY_TO_COVER": true, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 7, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SIT_DOWN_WHEN_HOLDING": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 999999.1, - "MIN_TALK_DELAY": 999999, - "CAN_LOOK_TO_DEADBODIES": true, - "TALK_DELAY_BIG": 999999.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 36, - "FAR_DIST": 66, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 7, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "CAN_TAKE_ITEMS": true, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 999999, - "GROUP_EXACTLY_PHRASE_DELAY": 999999, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "AGGRESSOR_LOYALTY_BONUS": 0, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "REVENGE_FOR_SAVAGE_PLAYERS": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", - "REVENGE_BOT_TYPES": [] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 100, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 100, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "EFFECT_PAINKILLER": true - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 3, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "CHECK_CLOSEST_FRIEND": true, - "SHALL_LAY_WITHOUT_CHECK": true, - "SHALL_GETUP_ON_ROTATE": false, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "HARD_AIM_CHANCE_100": 60, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 2, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": 10, - "ANY_PART_SHOOT_TIME": 5, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "ANGLE_FOR_GETUP": 178, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "SELF_NIGHTVISION": true, - "FULL_SECTOR_VIEW": true, - "LOOK_THROUGH_GRASS": true, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "DIST_TO_HIT_MELEE": 1.3, - "DIST_TO_STOP_SPRINT_MELEE": 1.5, - "TRY_HIT_PERIOD_MELEE": 0.5, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "WAIT_DOOR_OPEN_SEC": 1, - "BREACH_CHANCE_100": 0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.15, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 15, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "CAN_LAY_TO_COVER": true, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 7, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SIT_DOWN_WHEN_HOLDING": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 999999.1, - "MIN_TALK_DELAY": 999999, - "CAN_LOOK_TO_DEADBODIES": true, - "TALK_DELAY_BIG": 999999.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 36, - "FAR_DIST": 66, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 7, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "CAN_TAKE_ITEMS": true, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 999999, - "GROUP_EXACTLY_PHRASE_DELAY": 999999, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "AGGRESSOR_LOYALTY_BONUS": 0, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "REVENGE_FOR_SAVAGE_PLAYERS": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", - "REVENGE_BOT_TYPES": [] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 100, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 100, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "EFFECT_PAINKILLER": true - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 3, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "CHECK_CLOSEST_FRIEND": true, - "SHALL_LAY_WITHOUT_CHECK": true, - "SHALL_GETUP_ON_ROTATE": false, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "HARD_AIM_CHANCE_100": 60, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 2, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": 10, - "ANY_PART_SHOOT_TIME": 5, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "ANGLE_FOR_GETUP": 178, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "SELF_NIGHTVISION": true, - "FULL_SECTOR_VIEW": true, - "LOOK_THROUGH_GRASS": true, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "DIST_TO_HIT_MELEE": 1.3, - "DIST_TO_STOP_SPRINT_MELEE": 1.5, - "TRY_HIT_PERIOD_MELEE": 0.5, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "WAIT_DOOR_OPEN_SEC": 1, - "BREACH_CHANCE_100": 0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.15, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 15, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "CAN_LAY_TO_COVER": true, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 7, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SIT_DOWN_WHEN_HOLDING": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 999999.1, - "MIN_TALK_DELAY": 999999, - "CAN_LOOK_TO_DEADBODIES": true, - "TALK_DELAY_BIG": 999999.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 36, - "FAR_DIST": 66, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 7, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "CAN_TAKE_ITEMS": true, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 999999, - "GROUP_EXACTLY_PHRASE_DELAY": 999999, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "AGGRESSOR_LOYALTY_BONUS": 0, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "REVENGE_FOR_SAVAGE_PLAYERS": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", - "REVENGE_BOT_TYPES": [] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 100, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 100, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "EFFECT_PAINKILLER": true - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 3, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "CHECK_CLOSEST_FRIEND": true, - "SHALL_LAY_WITHOUT_CHECK": true, - "SHALL_GETUP_ON_ROTATE": false, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "HARD_AIM_CHANCE_100": 60, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.4, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 2, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": 10, - "ANY_PART_SHOOT_TIME": 5, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "ANGLE_FOR_GETUP": 178, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "SELF_NIGHTVISION": true, - "FULL_SECTOR_VIEW": true, - "LOOK_THROUGH_GRASS": true, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "CAN_LOOK_TO_WALL": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.04, - "HORIZONT_RECOIL_COEF": 0.04, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "DIST_TO_HIT_MELEE": 1.3, - "DIST_TO_STOP_SPRINT_MELEE": 1.5, - "TRY_HIT_PERIOD_MELEE": 0.5, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3, - "WAIT_DOOR_OPEN_SEC": 1, - "BREACH_CHANCE_100": 0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "GrenadePerMeter": 0.15, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "REQUEST_DIST_MUST_THROW": 3, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "CHANCE_RUN_FLASHED_100": 100, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 18.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "CAN_LAY_TO_COVER_DIST_LOOK_TO_ENEMY": 300, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 15, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "CAN_LAY_TO_COVER": true, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_HOLDING": 1.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 7, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SIT_DOWN_WHEN_HOLDING": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "LOOK_TIME_BASE": 12, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 999999.1, - "MIN_TALK_DELAY": 999999, - "CAN_LOOK_TO_DEADBODIES": true, - "TALK_DELAY_BIG": 999999.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10, - "CLOSE_DIST": 36, - "FAR_DIST": 66, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 7, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "CAN_TAKE_ITEMS": true, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": -10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 999999, - "GROUP_EXACTLY_PHRASE_DELAY": 999999, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "AGGRESSOR_LOYALTY_BONUS": 0, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "REVENGE_FOR_SAVAGE_PLAYERS": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", - "REVENGE_BOT_TYPES": [] - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 100, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 100, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "EFFECT_PAINKILLER": true - }, - "Core": { - "VisibleAngle": 160, - "VisibleDistance": 142, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1, - "HearingSense": 2.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80, - "ToStopBotAngularSpeed": 40, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 0, - "Earpiece": 0, - "FaceCover": 41, - "ArmorVest": 72, - "Eyewear": 0, - "ArmBand": 0, - "TacticalVest": 100, - "Backpack": 68, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 0, - "Holster": 0, - "Scabbard": 100, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_magazine": 100, - "mod_stock": 100, - "mod_mount_000": 40, - "mod_mount_002": 23, - "mod_muzzle": 92, - "mod_mount": 24, - "mod_sight_front": 50, - "mod_sight_rear": 64, - "mod_mount_001": 36, - "mod_tactical": 8, - "mod_scope": 30, - "mod_foregrip": 14, - "mod_mount_003": 0, - "mod_tactical_000": 9, - "mod_stock_000": 100, - "mod_charge": 0, - "mod_reciever": 100, - "mod_stock_001": 100, - "mod_launcher": 0, - "mod_mount_004": 100 - }, - "equipmentMods": { - "front_plate": 100, - "back_plate": 100, - "left_side_plate": 58, - "right_side_plate": 58 - } - }, "generation": { "items": { - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, "backpackLoot": { "weights": { "0": 1, @@ -3848,6 +2123,67 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, "pocketLoot": { "weights": { "0": 1, @@ -3858,6 +2194,21 @@ }, "whitelist": [] }, + "specialItems": { + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, "vestLoot": { "weights": { "0": 1, @@ -3869,28 +2220,1681 @@ "6": 0 }, "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 1 + } + } + }, + "health": { + "BodyParts": [ + { + "Chest": { + "max": 220, + "min": 220 }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 2, - "2": 1, - "3": 1, - "4": 0, - "5": 0 + "Head": { + "max": 50, + "min": 50 }, - "whitelist": [] + "LeftArm": { + "max": 100, + "min": 100 + }, + "LeftLeg": { + "max": 100, + "min": 100 + }, + "RightArm": { + "max": 100, + "min": 100 + }, + "RightLeg": { + "max": 100, + "min": 100 + }, + "Stomach": { + "max": 180, + "min": 180 + } + } + ], + "Energy": { + "max": 100, + "min": 100 + }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { + "Ammo": { + "Caliber1143x23ACP": { + "5e81f423763d9f754677bf2e": 78, + "5efb0cabfb3e451d70735af5": 83 + }, + "Caliber545x39": { + "56dfef82d2720bbd668b4567": 1850, + "56dff026d2720bb8668b4567": 478, + "56dff061d2720bb5668b4567": 329, + "56dff3afd2720bba668b4567": 414, + "5c0d5e4486f77478390952fe": 744 + }, + "Caliber762x35": { + "5fbe3ffdf8b6a877a729ea82": 37, + "5fd20ff893a8961fc660a954": 27, + "64b8725c4b75259c590fa899": 158 + }, + "Caliber762x39": { + "59e0d99486f7744a32234762": 1 + }, + "Caliber762x51": { + "5a608bf24f39f98ffc77720e": 1 + }, + "Caliber762x54R": { + "560d61e84bdc2da74d8b4571": 1 + }, + "Caliber9x19PARA": { + "56d59d3ad2720bdb418b4577": 2390, + "5a3c16fe86f77452b62de32a": 4650, + "5c0d56a986f774449d5de529": 4780, + "5c925fa22e221601da359b7b": 4270, + "5efb0da7a29a85116f6ea05f": 5010, + "5efb0e16aeb21837e749c7ff": 2820, + "64b7bbb74b75259c590fa897": 171 + }, + "Caliber9x21": { + "5a26ac0ec4a28200741e1e18": 1 + }, + "Caliber9x39": { + "57a0dfb82459774d3078b56c": 81, + "5c0d668f86f7747ccb7f13b2": 200 + } + }, + "equipment": { + "ArmBand": {}, + "ArmorVest": { + "5648a7494bdc2d9d488b4583": 8330, + "5e4abb5086f77406975c9342": 1530, + "5e9dacf986f774054d6b89f4": 6173, + "5f5f41476bdad616ad46d631": 8444, + "5fd4c474dd870108a754b241": 2257, + "6038b4ca92ec1c3103795a0d": 1522, + "60a283193cb70855c43a381d": 2162 + }, + "Backpack": { + "5ab8ee7786f7742d8f33f0b9": 3737, + "5ca20d5986f774331e7c9602": 4030, + "5d5d940f86f7742797262046": 2088, + "5e9dcf5986f7746c417435b3": 5836, + "60a2828e8689911a226117f9": 4314, + "628e1ffc83ec92260c0f437f": 4406, + "656f198fb27298d6fd005466": 4219 + }, + "Earpiece": {}, + "Eyewear": {}, + "FaceCover": { + "572b7fa524597762b747ce82": 1922, + "59e7715586f7742ee5789605": 2036, + "5b432b2f5acfc4771e1c6622": 2029, + "5b432c305acfc40019478128": 3725, + "60363c0c92ec1c31037959f5": 3740, + "657089638db3adca1009f4ca": 2035, + "6570aead4d84f81fd002a033": 2001 + }, + "FirstPrimaryWeapon": { + "574d967124597745970e7c94": 3804, + "57c44b372459772d2b39b8ce": 658, + "583990e32459771419544dd2": 4264, + "58948c8e86f77409493f7266": 1594, + "59984ab886f7743e98271174": 4766, + "59d6088586f774275f37482f": 4688, + "5a0ec13bfcdbcb00165aa685": 4794, + "5ac66d9b5acfc4001633997a": 4631, + "5beed0f50db834001c062b12": 2755, + "5c46fbd72e2216398b5a8c9c": 4943, + "5df8ce05b11454561e39243b": 334, + "5e00903ae9dc277128008b87": 397, + "5fb64bc92b1b027b1f50bcf2": 1612, + "60339954d62c9b14ed777c06": 1282, + "628b9c37a733087d0d7fe84b": 898, + "62e14904c2699c0ec93adc47": 231, + "6499849fc93611967b034949": 199, + "674d6121c09f69dfb201a888": 222 + }, + "Headwear": {}, + "Holster": {}, + "Pockets": { + "557ffd194bdc2d28148b457f": 1 + }, + "Scabbard": { + "57e26ea924597715ca604a09": 5787, + "5bffdc370db834001d23eca8": 5792, + "5fc64ea372b0dd78d51159dc": 30180, + "601948682627df266209af05": 307 + }, + "SecondPrimaryWeapon": {}, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": { + "5ab8dab586f77441cd04f2a2": 3740, + "5c0e9f2c86f77432297fe0a3": 3588, + "5ca20abf86f77418567a43f2": 3725, + "5d5d85c586f774279a21cbdb": 3632, + "5d5d8ca986f7742798716522": 3748, + "5e4abc1f86f774069619fbaa": 3600, + "5e9db13186f7742f845ee9d3": 3711, + "5fd4c60f875c30179f5d04c2": 3719, + "603648ff5a45383c122086ac": 3746, + "61bc85697113f767765c7fe7": 3691, + "628cd624459354321c4b7fa2": 1413, + "66b6296d7994640992013b17": 3759 + } + }, + "items": { + "Backpack": { + "5448ba0b4bdc2d02308b456c": 29, + "5672c92d4bdc2d180f8b4567": 38, + "5672cb124bdc2d1a0f8b4568": 1935, + "5672cb304bdc2dc2088b456a": 1342, + "5672cb724bdc2dc2088b456b": 1405, + "56742c284bdc2d98058b456d": 1010, + "56742c2e4bdc2d95058b456d": 775, + "56742c324bdc2d150f8b456d": 1681, + "5733279d245977289b77ec24": 993, + "573474f924597738002c6174": 516, + "5734758f24597738025ee253": 127, + "573475fb24597737fb1379e1": 1510, + "573476d324597737da2adc13": 1380, + "573476f124597737e04bf328": 878, + "5734770f24597738025ee254": 1147, + "5734779624597737e04bf329": 2965, + "573477e124597737dd42e191": 1461, + "5734781f24597737e04bf32a": 2622, + "573478bc24597738002c6175": 356, + "5734795124597738002c6176": 1037, + "57347b8b24597737dd42e192": 1103, + "57347baf24597738002c6178": 1377, + "57347c1124597737fb1379e3": 1131, + "57347c2e24597744902c94a1": 1129, + "57347c5b245977448d35f6e1": 1654, + "57347c77245977448d35f6e2": 1679, + "57347c93245977448d35f6e3": 745, + "57347ca924597744596b4e71": 314, + "57347cd0245977445a2d6ff1": 2621, + "577e1c9d2459773cd707c525": 347, + "5780cda02459777b272ede61": 37, + "5780cf692459777de4559321": 45, + "5780cf722459777a5108b9a1": 37, + "5780cf7f2459777de4559322": 17, + "5780cf942459777df90dcb72": 532, + "5780cf9e2459777df90dcb73": 44, + "5780cfa52459777dfb276eb1": 171, + "5780d0532459777a5108b9a2": 67, + "5780d0652459777df90dcb74": 20, + "5780d07a2459777de4559324": 43, + "5909e99886f7740c983b9984": 2871, + "590a358486f77429692b2790": 1338, + "590a373286f774287540368b": 516, + "590a386e86f77429692b27ab": 2377, + "590a391c86f774385a33c404": 1441, + "590a3b0486f7743954552bdb": 1852, + "590a3c0a86f774385a33c450": 2483, + "590a3cd386f77436f20848cb": 3413, + "590a3d9c86f774385926e510": 1417, + "590a3efd86f77437d351a25b": 1171, + "590c2b4386f77425357b6123": 369, + "590c2c9c86f774245b1f03f2": 647, + "590c2d8786f774245b1f03f3": 273, + "590c2e1186f77425357b6124": 462, + "590c311186f77424d1667482": 676, + "590c31c586f774245e3141b2": 822, + "590c346786f77423e50ed342": 802, + "590c35a486f774273531c822": 534, + "590c37d286f77443be3d7827": 96, + "590c392f86f77444754deb29": 51, + "590c595c86f7747884343ad7": 539, + "590c5a7286f7747884343aea": 1222, + "590c5bbd86f774785762df04": 281, + "590c5c9f86f77477c91c36e7": 457, + "590c621186f774138d11ea29": 61, + "590c639286f774151567fa95": 72, + "590c645c86f77412b01304d9": 153, + "590c651286f7741e566b6461": 120, + "590de71386f774347051a052": 145, + "590de7e986f7741b096e5f32": 135, + "5913611c86f77479e0084092": 236, + "5913651986f774432f15d132": 47, + "59136a4486f774447a1ed172": 151, + "59136e1e86f774432f15d133": 98, + "59136f6f86f774447a1ed173": 41, + "591382d986f774465a6413a7": 83, + "591383f186f7744a4c5edcf3": 128, + "5913877a86f774432f15d444": 46, + "5913915886f774123603c392": 45, + "5914578086f774123569ffa4": 118, + "59148c8a86f774197930e983": 153, + "59148f8286f7741b951ea113": 39, + "591ae8f986f77406f854be45": 31, + "591afe0186f77431bd616a11": 278, + "5937ee6486f77408994ba448": 332, + "5938144586f77473c2087145": 39, + "5938504186f7740991483f30": 335, + "5938603e86f77435642354f4": 595, + "59387a4986f77401cc236e62": 41, + "5938994586f774523a425196": 202, + "593aa4be86f77457f56379f8": 386, + "59e3556c86f7741776641ac2": 559, + "59e358a886f7741776641ac3": 396, + "59e3596386f774176c10a2a2": 505, + "59e35abd86f7741778269d82": 830, + "59e35cbb86f7741778269d83": 778, + "59e35de086f7741778269d84": 817, + "59e35ef086f7741777737012": 1122, + "59e3606886f77417674759a5": 425, + "59e361e886f774176c10a2a5": 400, + "59e3639286f7741777737013": 132, + "59e3647686f774176a362507": 141, + "59e3658a86f7741776641ac4": 212, + "59e366c186f7741778269d85": 397, + "59e36c6f86f774176c10a2a7": 2051, + "59faf7ca86f7740dbe19f6c2": 150, + "59faf98186f774067b6be103": 602, + "59fafb5d86f774067a6f2084": 404, + "59faff1d86f7746c51718c9c": 22, + "5a0dc45586f7742f6b0b73e3": 44, + "5a0dc95c86f77452440fc675": 60, + "5a0ea64786f7741707720468": 27, + "5a0ea69f86f7741cd5406619": 38, + "5a0ea79b86f7741d4a35298e": 39, + "5a0eb38b86f774153b320eb0": 41, + "5a0eb6ac86f7743124037a28": 29, + "5a0ec6d286f7742c0b518fb5": 23, + "5a0ec70e86f7742c0b518fba": 36, + "5a0ee30786f774023b6ee08f": 41, + "5a0ee34586f774023b6ee092": 34, + "5a0ee37f86f774023657a86f": 8, + "5a0ee4b586f7743698200d22": 21, + "5a0ee62286f774369454a7ac": 56, + "5a0ee72c86f77436955d3435": 36, + "5a0ee76686f7743698200d5c": 43, + "5a0eeb1a86f774688b70aa5c": 29, + "5a0eeb8e86f77461257ed71a": 24, + "5a0eebed86f77461230ddb3d": 35, + "5a0eec9686f77402ac5c39f2": 38, + "5a0eecf686f7740350630097": 19, + "5a0eed4386f77405112912aa": 16, + "5a0eedb386f77403506300be": 31, + "5a0eee1486f77402aa773226": 35, + "5a0eff2986f7741fd654e684": 43, + "5a0f006986f7741ffd2fe484": 43, + "5a0f045e86f7745b0f0d0e42": 40, + "5a0f068686f7745b0d4ea242": 43, + "5a0f075686f7745bcc42ee12": 52, + "5a0f08bc86f77478f33b84c2": 34, + "5a0f0f5886f7741c4e32a472": 45, + "5a13ee1986f774794d4c14cd": 44, + "5a13eebd86f7746fd639aa93": 13, + "5a13ef0686f7746e5a411744": 33, + "5a13ef7e86f7741290491063": 47, + "5a13f24186f77410e57c5626": 17, + "5a13f35286f77413ef1436b0": 20, + "5a13f46386f7741dd7384b04": 29, + "5a144bdb86f7741d374bbde0": 29, + "5a144dfd86f77445cb5a0982": 23, + "5a1452ee86f7746f33111763": 19, + "5a145d4786f7744cbb6f4a12": 23, + "5a145d7b86f7744cbb6f4a13": 12, + "5a145ebb86f77458f1796f05": 33, + "5ad5ccd186f774446d5706e9": 39, + "5ad5cfbd86f7742c825d6104": 43, + "5ad5d20586f77449be26d877": 159, + "5ad5d49886f77455f9731921": 285, + "5ad5d64486f774079b080af8": 31, + "5ad5d7d286f77450166e0a89": 19, + "5ad5db3786f7743568421cce": 29, + "5ad7217186f7746744498875": 22, + "5ad7242b86f7740a6a3abd43": 40, + "5ad7247386f7747487619dc3": 10, + "5addaffe86f77470b455f900": 22, + "5af0484c86f7740f02001f7f": 512, + "5af04b6486f774195a3ebb49": 151, + "5af0534a86f7743b6f354284": 262, + "5af0561e86f7745f5f3ad6ac": 520, + "5b4335ba86f7744d2837a264": 573, + "5b43575a86f77424f443fe62": 454, + "5bc9b355d4351e6d1509862a": 129, + "5bc9b720d4351e450201234b": 59, + "5bc9b9ecd4351e3bac122519": 148, + "5bc9bc53d4351e00367fbcee": 141, + "5bc9bdb8d4351e003562b8a1": 143, + "5bc9be8fd4351e00334cae6e": 390, + "5bc9c049d4351e44f824d360": 115, + "5bc9c377d4351e3bac12251b": 140, + "5c052e6986f7746b207bc3c9": 21, + "5c052f6886f7746b1e3db148": 138, + "5c052fb986f7746b2101e909": 104, + "5c05300686f7746dce784e5d": 106, + "5c05308086f7746b2101e90b": 129, + "5c0530ee86f774697952d952": 26, + "5c06779c86f77426e00dd782": 3578, + "5c06782b86f77426df5407d2": 3685, + "5c0e530286f7747fa1419862": 108, + "5c0e531286f7747fa54205c2": 140, + "5c0e531d86f7747fa23f4d42": 308, + "5c0e533786f7747fa23f4d47": 125, + "5c0e534186f7747fa1419867": 139, + "5c10c8fd86f7743d7d706df3": 137, + "5c12613b86f7743bbe2c3f76": 37, + "5c12620d86f7743f8b198b72": 83, + "5c1265fc86f7743f896a21c2": 1169, + "5c1267ee86f77416ec610f72": 26, + "5c12688486f77426843c7d32": 292, + "5c13cd2486f774072c757944": 1272, + "5c13cef886f774072e618e82": 1235, + "5c1d0c5f86f7744bb2683cf0": 44, + "5c1d0d6d86f7744bb2683e1f": 209, + "5c1d0dc586f7744baf2e7b79": 44, + "5c1d0efb86f7744baf2e7b7b": 35, + "5c1d0f4986f7744bb01837fa": 34, + "5c1e2a1e86f77431ea0ea84c": 40, + "5c1e2d1f86f77431e9280bee": 32, + "5c1e495a86f7743109743dfb": 53, + "5c1f79a086f7746ed066fb8f": 11, + "5c94bbff86f7747ee735c08f": 133, + "5d0375ff86f774186372f685": 707, + "5d0376a486f7747d8050965c": 993, + "5d03775b86f774203e7e0c4b": 678, + "5d0377ce86f774186372f689": 679, + "5d03784a86f774203e7e0c4d": 1413, + "5d0378d486f77420421a5ff4": 926, + "5d03794386f77420415576f5": 712, + "5d0379a886f77420407aa271": 433, + "5d1b2f3f86f774252167a52c": 338, + "5d1b2fa286f77425227d1674": 861, + "5d1b2ffd86f77425243e8d17": 1689, + "5d1b304286f774253763a528": 1181, + "5d1b309586f77425227d1676": 1878, + "5d1b313086f77425227d1678": 2786, + "5d1b317c86f7742523398392": 169, + "5d1b31ce86f7742523398394": 215, + "5d1b327086f7742525194449": 200, + "5d1b32c186f774252167a530": 335, + "5d1b36a186f7742523398433": 311, + "5d1b371186f774253763a656": 268, + "5d1b385e86f774252167b98a": 196, + "5d1b392c86f77425243e98fe": 3622, + "5d1b39a386f774252339976f": 214, + "5d1b3a5d86f774252167ba22": 1168, + "5d1b3f2d86f774253763b735": 621, + "5d1c774f86f7746d6620f8db": 1490, + "5d1c819a86f774771b0acd6c": 565, + "5d235a5986f77443f6329bc6": 141, + "5d40412b86f7743cb332ac3a": 357, + "5d40419286f774318526545f": 159, + "5d4041f086f7743cac3f22a7": 253, + "5d40425986f7743185265461": 187, + "5d4042a986f7743185265463": 176, + "5d63d33b86f7746ea9275524": 129, + "5d6fc78386f77449d825f9dc": 580, + "5d6fc87386f77449db3db94e": 673, + "5d80c60f86f77440373c4ece": 13, + "5d80c62a86f7744036212b3f": 18, + "5d80c66d86f774405611c7d6": 23, + "5d80c6c586f77440351beef1": 24, + "5d80c6fc86f774403a401e3c": 24, + "5d80c78786f774403a401e3e": 30, + "5d80c88d86f77440556dbf07": 22, + "5d80c8f586f77440373c4ed0": 16, + "5d80c93086f7744036212b41": 19, + "5d80c95986f77440351beef3": 14, + "5d80ca9086f774403a401e40": 22, + "5d80cab086f77440535be201": 15, + "5d80cb3886f77440556dbf09": 32, + "5d80cb5686f77440545d1286": 38, + "5d80cb8786f774405611c7d9": 21, + "5d80cbd886f77470855c26c2": 19, + "5d80ccac86f77470841ff452": 17, + "5d80ccdd86f77474f7575e02": 19, + "5d80cd1a86f77402aa362f42": 16, + "5d8e0db586f7744450412a42": 23, + "5d8e0e0e86f774321140eb56": 23, + "5d8e15b686f774445103b190": 43, + "5d8e3ecc86f774414c78d05e": 11, + "5d947d3886f774447b415893": 17, + "5d947d4e86f774447b415895": 13, + "5d95d6be86f77424444eb3a7": 31, + "5d95d6fa86f77424484aa5e9": 37, + "5d9f1fa686f774726974a992": 21, + "5da46e3886f774653b7a83fe": 19, + "5da5cdcd86f774529238fb9b": 19, + "5da743f586f7744014504f72": 28, + "5df8a6a186f77412640e2e80": 178, + "5df8a72c86f77412640e2e83": 374, + "5df8a77486f77412672a1e3f": 209, + "5e2aedd986f7746d404f3aa4": 508, + "5e2aee0a86f774755a234b62": 485, + "5e2aef7986f7746d3f3c33f5": 624, + "5e2af00086f7746d3f3c33f7": 609, + "5e2af02c86f7746d420957d4": 605, + "5e2af22086f7746d3f3c33fa": 912, + "5e2af29386f7746d4159f077": 207, + "5e2af2bc86f7746d3f3c33fc": 942, + "5e2af37686f774755a234b65": 207, + "5e2af41e86f774755a234b67": 626, + "5e2af47786f7746d404f3aaa": 1012, + "5e2af4a786f7746d3f3c3400": 870, + "5e2af4d286f7746d4159f07a": 941, + "5e2af51086f7746d3f3c3402": 567, + "5e42c71586f7747f245e1343": 19, + "5e42c81886f7742a01529f57": 104, + "5e42c83786f7742a021fdf3c": 117, + "5e54f62086f774219b0f1937": 153, + "5e54f6af86f7742199090bf3": 368, + "5ed515c8d380ab312177c0fa": 120, + "5ed515e03a40a50460332579": 61, + "5ed515ece452db0eb56fc028": 51, + "5ed515f6915ec335206e4152": 53, + "5ed5160a87bb8443d10680b5": 67, + "5ed51652f6c34d2cc26336a1": 66, + "5ed5166ad380ab312177c100": 25, + "5ede7a8229445733cb4c18e2": 12, + "5ede7b0c6d23e5473e6e8c66": 15, + "5eff09cd30a7dc22fd1ddfed": 95, + "5f745ee30acaeb0d490d8c5b": 143, + "5fca138c2a7b221b2852a5c6": 1396, + "5fca13ca637ee0341a484f46": 62, + "60391a8b3364dc22b04d0ce5": 181, + "60391afc25aff57af81f7085": 159, + "60391b0fb847c71012789415": 582, + "60b0f561c4449e4cb624c1d7": 142, + "60b0f7057897d47c5b04ab94": 125, + "619cbf476b8a1b37a54eebf8": 618, + "619cbfccbedcde2f5b3f7bdd": 144, + "619cbfeb6b8a1b37a54eebfa": 161, + "619cc01e0a7c3a1a2731940c": 861, + "61a64428a8c6aa1b795f0ba1": 33, + "61a6444b8c141d68246e2d2f": 32, + "61a64492ba05ef10d62adcc1": 56, + "61aa5aed32a4743c3453d319": 41, + "61aa5b518f5e7a39b41416e2": 28, + "61aa5b7db225ac1ead7957c1": 36, + "61aa5ba8018e9821b7368da9": 41, + "61aa81fcb225ac1ead7957c3": 34, + "61bf7b6302b3924be92fa8c3": 1400, + "61bf7c024770ee6f9c6b8b53": 45, + "61bf83814088ec1a363d7097": 132, + "62987c658081af308d7558c6": 44, + "62987cb98081af308d7558c8": 36, + "62987da96188c076bc0d8c51": 41, + "62987dfc402c7f69bf010923": 12, + "62987e26a77ec735f90a2995": 68, + "62a08f4c4f842e1bd12d9d62": 132, + "62a091170b9d3c46de5b6cf2": 134, + "62a09cb7a04c0c5c6e0a84f8": 225, + "62a09cfe4f842e1bd12da3e4": 128, + "62a09e73af34e73a266d932a": 24, + "62a09e974f842e1bd12da3f0": 14, + "62a09ec84f842e1bd12da3f2": 68, + "62a09ee4cf4a99369e262453": 792, + "62a0a043cf4a99369e2624a5": 497, + "62a0a098de7ac8199358053b": 572, + "62a0a0bb621468534a797ad5": 134, + "62a0a124de7ac81993580542": 44, + "62a0a16d0b9d3c46de5b6e97": 59, + "62a9cb937377a65d7b070cef": 45, + "637b60c3b7afa97bfc3d7001": 24, + "637b612fb7afa97bfc3d7005": 52, + "637b6179104668754b72f8f5": 57, + "637b620db7afa97bfc3d7009": 74, + "637b6251104668754b72f8f9": 26, + "6389c6463485cf0eeb260715": 367, + "6389c6c7dbfd5e4b95197e68": 211, + "6389c70ca33d8c4cdf4932c6": 753, + "6389c85357baa773a825b356": 1, + "6389c8c5dbfd5e4b95197e6b": 1, + "6389c8fb46b54c634724d847": 1, + "63a0b208f444d32d6f03ea1e": 277, + "63a39667c9b3aa4b61683e98": 56, + "63a399193901f439517cafb6": 21, + "63a39c69af870e651d58e6aa": 43, + "63a39c7964283b5e9c56b280": 201, + "63a39cb1c9b3aa4b61683ee2": 47, + "63a39ce4cd6db0635c1975fa": 40, + "63a39df18a56922e82001f25": 72, + "63a39dfe3901f439517cafba": 37, + "63a39e49cd6db0635c1975fc": 23, + "63a39f08cd6db0635c197600": 78, + "63a39f18c2d53c2c6839c1d3": 20, + "63a39f6e64283b5e9c56b289": 36, + "63a39fc0af870e651d58e6ae": 9, + "63a39fd1c9b3aa4b61683efb": 108, + "63a39fdf1e21260da44a0256": 55, + "63a3a93f8a56922e82001f5d": 11, + "63a71e781031ac76fe773c7d": 77, + "63a71e86b7f4570d3a293169": 36, + "63a71e922b25f7513905ca20": 16, + "63a71eb5b7f4570d3a29316b": 33, + "63a71ed21031ac76fe773c7f": 36, + "64ccc1d4a0f13c24561edf27": 41, + "64ccc1ec1779ad6ba200a137": 43, + "64ccc1f4ff54fb38131acf27": 46, + "64ccc1fe088064307e14a6f7": 48, + "64ccc206793ca11c8f450a38": 32, + "64ccc2111779ad6ba200a139": 28, + "64ccc246ff54fb38131acf29": 35, + "64ccc24de61ea448b507d34d": 41, + "64ccc25f95763a1ae376e447": 4, + "64ccc268c41e91416064ebc7": 36, + "64d4b23dc1b37504b41ac2b6": 3, + "655c669103999d3c810c025b": 1, + "655c673673a43e23e857aebd": 1, + "6581998038c79576a2569e11": 311, + "658199972dc4e60f6d556a2f": 403, + "6582dbe43a2e5248357dbe9a": 296, + "6582dc4b6ba9e979af6b79f4": 177, + "6582dc5740562727a654ebb1": 34, + "66507eabf5ddb0818b085b68": 30, + "66acd6702b17692df20144c0": 1563, + "66b37ea4c5d72b0277488439": 74, + "66b37eb4acff495a29492407": 103, + "66b37f114410565a8f6789e2": 128, + "67449b6c89d5e1ddc603f504": 7, + "67586af7036d7f3da60c3612": 142, + "67586b7e49c2fa592e0d8ed9": 59, + "67586bee39b1b82b0d0f9d06": 198, + "67586c61a0c49554ed0bb4a8": 286, + "675aaa003107dac10006332f": 318, + "675aaa8f7f3c962069072b27": 520, + "675aaa9a3107dac100063331": 562, + "675aaab74bca0b001d02f356": 540, + "675aaae1dcf102478202c537": 139, + "675aaae75a3ab8372d0b02a7": 520, + "675aaaf674a7619a5304c233": 502, + "675aab0d6b6addc02a08f097": 493, + "6761a6ccd9bbb27ad703c48a": 7, + "6761a6f90575f25e020816a4": 231 + }, + "Pockets": { + "5448be9a4bdc2dfd2f8b456a": 1 + }, + "SecuredContainer": { + "560d61e84bdc2da74d8b4571": 68130, + "56d59d3ad2720bdb418b4577": 12960, + "56dfef82d2720bbd668b4567": 84840, + "56dff026d2720bb8668b4567": 23660, + "56dff061d2720bb5668b4567": 16880, + "56dff3afd2720bba668b4567": 20270, + "57a0dfb82459774d3078b56c": 3111, + "59e0d99486f7744a32234762": 100000, + "5a26ac0ec4a28200741e1e18": 3815, + "5a3c16fe86f77452b62de32a": 22650, + "5a608bf24f39f98ffc77720e": 5814, + "5c0d56a986f774449d5de529": 22830, + "5c0d5e4486f77478390952fe": 34630, + "5c0d668f86f7747ccb7f13b2": 8146, + "5c925fa22e221601da359b7b": 21070, + "5e81f423763d9f754677bf2e": 12540, + "5efb0cabfb3e451d70735af5": 13340, + "5efb0da7a29a85116f6ea05f": 23900, + "5efb0e16aeb21837e749c7ff": 14780, + "5fbe3ffdf8b6a877a729ea82": 631, + "5fd20ff893a8961fc660a954": 433, + "64b7bbb74b75259c590fa897": 886, + "64b8725c4b75259c590fa899": 2567 + }, + "SpecialLoot": {}, + "TacticalVest": { + "55d482194bdc2d1d4e8b456b": 5510, + "57838f9f2459774a150289a0": 1316, + "599860ac86f77436b225ed1a": 9532, + "59d625f086f774661516605d": 7175, + "59e5f5a486f7746c530b3ce2": 866, + "5a3501acc4a282000d72293a": 668, + "5a7ad2e851dfba0016153692": 2564, + "5bed61680db834001d2c45ab": 10000, + "5c0548ae0db834001966a3c2": 444, + "5c471c442e221602b542a6f8": 9885, + "5c5970672e221602b21d7855": 7608, + "5c5db6652e221600113fba51": 3188, + "5cbdaf89ae9215000e5b9c94": 5992, + "5de8eac42a78646d96665d91": 794, + "5fb651b52b1b027b1f50bcff": 1564, + "5fb651dc85f90547f674b6f4": 1660, + "62e153bcdb1a5c41971c1b5b": 462 + } + }, + "mods": { + "5648a7494bdc2d9d488b4583": { + "Soft_armor_back": [ + "65703fa06584602f7d057a8e" + ], + "Soft_armor_front": [ + "65703d866584602f7d057a8a" + ], + "Soft_armor_left": [ + "65703fe46a912c8b5c03468b" + ], + "soft_armor_right": [ + "657040374e67e8ec7a0d261c" + ] + }, + "5649a2464bdc2d91118b45a8": { + "mod_scope": [ + "58d2664f86f7747fec5834f6" + ] + }, + "574d967124597745970e7c94": { + "mod_barrel": [ + "634f02331f9f536910079b51" + ], + "mod_magazine": [ + "5c5970672e221602b21d7855" + ], + "mod_reciever": [ + "634f05ca517ccc8a960fc748" + ], + "mod_stock": [ + "5afd7ded5acfc40017541f5e" + ] + }, + "57c44b372459772d2b39b8ce": { + "mod_handguard": [ + "651178336cad06c37c049eb4" + ], + "mod_magazine": [ + "57838f9f2459774a150289a0" + ], + "mod_mount_004": [ + "5947db3f86f77447880cf76f" + ], + "mod_muzzle": [ + "57c44dd02459772d2e0ae249" + ], + "mod_pistol_grip": [ + "57c44fa82459772d2d75e415" + ], + "mod_reciever": [ + "57c44f4f2459772d2c627113" + ], + "mod_stock": [ + "57c450252459772d28133253" + ] + }, + "57c44dd02459772d2e0ae249": { + "mod_sight_rear": [ + "57c44e7b2459772d28133248" + ] + }, + "583990e32459771419544dd2": { + "mod_gas_block": [ + "59d36a0086f7747e673f3946" + ], + "mod_magazine": [ + "5bed61680db834001d2c45ab" + ], + "mod_muzzle": [ + "57ffb0e42459777d047111c5" + ], + "mod_pistol_grip": [ + "5649ad3f4bdc2df8348b4585" + ], + "mod_reciever": [ + "57dc334d245977597164366f" + ], + "mod_stock": [ + "57dc347d245977596754e7a1" + ] + }, + "58948c8e86f77409493f7266": { + "mod_charge": [ + "58949fac86f77409483e16aa" + ], + "mod_magazine": [ + "5c5db6652e221600113fba51" + ], + "mod_pistol_grip": [ + "5fbcbd6c187fea44d52eda14" + ], + "mod_reciever": [ + "5894a5b586f77426d2590767" + ], + "mod_stock": [ + "58ac1bf086f77420ed183f9f" + ] + }, + "5894a42086f77426d2590762": { + "mod_mount_000": [ + "58a56f8d86f774651579314c" + ], + "mod_mount_001": [ + "58a5c12e86f7745d585a2b9e" + ], + "mod_mount_002": [ + "58a56f8d86f774651579314c" + ], + "mod_sight_front": [ + "5894a73486f77426d259076c" + ] + }, + "5894a5b586f77426d2590767": { + "mod_barrel": [ + "58aeaaa886f7744fc1560f81" + ], + "mod_handguard": [ + "5894a42086f77426d2590762" + ], + "mod_sight_rear": [ + "5894a81786f77427140b8347" + ] + }, + "58ac1bf086f77420ed183f9f": { + "mod_stock": [ + "57ade1442459771557167e15" + ] + }, + "58aeaaa886f7744fc1560f81": { + "mod_muzzle": [ + "58aeac1b86f77457c419f475" + ] + }, + "58d2664f86f7747fec5834f6": { + "mod_scope": [ + "58d268fc86f774111273f8c2" + ] + }, + "59984ab886f7743e98271174": { + "mod_gas_block": [ + "59ccd11386f77428f24a488f" + ], + "mod_magazine": [ + "599860ac86f77436b225ed1a" + ], + "mod_muzzle": [ + "59bfc5c886f7743bf6794e62" + ], + "mod_pistol_grip": [ + "5998517986f7746017232f7e" + ], + "mod_reciever": [ + "59985a8086f77414ec448d1a" + ], + "mod_sight_rear": [ + "599860e986f7743bb57573a6" + ], + "mod_stock": [ + "599851db86f77467372f0a18" + ] + }, + "59c6633186f7740cf0493bb9": { + "mod_handguard": [ + "5648b1504bdc2d9d488b4584" + ] + }, + "59ccd11386f77428f24a488f": { + "mod_handguard": [ + "5648b1504bdc2d9d488b4584" + ] + }, + "59d36a0086f7747e673f3946": { + "mod_handguard": [ + "57dc32dc245977596d4ef3d3" + ] + }, + "59d6088586f774275f37482f": { + "mod_gas_block": [ + "59d64ec286f774171d1e0a42" + ], + "mod_magazine": [ + "59e5f5a486f7746c530b3ce2" + ], + "mod_muzzle": [ + "5a9fbacda2750c00141e080f" + ], + "mod_pistol_grip": [ + "59e62cc886f77440d40b52a1" + ], + "mod_reciever": [ + "59d6507c86f7741b846413a2" + ], + "mod_sight_rear": [ + "59d650cf86f7741b846413a4" + ], + "mod_stock": [ + "59d6514b86f774171a068a08" + ] + }, + "59d64ec286f774171d1e0a42": { + "mod_handguard": [ + "59d64f2f86f77417193ef8b3" + ] + }, + "5a0ec13bfcdbcb00165aa685": { + "mod_gas_block": [ + "59d64ec286f774171d1e0a42" + ], + "mod_magazine": [ + "59d625f086f774661516605d" + ], + "mod_mount_000": [ + "5a7c74b3e899ef0014332c29", + "5c61a40d2e2216001403158d" + ], + "mod_muzzle": [ + "5a0d63621526d8dba31fe3bf" + ], + "mod_pistol_grip": [ + "59e62cc886f77440d40b52a1" + ], + "mod_reciever": [ + "59d6507c86f7741b846413a2" + ], + "mod_sight_rear": [ + "59d650cf86f7741b846413a4" + ], + "mod_stock": [ + "59d6514b86f774171a068a08" + ] + }, + "5a33b2c9c4a282000c5a9511": { + "mod_scope": [ + "5a32aa8bc4a2826c6e06d737" + ] + }, + "5a34fd2bc4a282329a73b4c5": { + "mod_muzzle": [ + "5a34fe59c4a282000b1521a2" + ] + }, + "5ac66d9b5acfc4001633997a": { + "mod_gas_block": [ + "59c6633186f7740cf0493bb9" + ], + "mod_magazine": [ + "5cbdaf89ae9215000e5b9c94", + "5bed61680db834001d2c45ab" + ], + "mod_muzzle": [ + "593d493f86f7745e6b2ceb22" + ], + "mod_pistol_grip": [ + "5649ade84bdc2d1b2b8b4587" + ], + "mod_reciever": [ + "5ac50da15acfc4001718d287" + ], + "mod_sight_rear": [ + "5ac733a45acfc400192630e2" + ], + "mod_stock": [ + "5ac50c185acfc400163398d4" + ] + }, + "5afd7ded5acfc40017541f5e": { + "mod_mount": [ + "653ed19d22e1ef3d9002c328" + ], + "mod_pistol_grip": [ + "5afd7e445acfc4001637e35a" + ], + "mod_stock": [ + "5afd7e095acfc40017541f61" + ] + }, + "5afd7e095acfc40017541f61": { + "mod_stock": [ + "55d4ae6c4bdc2d8b2f8b456e" + ] + }, + "5b3b6dc75acfc47a8773fb1e": { + "mod_scope": [ + "5b3b6e495acfc4330140bd88" + ] + }, + "5b7be4895acfc400170e2dd5": { + "mod_foregrip": [ + "59f8a37386f7747af3328f06" + ] + }, + "5beec1bd0db834001e6006f3": { + "mod_muzzle": [ + "564caa3d4bdc2d17108b458e" + ] + }, + "5beec3e30db8340019619424": { + "mod_mount_000": [ + "5beecbb80db834001d2c465e" + ], + "mod_mount_001": [ + "5beecbb80db834001d2c465e" + ] + }, + "5beec8b20db834001961942a": { + "mod_stock": [ + "5beec8c20db834001d2c465c" + ] + }, + "5beec91a0db834001961942d": { + "mod_sight_rear": [ + "5beec9450db83400970084fd" + ] + }, + "5beec9450db83400970084fd": { + "mod_sight_rear": [ + "5bf3f59f0db834001a6fa060" + ] + }, + "5beed0f50db834001c062b12": { + "mod_barrel": [ + "5beec1bd0db834001e6006f3" + ], + "mod_handguard": [ + "5beec3e30db8340019619424" + ], + "mod_magazine": [ + "55d482194bdc2d1d4e8b456b" + ], + "mod_pistol_grip": [ + "5beec8ea0db834001a6f9dbf" + ], + "mod_reciever": [ + "5beec91a0db834001961942d" + ], + "mod_stock_001": [ + "5beec8b20db834001961942a" + ] + }, + "5c064c400db834001d23f468": { + "mod_scope": [ + "5dfe6104585a0c3e995c7b82" + ] + }, + "5c46fbd72e2216398b5a8c9c": { + "mod_barrel": [ + "5c471cb32e221602b177afaa" + ], + "mod_magazine": [ + "5c471c442e221602b542a6f8" + ], + "mod_mount_000": [ + "5a7c74b3e899ef0014332c29", + "5e569a2e56edd02abe09f280" + ], + "mod_mount_001": [ + "5c471c2d2e22164bef5d077f" + ], + "mod_pistol_grip": [ + "5c471be12e221602b66cd9ac" + ], + "mod_reciever": [ + "5c471bd12e221602b4129c3a" + ], + "mod_stock": [ + "5c471b5d2e221602b21d4e14" + ] + }, + "5c471bfc2e221602b21d4e17": { + "mod_muzzle": [ + "5e01e9e273d8eb11426f5bc3" + ], + "mod_sight_front": [ + "5c471ba12e221602b3137d76" + ] + }, + "5c471c2d2e22164bef5d077f": { + "mod_handguard": [ + "5e56991336989c75ab4f03f6" + ] + }, + "5c471cb32e221602b177afaa": { + "mod_gas_block": [ + "5c471c842e221615214259b5" + ], + "mod_muzzle": [ + "5c471bfc2e221602b21d4e17" + ] + }, + "5c61a40d2e2216001403158d": { + "mod_scope": [ + "67641a851b2899700609901a" + ] + }, + "5c793fb92e221644f31bfb64": { + "mod_stock_000": [ + "5c793fde2e221601da358614" + ] + }, + "5de8e67c4a9f347bc92edbd7": { + "mod_mount": [ + "5de8fc0b205ddc616a6bc51b" + ], + "mod_scope": [ + "5c064c400db834001d23f468" + ], + "mod_sight_rear": [ + "5de8fb539f98ac2bc659513a" + ] + }, + "5de8f237bbaf010b10528a70": { + "mod_muzzle": [ + "5de8f2d5b74cd90030650c72" + ], + "mod_tactical": [ + "5b3a337e5acfc4704b4a19a0" + ] + }, + "5de8fbf2b74cd90030650c79": { + "mod_foregrip": [ + "58c157be86f77403c74b2bb6" + ] + }, + "5de8fc0b205ddc616a6bc51b": { + "mod_tactical": [ + "544909bb4bdc2d6f028b4577" + ] + }, + "5df8ce05b11454561e39243b": { + "mod_charge": [ + "5df8e085bb49d91fb446d6a8" + ], + "mod_magazine": [ + "5a3501acc4a282000d72293a" + ], + "mod_pistol_grip": [ + "5b07db875acfc40dc528a5f6" + ], + "mod_reciever": [ + "5df8e4080b92095fd441e594" + ], + "mod_stock": [ + "5c793fb92e221644f31bfb64" + ] + }, + "5df8e4080b92095fd441e594": { + "mod_barrel": [ + "5df917564a9f347bc92edca3" + ], + "mod_handguard": [ + "5df916dfbb49d91fb446d6b9" + ], + "mod_scope": [ + "5b3b6dc75acfc47a8773fb1e" + ], + "mod_sight_rear": [ + "5c1780312e221602b66cc189" + ] + }, + "5df916dfbb49d91fb446d6b9": { + "mod_foregrip": [ + "5b7be4895acfc400170e2dd5" + ], + "mod_scope": [ + "5649a2464bdc2d91118b45a8" + ], + "mod_sight_front": [ + "5dfa3d950dee1b22f862eae0" + ], + "mod_tactical": [ + "5d10b49bd7ad1a1a560708b0" + ] + }, + "5df917564a9f347bc92edca3": { + "mod_gas_block": [ + "5dfa3d45dfc58d14537c20b0" + ], + "mod_muzzle": [ + "5a34fd2bc4a282329a73b4c5" + ] + }, + "5e00903ae9dc277128008b87": { + "mod_charge": [ + "5de922d4b11454561e39239f" + ], + "mod_magazine": [ + "5de8eac42a78646d96665d91" + ], + "mod_mount_000": [ + "5de8fbf2b74cd90030650c79" + ], + "mod_muzzle": [ + "5de8f237bbaf010b10528a70" + ], + "mod_reciever": [ + "5de8e67c4a9f347bc92edbd7" + ], + "mod_stock": [ + "5de910da8b6c4240ba2651b5" + ] + }, + "5e01e9e273d8eb11426f5bc3": { + "mod_muzzle": [ + "5e01ea19e9dc277128008c0b" + ] + }, + "5e4abb5086f77406975c9342": { + "Back_plate": [ + "656fa76500d62bcd2e024080" + ], + "Front_plate": [ + "656fa76500d62bcd2e024080" + ], + "Soft_armor_back": [ + "6575e72660703324250610c7" + ], + "Soft_armor_front": [ + "6575e71760703324250610c3" + ] + }, + "5e569a2e56edd02abe09f280": { + "mod_scope": [ + "67641a851b2899700609901a" + ] + }, + "5e9dacf986f774054d6b89f4": { + "Back_plate": [ + "65573fa5655447403702a816" + ], + "Collar": [ + "65732e215d3a3129fb05f3e1" + ], + "Front_plate": [ + "65573fa5655447403702a816" + ], + "Groin": [ + "65732e30dd8739f6440ef383" + ], + "Soft_armor_back": [ + "65732df4d0acf75aea06c87b" + ], + "Soft_armor_front": [ + "65732de75d3a3129fb05f3dd" + ], + "Soft_armor_left": [ + "65732e05d0acf75aea06c87f" + ], + "soft_armor_right": [ + "65732e0f6784ca384b0167ad" + ] + }, + "5f5f41476bdad616ad46d631": { + "Back_plate": [ + "657b2797c3dbcb01d60c35ea" + ], + "Collar": [ + "65731b666e709cddd001ec43" + ], + "Front_plate": [ + "656f664200d62bcd2e024077" + ], + "Groin": [ + "65731b716e709cddd001ec47" + ], + "Groin_back": [ + "65731b6b6042b0f210020ef6" + ], + "Left_side_plate": [ + "654a4f8bc721968a4404ef18" + ], + "Right_side_plate": [ + "654a4f8bc721968a4404ef18" + ], + "Soft_armor_back": [ + "65731b4fcea9255e2102360e" + ], + "Soft_armor_front": [ + "65731b46cea9255e2102360a" + ], + "Soft_armor_left": [ + "65731b576e709cddd001ec3f" + ], + "soft_armor_right": [ + "65731b60ff6dc44a7d068c4a" + ] + }, + "5fb64bc92b1b027b1f50bcf2": { + "mod_barrel": [ + "5fb65363d1409e5ca04b54f5" + ], + "mod_magazine": [ + "5fb651b52b1b027b1f50bcff", + "5fb651dc85f90547f674b6f4" + ], + "mod_mount": [ + "5fbb976df9986c4cff3fe5f2" + ], + "mod_mount_001": [ + "5fce0f9b55375d18a253eff2" + ], + "mod_mount_002": [ + "5fce0f9b55375d18a253eff2" + ], + "mod_sight_front": [ + "5fb6567747ce63734e3fa1dc" + ], + "mod_sight_rear": [ + "5fb6564947ce63734e3fa1da" + ], + "mod_stock": [ + "5fb655b748c711690e3a8d5a" + ] + }, + "5fb65363d1409e5ca04b54f5": { + "mod_muzzle": [ + "5fc4b992187fea44d52edaa9" + ] + }, + "5fb655b748c711690e3a8d5a": { + "mod_stock_000": [ + "5fb655a72b1b027b1f50bd06" + ] + }, + "5fbb976df9986c4cff3fe5f2": { + "mod_foregrip": [ + "5c7fc87d2e221644f31c0298" + ] + }, + "5fc4b992187fea44d52edaa9": { + "mod_muzzle": [ + "5fc4b9b17283c4046c5814d7" + ] + }, + "5fd4c474dd870108a754b241": { + "back_plate": [ + "656faf0ca0dce000a2020f77" + ], + "front_plate": [ + "656faf0ca0dce000a2020f77" + ] + }, + "602e3f1254072b51b239f713": { + "mod_stock_000": [ + "602e620f9b513876d4338d9a" + ] + }, + "602e63fb6335467b0c5ac94d": { + "mod_barrel": [ + "603372b4da11d6478d5a07ff" + ], + "mod_handguard": [ + "6034e3cb0ddce744014cb870" + ], + "mod_scope": [ + "59f9d81586f7744c7506ee62" + ], + "mod_sight_rear": [ + "5bc09a18d4351e003562b68e" + ] + }, + "603372b4da11d6478d5a07ff": { + "mod_muzzle": [ + "5c6165902e22160010261b28" + ] + }, + "60339954d62c9b14ed777c06": { + "mod_charge": [ + "6033749e88382f4fab3fd2c5" + ], + "mod_magazine": [ + "5a7ad2e851dfba0016153692" + ], + "mod_pistol_grip": [ + "57c55efc2459772d2c6271e7" + ], + "mod_reciever": [ + "602e63fb6335467b0c5ac94d" + ], + "mod_stock_001": [ + "602e3f1254072b51b239f713" + ], + "mod_tactical_000": [ + "602f85fd9b513876d4338d9c" + ] + }, + "6034e3cb0ddce744014cb870": { + "mod_sight_front": [ + "5bc09a30d4351e00367fb7c8" + ] + }, + "6038b4ca92ec1c3103795a0d": { + "Back_plate": [ + "656fa76500d62bcd2e024080" + ], + "Front_plate": [ + "656fa76500d62bcd2e024080" + ], + "Soft_armor_back": [ + "6575e72660703324250610c7" + ], + "Soft_armor_front": [ + "6575e71760703324250610c3" + ] + }, + "60a283193cb70855c43a381d": { + "Back_plate": [ + "656fa61e94b480b8a500c0e8" + ], + "Collar": [ + "6575d598b15fef3dd4051678" + ], + "Front_plate": [ + "656fa61e94b480b8a500c0e8" + ], + "Groin": [ + "6575d5a616c2762fba005820" + ], + "Left_side_plate": [ + "64afdb577bb3bfe8fe03fd1d" + ], + "Right_side_plate": [ + "64afdb577bb3bfe8fe03fd1d" + ], + "Shoulder_l": [ + "6575d5b316c2762fba005824" + ], + "Shoulder_r": [ + "6575d5bd16c2762fba005828" + ], + "Soft_armor_back": [ + "6575d56b16c2762fba005818" + ], + "Soft_armor_front": [ + "6575d561b15fef3dd4051670" + ], + "Soft_armor_left": [ + "6575d57a16c2762fba00581c" + ], + "soft_armor_right": [ + "6575d589b15fef3dd4051674" + ] + }, + "616554fe50224f204c1da2aa": { + "mod_scope": [ + "61657230d92c473c770213d7" + ] + }, + "61bc85697113f767765c7fe7": { + "Back_plate": [ + "656fad8c498d1b7e3e071da0" + ], + "Front_plate": [ + "656fad8c498d1b7e3e071da0" + ], + "Soft_armor_back": [ + "6572fc8c9a866b80ab07eb5d" + ], + "Soft_armor_front": [ + "6572fc809a866b80ab07eb59" + ], + "Soft_armor_left": [ + "6572fc989a866b80ab07eb61" + ], + "soft_armor_right": [ + "6572fca39a866b80ab07eb65" + ] + }, + "628b8d83717774443b15e248": { + "mod_handguard": [ + "628b916469015a4e1711ed8d" + ] + }, + "628b916469015a4e1711ed8d": { + "mod_reciever": [ + "628b9be6cff66b70c002b14c" + ] + }, + "628b9a40717774443b15e9f2": { + "mod_stock": [ + "55d4ae6c4bdc2d8b2f8b456e" + ] + }, + "628b9be6cff66b70c002b14c": { + "mod_sight_rear": [ + "628b9471078f94059a4b9bfb" + ] + }, + "628b9c37a733087d0d7fe84b": { + "mod_gas_block": [ + "628b8d83717774443b15e248" + ], + "mod_magazine": [ + "5bed61680db834001d2c45ab" + ], + "mod_muzzle": [ + "593d493f86f7745e6b2ceb22" + ], + "mod_pistol_grip": [ + "5cf50850d7f00c056e24104c" + ], + "mod_stock_000": [ + "628b9a40717774443b15e9f2" + ] + }, + "628cd624459354321c4b7fa2": { + "Back_plate": [ + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "64afdcb83efdfea28601d041" + ] + }, + "62e14904c2699c0ec93adc47": { + "mod_handguard": [ + "637ba19df7ca6372bf2613d7" + ], + "mod_magazine": [ + "62e153bcdb1a5c41971c1b5b" + ], + "mod_muzzle": [ + "62e2a7138e1ac9380579c122" + ], + "mod_pistolgrip": [ + "637ba29bf7ca6372bf2613db" + ], + "mod_reciever": [ + "62e27a7865f0b1592a49e17b" + ], + "mod_stock": [ + "62e2969582ebf260c20539c2" + ] + }, + "62e27a7865f0b1592a49e17b": { + "mod_mount": [ + "62e281349ecd3f493f6df954" + ] + }, + "62e281349ecd3f493f6df954": { + "mod_scope": [ + "616554fe50224f204c1da2aa" + ] + }, + "62ed1921b3608410ef5a2c04": { + "mod_tactical": [ + "560d657b4bdc2da74d8b4572" + ] + }, + "634f02331f9f536910079b51": { + "mod_mount_000": [ + "634f04d82e5def262d0b30c6" + ] + }, + "634f02d7517ccc8a960fc744": { + "mod_mount_000": [ + "653ecd065a1690d9d90491e6" + ] + }, + "634f04d82e5def262d0b30c6": { + "mod_gas_block": [ + "634f02d7517ccc8a960fc744" + ], + "mod_sight_rear": [ + "574db213245977459a2f3f5d" + ] + }, + "637ba19df7ca6372bf2613d7": { + "mod_mount_001": [ + "62ed1921b3608410ef5a2c04" + ] + }, + "6499849fc93611967b034949": { + "mod_gas_block": [ + "649ec107961514b22506b10c" + ], + "mod_handguard": [ + "649ec127c93611967b034957" + ], + "mod_magazine": [ + "5bed61680db834001d2c45ab" + ], + "mod_muzzle": [ + "64c196ad26a15b84aa07132f" + ], + "mod_pistol_grip": [ + "5beec8ea0db834001a6f9dbf" + ], + "mod_reciever": [ + "649ec2f3961514b22506b111" + ], + "mod_stock_001": [ + "649ec87d8007560a9001ab36" + ] + }, + "649ec127c93611967b034957": { + "mod_mount_001": [ + "5beecbb80db834001d2c465e" + ] + }, + "649ec2f3961514b22506b111": { + "mod_scope": [ + "609a63b6e2ff132951242d09", + "5c0505e00db834001b735073" + ] + }, + "649ec87d8007560a9001ab36": { + "mod_stock": [ + "5beec8c20db834001d2c465c" + ] + }, + "66b6296d7994640992013b17": { + "Back_plate": [ + "656fa0fb498d1b7e3e071d9c" + ], + "Front_plate": [ + "656fa0fb498d1b7e3e071d9c" + ], + "Groin": [ + "66b884fd7994640992013b37" + ], + "Soft_armor_back": [ + "66b884eaacff495a29492849" + ], + "Soft_armor_front": [ + "66b884f4c5d72b02774886eb" + ], + "Soft_armor_left": [ + "66b8851678bbc0200425fa03" + ], + "soft_armor_right": [ + "66b88521a7f72d197e70be3b" + ] + }, + "674d6121c09f69dfb201a888": { + "mod_handguard": [ + "674d5e287075e056160e0176" + ], + "mod_magazine": [ + "5c0548ae0db834001966a3c2" + ], + "mod_pistol_grip": [ + "63f4da90f31d4a33b87bd054" + ], + "mod_reciever": [ + "628a665a86cbd9750d2ff5e5" + ], + "mod_scope": [ + "5a33b2c9c4a282000c5a9511" + ], + "mod_stock_000": [ + "5b0e794b5acfc47a877359b2" + ] + }, + "67641a851b2899700609901a": { + "mod_scope": [ + "67641b461c2eb66ade05dba6" + ] + }, + "67641b461c2eb66ade05dba6": { + "mod_tactical": [ + "67641bec4ad898aa100c1079" + ] + } + } + }, + "lastName": [], + "skills": { + "Common": { + "AimDrills": { + "max": 5100, + "min": 5100 + }, + "Attention": { + "max": 5100, + "min": 5100 + }, + "BotSound": { + "max": 5100, + "min": 5100 + }, + "CovertMovement": { + "max": 5100, + "min": 5100 + }, + "Endurance": { + "max": 5100, + "min": 5100 + }, + "FieldMedicine": { + "max": 5100, + "min": 5100 + }, + "FirstAid": { + "max": 5100, + "min": 5100 + }, + "Health": { + "max": 5100, + "min": 5100 + }, + "MagDrills": { + "max": 5100, + "min": 5100 + }, + "Metabolism": { + "max": 5100, + "min": 5100 + }, + "ProneMovement": { + "max": 5100, + "min": 5100 + }, + "RecoilControl": { + "max": 5100, + "min": 5100 + }, + "Strength": { + "max": 5100, + "min": 5100 + }, + "StressResistance": { + "max": 5100, + "min": 5100 + }, + "Vitality": { + "max": 5100, + "min": 5100 } } } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/skier.json b/Libraries/SptAssets/Assets/database/bots/types/skier.json index 60ec738a..19f8f7d4 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/skier.json +++ b/Libraries/SptAssets/Assets/database/bots/types/skier.json @@ -1,2356 +1,2084 @@ { "appearance": { "body": { - "618d1af10a5a59657e5f56f3": 6205, "5e4bb3ee86f77406975c934e": 6395, - "637df28ac22da5bb8d046935": 6330, - "5e9da1d086f774054a667134": 2101 + "5e9da1d086f774054a667134": 2101, + "618d1af10a5a59657e5f56f3": 6205, + "637df28ac22da5bb8d046935": 6330 }, "feet": { "5cde9fb87d6c8b0474535da9": 6380, - "637df25a1e688345e1097bd4": 6345, "5f5e41576760b4138443b344": 6225, - "6193be546e5968395b260157": 2077 + "6193be546e5968395b260157": 2077, + "637df25a1e688345e1097bd4": 6345 }, "hands": { - "6197aca964ae5436d76c1f98": 6205, "5e4bb49586f77406a313ec5a": 6395, - "6391c6205dbbdb3b1b049840": 6330, - "5e9da2dd86f774054e7d0f63": 2101 + "5e9da2dd86f774054e7d0f63": 2101, + "6197aca964ae5436d76c1f98": 6205, + "6391c6205dbbdb3b1b049840": 6330 }, "head": { - "5f68c4c217d579077152a252": 8311, - "5f68c4a7c174a17c0f4c8945": 8489, - "5cde9ff17d6c8b0474535daa": 8303, "5cc2e4d014c02e000d0115f8": 8431, - "5d28afe786f774292668618d": 8538 + "5cde9ff17d6c8b0474535daa": 8303, + "5d28afe786f774292668618d": 8538, + "5f68c4a7c174a17c0f4c8945": 8489, + "5f68c4c217d579077152a252": 8311 }, "voice": { "Scav_1": 6897, - "Scav_4": 7061, "Scav_2": 6976, "Scav_3": 6958, + "Scav_4": 7061, "Scav_5": 7130, "Scav_6": 7050 } }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 73, + "Backpack": 29, + "Earpiece": 0, + "Eyewear": 37, + "FaceCover": 49, + "FirstPrimaryWeapon": 100, + "Headwear": 64, + "Holster": 0, + "Pockets": 100, + "Scabbard": 76, + "SecondPrimaryWeapon": 0, + "SecuredContainer": 100, + "TacticalVest": 100 + }, + "equipmentMods": { + "back_plate": 100, + "front_plate": 100, + "mod_equipment": 0, + "mod_equipment_000": 0, + "mod_mount": 0, + "mod_nvg": 0 + }, + "weaponMods": { + "mod_charge": 5, + "mod_flashlight": 99, + "mod_foregrip": 35, + "mod_launcher": 0, + "mod_magazine": 100, + "mod_mount": 0, + "mod_mount_000": 27, + "mod_mount_001": 0, + "mod_muzzle": 33, + "mod_reciever": 82, + "mod_scope": 28, + "mod_sight_front": 0, + "mod_sight_rear": 67, + "mod_stock": 52, + "mod_stock_000": 15, + "mod_tactical": 52, + "mod_tactical_000": 10, + "mod_tactical_001": 47, + "mod_tactical_002": 86, + "mod_tactical_003": 0 + } + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 30, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, + "BASE_HIT_AFFECTION_MAX_ANG": 18, + "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_SHIEF": 0.5, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.8, + "BOTTOM_COEF": 0.2, + "BOT_MOVE_IF_DELTA": 0.01, + "COEF_FROM_COVER": 0.65, + "COEF_IF_MOVE": 1.5, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 96, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.05, + "HARD_AIM": 0.75, + "HARD_AIM_CHANCE_100": 80, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 2.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 2.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.65, + "SCATTERING_DIST_MODIF_CLOSE": 0.8, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -1, + "TIME_COEF_IF_MOVE": 1.5, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.65, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 1.8, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.3, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 0.1, + "HearingSense": 2.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.1, + "ScatteringPerMeter": 0.05, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 140, + "VisibleDistance": 130, + "WaitInCoverBetweenShotsSec": 1.5 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 10, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 0, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 7, + "CLOSE_TO_SMOKE_TO_SHOOT": 5, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.7, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.3, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 16.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 30, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 2, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, + "CLOSE_DIST": 10, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 3.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 30, + "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, + "HEAR_DELAY_WHEN_PEACE": 0.75, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 5, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "ANGLE_FOR_GETUP": 30, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "CHECK_HEAD_ANY_DIST": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 45, + "ENEMY_LIGHT_START_DIST": 40, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.25, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0001, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.4, + "MAX_VISION_GRASS_METERS_FLARE": 7, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 43, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_TAKE_ITEMS": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "CHECK_MARK_OF_UNKNOWS": true, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 1, + "GROUP_EXACTLY_PHRASE_DELAY": 24, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MAY_BE_CALLED_FOR_HELP": true, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SURGE_KIT_ONLY_SAFE_CONTAINER": false, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 23, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHOOSE_RESERV": true, + "CAN_FRIENDLY_TILT": true, + "CAN_HARD_AIM": true, + "CAN_LOOK_TO_DEADBODIES": true, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "DEAD_BODY_LOOK_PERIOD": 8, + "DO_RANDOM_DROP_ITEM": true, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 15.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": false, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.015, + "AMPLITUDE_SPEED": 0.001, + "BloodFall": 1.45, + "Caution": 0.03, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.3, + "MinScatter": 0.015, + "MovingSlowCoef": 1.4, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.2, + "SpeedUp": 0.6, + "SpeedUpAim": 1.8, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 140, + "ToLowBotSpeed": 2.8, + "ToSlowBotSpeed": 1.8, + "ToStopBotAngularSpeed": 80, + "ToUpBotSpeed": 4.3, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.1, + "CAN_SHOOTS_TIME_TO_AMBUSH": 333, + "CAN_STOP_SHOOT_CAUSE_ANIMATOR": true, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 50, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.4, + "LOW_DIST_TO_CHANGE_WEAPON": 10, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.2, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.1, + "RECOIL_TIME_NORMALIZE": 2, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "hard": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 30, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, + "BASE_HIT_AFFECTION_MAX_ANG": 18, + "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_SHIEF": 0.5, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.8, + "BOTTOM_COEF": 0.2, + "BOT_MOVE_IF_DELTA": 0.01, + "COEF_FROM_COVER": 0.65, + "COEF_IF_MOVE": 1.5, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 96, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.05, + "HARD_AIM": 0.75, + "HARD_AIM_CHANCE_100": 80, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 2.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 2.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.65, + "SCATTERING_DIST_MODIF_CLOSE": 0.8, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -1, + "TIME_COEF_IF_MOVE": 1.5, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.65, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.3, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 2, + "HearingSense": 2.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.1, + "ScatteringPerMeter": 0.05, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 140, + "VisibleDistance": 130, + "WaitInCoverBetweenShotsSec": 1.5 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 10, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 0, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 7, + "CLOSE_TO_SMOKE_TO_SHOOT": 5, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.7, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.3, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 16.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 30, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 2, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, + "CLOSE_DIST": 10, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 3.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 30, + "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, + "HEAR_DELAY_WHEN_PEACE": 0.75, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 5, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "ANGLE_FOR_GETUP": 30, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "CHECK_HEAD_ANY_DIST": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 45, + "ENEMY_LIGHT_START_DIST": 40, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.25, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0001, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.4, + "MAX_VISION_GRASS_METERS_FLARE": 7, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 43, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_TAKE_ITEMS": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "CHECK_MARK_OF_UNKNOWS": true, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 1, + "GROUP_EXACTLY_PHRASE_DELAY": 24, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MAY_BE_CALLED_FOR_HELP": true, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SURGE_KIT_ONLY_SAFE_CONTAINER": false, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 23, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHOOSE_RESERV": true, + "CAN_FRIENDLY_TILT": true, + "CAN_HARD_AIM": true, + "CAN_LOOK_TO_DEADBODIES": true, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "DEAD_BODY_LOOK_PERIOD": 8, + "DO_RANDOM_DROP_ITEM": true, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 15.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": false, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.015, + "AMPLITUDE_SPEED": 0.001, + "BloodFall": 1.45, + "Caution": 0.03, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.3, + "MinScatter": 0.015, + "MovingSlowCoef": 1.4, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.2, + "SpeedUp": 0.6, + "SpeedUpAim": 1.8, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 140, + "ToLowBotSpeed": 2.8, + "ToSlowBotSpeed": 1.8, + "ToStopBotAngularSpeed": 80, + "ToUpBotSpeed": 4.3, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.1, + "CAN_SHOOTS_TIME_TO_AMBUSH": 333, + "CAN_STOP_SHOOT_CAUSE_ANIMATOR": true, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 50, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.4, + "LOW_DIST_TO_CHANGE_WEAPON": 10, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.2, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.1, + "RECOIL_TIME_NORMALIZE": 2, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "impossible": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 30, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, + "BASE_HIT_AFFECTION_MAX_ANG": 18, + "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_SHIEF": 0.5, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.8, + "BOTTOM_COEF": 0.2, + "BOT_MOVE_IF_DELTA": 0.01, + "COEF_FROM_COVER": 0.65, + "COEF_IF_MOVE": 1.5, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 96, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.05, + "HARD_AIM": 0.75, + "HARD_AIM_CHANCE_100": 80, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 2.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 2.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.65, + "SCATTERING_DIST_MODIF_CLOSE": 0.8, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -1, + "TIME_COEF_IF_MOVE": 1.5, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.65, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 0.555, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.3, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 1, + "HearingSense": 2.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.1, + "ScatteringPerMeter": 0.05, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 140, + "VisibleDistance": 130, + "WaitInCoverBetweenShotsSec": 1.5 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 10, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 0, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 7, + "CLOSE_TO_SMOKE_TO_SHOOT": 5, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.7, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.3, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 16.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 30, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 2, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, + "CLOSE_DIST": 10, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 3.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 30, + "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, + "HEAR_DELAY_WHEN_PEACE": 0.75, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 5, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "ANGLE_FOR_GETUP": 30, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "CHECK_HEAD_ANY_DIST": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 45, + "ENEMY_LIGHT_START_DIST": 40, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.25, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0001, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.4, + "MAX_VISION_GRASS_METERS_FLARE": 7, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 43, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_TAKE_ITEMS": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "CHECK_MARK_OF_UNKNOWS": true, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 1, + "GROUP_EXACTLY_PHRASE_DELAY": 24, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MAY_BE_CALLED_FOR_HELP": true, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SURGE_KIT_ONLY_SAFE_CONTAINER": false, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 23, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHOOSE_RESERV": true, + "CAN_FRIENDLY_TILT": true, + "CAN_HARD_AIM": true, + "CAN_LOOK_TO_DEADBODIES": true, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "DEAD_BODY_LOOK_PERIOD": 8, + "DO_RANDOM_DROP_ITEM": true, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 15.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": false, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.015, + "AMPLITUDE_SPEED": 0.001, + "BloodFall": 1.45, + "Caution": 0.03, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.3, + "MinScatter": 0.015, + "MovingSlowCoef": 1.4, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.2, + "SpeedUp": 0.6, + "SpeedUpAim": 1.8, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 140, + "ToLowBotSpeed": 2.8, + "ToSlowBotSpeed": 1.8, + "ToStopBotAngularSpeed": 80, + "ToUpBotSpeed": 4.3, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.1, + "CAN_SHOOTS_TIME_TO_AMBUSH": 333, + "CAN_STOP_SHOOT_CAUSE_ANIMATOR": true, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 50, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.4, + "LOW_DIST_TO_CHANGE_WEAPON": 10, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.2, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.1, + "RECOIL_TIME_NORMALIZE": 2, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + }, + "normal": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 30, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, + "BASE_HIT_AFFECTION_MAX_ANG": 18, + "BASE_HIT_AFFECTION_MIN_ANG": 14, + "BASE_SHIEF": 0.5, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.8, + "BOTTOM_COEF": 0.2, + "BOT_MOVE_IF_DELTA": 0.01, + "COEF_FROM_COVER": 0.65, + "COEF_IF_MOVE": 1.5, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 96, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.05, + "HARD_AIM": 0.75, + "HARD_AIM_CHANCE_100": 80, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 2.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 2.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.65, + "SCATTERING_DIST_MODIF_CLOSE": 0.8, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -1, + "TIME_COEF_IF_MOVE": 1.5, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.65, + "XZ_COEF_STATIONARY_GRENADE": 0.8, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 50, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 41, + "KILLA_MIDDLE_ATTACK_DIST": 22, + "KILLA_ONE_IS_CLOSE": 30, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 1, + "KILLA_WAIT_IN_COVER_COEF": 1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 1.8, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.3, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 0.1, + "HearingSense": 2.85, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.1, + "ScatteringPerMeter": 0.05, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 140, + "VisibleDistance": 130, + "WaitInCoverBetweenShotsSec": 1.5 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_COVER_ENEMY_LOOK": true, + "CLOSE_DIST_POINT_SQRT": 4, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 45, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 10, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 3, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 4, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 0, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 7, + "CLOSE_TO_SMOKE_TO_SHOOT": 5, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.7, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.3, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 16.7, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": false, + "REQUEST_DIST_MUST_THROW": 2, + "REQUEST_DIST_MUST_THROW_SQRT": 4, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 30, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 2, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, + "CLOSE_DIST": 10, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 3.6, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 30, + "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, + "HEAR_DELAY_WHEN_PEACE": 0.75, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 5, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "ANGLE_FOR_GETUP": 30, + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": false, + "CHECK_HEAD_ANY_DIST": false, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 45, + "ENEMY_LIGHT_START_DIST": 40, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 0.25, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0001, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 30, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.4, + "MAX_VISION_GRASS_METERS_FLARE": 7, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 43, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": true, + "CAN_TAKE_ITEMS": true, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "CHECK_MARK_OF_UNKNOWS": true, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_POINT_CHOOSE_COEF": 1, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 1, + "GROUP_EXACTLY_PHRASE_DELAY": 24, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "HOW_WORK_OVER_DEAD_BODY": 2, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MAY_BE_CALLED_FOR_HELP": true, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": false, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 60, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 200, + "SURGE_KIT_ONLY_SAFE_CONTAINER": false, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_LEAVE_MAP": 23, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, + "WILL_PERSUE_AXEMAN": true + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHOOSE_RESERV": true, + "CAN_FRIENDLY_TILT": true, + "CAN_HARD_AIM": true, + "CAN_LOOK_TO_DEADBODIES": true, + "CAN_WATCH_SECOND_WEAPON": true, + "CHANCE_TO_CHANGE_WAY_0_100": 50, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 125.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "DEAD_BODY_LOOK_PERIOD": 8, + "DO_RANDOM_DROP_ITEM": true, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 30, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 1.1, + "TALK_DELAY_BIG": 15.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": false, + "VISION_DIST_COEF_PEACE": 0.75 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.015, + "AMPLITUDE_SPEED": 0.001, + "BloodFall": 1.45, + "Caution": 0.03, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.3, + "MinScatter": 0.015, + "MovingSlowCoef": 1.4, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.2, + "SpeedUp": 0.6, + "SpeedUpAim": 1.8, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 140, + "ToLowBotSpeed": 2.8, + "ToSlowBotSpeed": 1.8, + "ToStopBotAngularSpeed": 80, + "ToUpBotSpeed": 4.3, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.1, + "CAN_SHOOTS_TIME_TO_AMBUSH": 333, + "CAN_STOP_SHOOT_CAUSE_ANIMATOR": true, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, + "CHANCE_TO_CHANGE_WEAPON": 0, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 50, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.4, + "LOW_DIST_TO_CHANGE_WEAPON": 10, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.2, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.1, + "RECOIL_TIME_NORMALIZE": 2, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 100, + "WAIT_NEXT_SINGLE_SHOT": 0.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } + } + }, "experience": { + "aggressorBonus": { + "normal": 0.02 + }, "level": { - "min": 0, - "max": 1 + "max": 1, + "min": 0 }, "reward": { "normal": { - "min": -1, - "max": -1 + "max": -1, + "min": -1 } }, "standingForKill": { "normal": -0.05 }, - "aggressorBonus": { - "normal": 0.02 - }, "useSimpleAnimator": false }, - "health": { - "Hydration": { - "min": 100, - "max": 100 - }, - "Energy": { - "min": 100, - "max": 100 - }, - "Temperature": { - "min": 36, - "max": 40 - }, - "BodyParts": [ - { - "Head": { - "min": 35, - "max": 35 - }, - "Chest": { - "min": 100, - "max": 100 - }, - "Stomach": { - "min": 100, - "max": 100 - }, - "LeftArm": { - "min": 70, - "max": 70 - }, - "RightArm": { - "min": 70, - "max": 70 - }, - "LeftLeg": { - "min": 80, - "max": 80 - }, - "RightLeg": { - "min": 80, - "max": 80 - } - } - ] - }, - "skills": { - "Common": {} - }, - "inventory": { - "equipment": { - "Headwear": { - "5a7c4850e899ef00150be885": 8684, - "65719f0775149d62ce0a670b": 8712, - "5b4329075acfc400153b78ff": 6669, - "61c18db6dfd64163ea78fbb4": 1492, - "572b7d8524597762b472f9d1": 1434 - }, - "Earpiece": {}, - "FaceCover": { - "59e7715586f7742ee5789605": 3378, - "5ab8f4ff86f77431c60d91ba": 3423, - "62a09e08de7ac81993580532": 348, - "62a5c2c98ec41a51b34739c0": 359, - "572b7fa524597762b747ce82": 6752, - "5bd073a586f7747e6f135799": 579, - "5b432f3d5acfc4704b4a1dfb": 3355, - "5e54f76986f7740366043752": 588, - "5b432b6c5acfc4001a599bf0": 1102, - "5b432b2f5acfc4771e1c6622": 553, - "5e54f79686f7744022011103": 379 - }, - "ArmorVest": { - "64be79c487d1510151095552": 1408, - "64be79e2bf8412471d0d9bcc": 1419, - "5c0e51be86f774598e797894": 285 - }, - "Eyewear": { - "59e770b986f7742cbd762754": 7745, - "557ff21e4bdc2d89578b4586": 3815, - "61c18d83b00456371a66814b": 677, - "62a09e410b9d3c46de5b6e78": 637, - "5d6d2ef3a4b93618084f58bd": 2090, - "603409c80ca681766b6a0fb2": 952 - }, - "ArmBand": {}, - "TacticalVest": { - "6034cf5fffd42c541047f72e": 1082, - "5fd4c5477a8d854fa0105061": 1021 - }, - "Backpack": { - "56e33634d2720bd8058b456b": 8145, - "56e33680d2720be2748b4576": 4187 - }, - "FirstPrimaryWeapon": { - "576165642459773c7a400233": 5673, - "5644bd2b4bdc2d3b4c8b4572": 9059, - "59d6088586f774275f37482f": 5666, - "54491c4f4bdc2db1078b4568": 16150, - "57dc2fa62459775949412633": 5517 - }, - "SecondPrimaryWeapon": {}, - "Holster": {}, - "Scabbard": { - "57e26fc7245977162a14b800": 6570, - "57e26ea924597715ca604a09": 6635, - "5bc9c1e2d4351e00367fbcf0": 335, - "54491bb74bdc2d09088b4567": 2601 - }, - "Pockets": { - "557ffd194bdc2d28148b457f": 1 - }, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - } - }, - "Ammo": { - "Caliber12g": { - "5d6e6806a4b936088465b17e": 2640, - "5d6e6891a4b9361bd473feea": 2010, - "560d5e524bdc2d25448b4571": 4910, - "5d6e68d1a4b93622fe60e845": 22, - "5d6e6869a4b9361c140bcfde": 3350, - "5d6e689ca4b9361bc8618956": 3320, - "5d6e68dea4b9361bcc29e659": 2910, - "5d6e68b3a4b9361bca7e50b5": 3410, - "58820d1224597753c90aeb13": 3340, - "5d6e67fba4b9361bc73bc779": 45 - }, - "Caliber545x39": { - "56dff216d2720bbd668b4568": 870, - "56dff4a2d2720bbd668b456a": 858, - "56dff421d2720b5f5a8b4567": 861, - "56dff0bed2720bb0668b4567": 884, - "56dff338d2720bbd668b4569": 909, - "56dff061d2720bb5668b4567": 78, - "56dff4ecd2720b5f5a8b4568": 274, - "56dff3afd2720bba668b4567": 448, - "56dfef82d2720bbd668b4567": 162, - "56dff2ced2720bb4668b4567": 138 - }, - "Caliber762x39": { - "59e4d3d286f774176a36250a": 192, - "64b7af5a8532cf95ee0a0dbd": 256, - "5656d7c34bdc2d9d198b4587": 64, - "59e4cf5286f7741778269d8a": 70, - "64b7af734b75259c590fa895": 101 - } - }, - "mods": { - "576165642459773c7a400233": { - "mod_handguard": [ - "576169e62459773c69055191", - "58272b392459774b4c7b3ccd" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "57616c112459773cce774d66" - ], - "mod_sight_rear": [ - "57a9b9ce2459770ee926038d" - ], - "mod_stock": [ - "57616ca52459773c69055192" - ], - "mod_magazine": [ - "57616a9e2459773c7a400234", - "5a966f51a2750c00156aacf6" - ], - "patron_in_weapon": [ - "5d6e6806a4b936088465b17e", - "5d6e6891a4b9361bd473feea", - "560d5e524bdc2d25448b4571", - "5d6e68d1a4b93622fe60e845", - "5d6e68dea4b9361bcc29e659", - "5d6e67fba4b9361bc73bc779" - ], - "mod_charge": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - }, - "5a7c4850e899ef00150be885": { - "Helmet_top": [ - "657baaf0b7e9ca9a02045c02" - ], - "Helmet_back": [ - "657bab6ec6f689d3a205b85f" - ], - "Helmet_ears": [ - "657babc6f58ba5a6250107a2" - ] - }, - "64be79c487d1510151095552": { - "Soft_armor_front": [ - "6570495b45d573133d0d6adb" - ], - "Soft_armor_back": [ - "657049d23425b19bbc0502f0" - ] - }, - "64be79e2bf8412471d0d9bcc": { - "Soft_armor_front": [ - "6570495b45d573133d0d6adb" - ], - "Soft_armor_back": [ - "657049d23425b19bbc0502f0" - ] - }, - "5644bd2b4bdc2d3b4c8b4572": { - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_pistol_grip": [ - "5649ad3f4bdc2df8348b4585" - ], - "mod_muzzle": [ - "57dc324a24597759501edc20", - "5ac72e945acfc43f3b691116", - "5649aa744bdc2ded0b8b457e", - "5ac7655e5acfc40016339a19", - "5649ab884bdc2ded0b8b457f" - ], - "mod_reciever": [ - "5d2c772c48f0355d95672c25", - "5649af094bdc2df8348b4586" - ], - "mod_stock": [ - "59e6227d86f77440d64f5dc2", - "5649b0fc4bdc2d17108b4588", - "5cbdb1b0ae9215000d50e105", - "5649b1c04bdc2d16268b457c", - "59d6514b86f774171a068a08", - "59e89d0986f77427600d226e", - "5cf518cfd7f00c065b422214", - "5b222d335acfc4771e1be099", - "5649b2314bdc2d79388b4576" - ], - "mod_magazine": [ - "564ca99c4bdc2d16268b4589", - "55d4837c4bdc2d1d4e8b456c", - "55d480c04bdc2d1d4e8b456a", - "5bed61680db834001d2c45ab", - "5cbdaf89ae9215000e5b9c94", - "5bed625c0db834001c062946" - ], - "patron_in_weapon": [ - "56dff216d2720bbd668b4568", - "56dff4a2d2720bbd668b456a", - "56dff421d2720b5f5a8b4567", - "56dff0bed2720bb0668b4567", - "56dff338d2720bbd668b4569", - "56dfef82d2720bbd668b4567", - "56dff2ced2720bb4668b4567", - "56dff3afd2720bba668b4567", - "56dff061d2720bb5668b4567" - ], - "mod_sight_rear": [ - "5649b0544bdc2d1b2b8b458a", - "5ac733a45acfc400192630e2", - "628a7b23b0f75035732dd565", - "5649d9a14bdc2d79388b4580" - ], - "mod_charge": [ - "5648ac824bdc2ded0b8b457d", - "6130ca3fd92c473c77020dbd" - ] - }, - "59c6633186f7740cf0493bb9": { - "mod_handguard": [ - "5cbda9f4ae9215000e5b9bfc", - "59e6284f86f77440d569536f", - "5648b0744bdc2d363b8b4578", - "5d2c829448f0353a5c7d6674", - "59d64f2f86f77417193ef8b3", - "59e898ee86f77427614bd225", - "5648b1504bdc2d9d488b4584", - "5cbda392ae92155f3c17c39f", - "5648b4534bdc2d3d1c8b4580", - "5648ae314bdc2d3d1c8b457f" - ] - }, - "5c0e51be86f774598e797894": { - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Back_plate": [ - "656efd66034e8e01c407f35c" - ], - "Soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "Soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "Soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ] - }, - "59d6088586f774275f37482f": { - "mod_gas_block": [ - "59d64ec286f774171d1e0a42" - ], - "mod_pistol_grip": [ - "5a0071d486f77404e23a12b2", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "57e3dba62459770f0c32322b", - "59e6318286f77444dd62c4cc", - "5998517986f7746017232f7e", - "59e62cc886f77440d40b52a1", - "5649ade84bdc2d1b2b8b4587", - "5649ae4a4bdc2d1b2b8b4588" - ], - "mod_reciever": [ - "5d2c76ed48f03532f2136169" - ], - "mod_stock": [ - "59e89d0986f77427600d226e", - "5cbdb1b0ae9215000d50e105", - "59d6514b86f774171a068a08", - "5b222d335acfc4771e1be099", - "59e6227d86f77440d64f5dc2", - "5649b1c04bdc2d16268b457c", - "5649b0fc4bdc2d17108b4588", - "5649b2314bdc2d79388b4576", - "5cf518cfd7f00c065b422214" - ], - "mod_magazine": [ - "5b1fd4e35acfc40018633c39", - "5a01c29586f77474660c694c", - "59d625f086f774661516605d", - "59e5d83b86f7745aed03d262", - "5cbdc23eae9215001136a407" - ], - "patron_in_weapon": [ - "59e4d3d286f774176a36250a", - "64b7af5a8532cf95ee0a0dbd", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "64b7af734b75259c590fa895" - ], - "mod_sight_rear": [ - "59d650cf86f7741b846413a4" - ] - }, - "59d64ec286f774171d1e0a42": { - "mod_handguard": [ - "5648b0744bdc2d363b8b4578", - "5cbda9f4ae9215000e5b9bfc", - "5cbda392ae92155f3c17c39f", - "59e6284f86f77440d569536f", - "59e898ee86f77427614bd225", - "59d64f2f86f77417193ef8b3", - "5648b1504bdc2d9d488b4584", - "5d2c829448f0353a5c7d6674", - "5648ae314bdc2d3d1c8b457f" - ] - }, - "5d2c76ed48f03532f2136169": { - "mod_scope": [ - "5c0505e00db834001b735073", - "570fd79bd2720bc7458b4583", - "5b30b0dc5acfc400153b7124", - "591c4efa86f7741030027726", - "570fd721d2720bc5458b4596" - ] - }, - "5649b0fc4bdc2d17108b4588": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "65719f0775149d62ce0a670b": { - "Helmet_top": [ - "657fa0fcd4caf976440afe3e" - ], - "Helmet_back": [ - "657fa168e9433140ad0baf8e" - ], - "Helmet_ears": [ - "657fa186d4caf976440afe42" - ] - }, - "54491c4f4bdc2db1078b4568": { - "mod_barrel": [ - "55d4491a4bdc2d882f8b456e" - ], - "mod_handguard": [ - "55d45d3f4bdc2d972f8b456c" - ], - "mod_stock": [ - "56083be64bdc2d20478b456f", - "56083a334bdc2dc8488b4571", - "56083cba4bdc2de22e8b456f" - ], - "mod_magazine": [ - "55d485804bdc2d8c2f8b456b" - ], - "patron_in_weapon": [ - "560d5e524bdc2d25448b4571", - "5d6e6869a4b9361c140bcfde", - "5d6e689ca4b9361bc8618956", - "5d6e68dea4b9361bcc29e659", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6806a4b936088465b17e", - "58820d1224597753c90aeb13" - ], - "mod_mount_000": [ - "55d48ebc4bdc2d8c2f8b456c" - ] - }, - "5649b0544bdc2d1b2b8b458a": { - "mod_sight_rear": [ - "5a0ed824fcdbcb0176308b0d" - ] - }, - "5ac733a45acfc400192630e2": { - "mod_sight_rear": [ - "5a0ed824fcdbcb0176308b0d" - ] - }, - "57dc2fa62459775949412633": { - "mod_pistol_grip": [ - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "5649ade84bdc2d1b2b8b4587", - "59e6318286f77444dd62c4cc", - "57e3dba62459770f0c32322b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5998517986f7746017232f7e", - "5649ae4a4bdc2d1b2b8b4588" - ], - "mod_gas_block": [ - "59d36a0086f7747e673f3946" - ], - "mod_stock": [ - "57dc347d245977596754e7a1", - "5ab626e4d8ce87272e4c6e43", - "59ecc28286f7746d7a68aa8c" - ], - "mod_reciever": [ - "57dc334d245977597164366f", - "5839a7742459773cf9693481" - ], - "mod_magazine": [ - "55d4837c4bdc2d1d4e8b456c" - ], - "patron_in_weapon": [ - "56dff0bed2720bb0668b4567", - "56dff338d2720bbd668b4569", - "56dff421d2720b5f5a8b4567", - "56dff061d2720bb5668b4567", - "56dff4ecd2720b5f5a8b4568", - "56dff3afd2720bba668b4567", - "56dff216d2720bbd668b4568", - "56dff4a2d2720bbd668b456a", - "56dfef82d2720bbd668b4567", - "56dff2ced2720bb4668b4567" - ], - "mod_muzzle": [ - "5ac7655e5acfc40016339a19", - "57dc324a24597759501edc20", - "5ac72e945acfc43f3b691116", - "5649aa744bdc2ded0b8b457e", - "5649ab884bdc2ded0b8b457f", - "564caa3d4bdc2d17108b458e" - ] - }, - "59d36a0086f7747e673f3946": { - "mod_handguard": [ - "5d15ce51d7ad1a1eff619092", - "57dc32dc245977596d4ef3d3", - "57ffa9f4245977728561e844" - ] - }, - "5d15ce51d7ad1a1eff619092": { - "mod_foregrip": [ - "58c157c886f774032749fb06", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6" - ], - "mod_tactical_001": [ - "57d17e212459775a1179a0f5" - ] - }, - "57d17e212459775a1179a0f5": { - "mod_flashlight": [ - "59d790f486f77403cb06aec6", - "57d17c5e2459775a5c57d17d" - ] - }, - "57dc334d245977597164366f": { - "mod_mount_000": [ - "57ffb0062459777a045af529" - ] - }, - "55d48ebc4bdc2d8c2f8b456c": { - "mod_tactical_001": [ - "6272370ee4013c5d7e31f418", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "560d657b4bdc2da74d8b4572" - ], - "mod_tactical_002": [ - "57d17e212459775a1179a0f5" - ] - }, - "5b222d335acfc4771e1be099": { - "mod_stock": [ - "5b222d405acfc400153af4fe" - ] - }, - "59d650cf86f7741b846413a4": { - "mod_sight_rear": [ - "5a0ed824fcdbcb0176308b0d" - ] - }, - "58272b392459774b4c7b3ccd": { - "mod_tactical_002": [ - "57d17e212459775a1179a0f5" - ], - "mod_scope": [ - "570fd721d2720bc5458b4596", - "570fd79bd2720bc7458b4583" - ] - }, - "5d2c772c48f0355d95672c25": { - "mod_scope": [ - "584984812459776a704a82a6", - "57ae0171245977343c27bfcf", - "591c4efa86f7741030027726", - "570fd721d2720bc5458b4596" - ] - }, - "59d6514b86f774171a068a08": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "57ffb0062459777a045af529": { - "mod_scope": [ - "57ae0171245977343c27bfcf", - "584984812459776a704a82a6", - "570fd721d2720bc5458b4596" - ] - }, - "5649b2314bdc2d79388b4576": { - "mod_stock": [ - "5c0faeddd174af02a962601f", - "57ade1442459771557167e15", - "602e3f1254072b51b239f713" - ] - }, - "5c0faeddd174af02a962601f": { - "mod_stock_000": [ - "5bfe86df0db834001b734685", - "5beec8c20db834001d2c465c", - "628a85ee6b1d481ff772e9d5" - ] - }, - "57dc347d245977596754e7a1": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "57ffa9f4245977728561e844": { - "mod_tactical_000": [ - "57d17e212459775a1179a0f5" - ], - "mod_foregrip": [ - "5cf4fb76d7f00c065703d3ac", - "619386379fb0c665d5490dbe" - ] - }, - "5cf518cfd7f00c065b422214": { - "mod_stock": [ - "5beec8c20db834001d2c465c", - "628a85ee6b1d481ff772e9d5", - "5bfe86df0db834001b734685" - ] - }, - "591c4efa86f7741030027726": { - "mod_tactical": [ - "591c4e1186f77410354b316e" - ] - }, - "59ecc28286f7746d7a68aa8c": { - "mod_stock": [ - "5b222d405acfc400153af4fe" - ] - }, - "5648b4534bdc2d3d1c8b4580": { - "mod_foregrip": [ - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "5cda9bcfd7f00c0c0b53e900", - "58c157c886f774032749fb06", - "5c87ca002e221600114cb150" - ], - "mod_scope": [ - "584924ec24597768f12ae244" - ], - "mod_tactical_002": [ - "560d657b4bdc2da74d8b4572", - "57d17e212459775a1179a0f5", - "5b07dd285acfc4001754240d" - ] - }, - "59e6227d86f77440d64f5dc2": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "5648ae314bdc2d3d1c8b457f": { - "mod_foregrip": [ - "619386379fb0c665d5490dbe", - "5cf4fb76d7f00c065703d3ac", - "5c87ca002e221600114cb150", - "5cda9bcfd7f00c0c0b53e900" - ], - "mod_tactical_001": [ - "57d17e212459775a1179a0f5" - ], - "mod_scope": [ - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124" - ] - }, - "59e89d0986f77427600d226e": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "5ab626e4d8ce87272e4c6e43": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "5649b1c04bdc2d16268b457c": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "5cbdb1b0ae9215000d50e105": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "602e3f1254072b51b239f713": { - "mod_stock_000": [ - "5beec8c20db834001d2c465c", - "628a85ee6b1d481ff772e9d5" - ] - } - }, - "items": { - "TacticalVest": { - "57616a9e2459773c7a400234": 8333, - "5e831507ea0a7c419c2f9bd9": 10000, - "57347d90245977448f7b7f65": 405, - "564ca99c4bdc2d16268b4589": 3399, - "635a758bfefc88a93f021b8a": 67, - "5b1fd4e35acfc40018633c39": 2287, - "55d4837c4bdc2d1d4e8b456c": 10000, - "590c5d4b86f774784e1b9c45": 405, - "5a01c29586f77474660c694c": 3687, - "57513fcc24597720a31c09a6": 318, - "656df4fec921ad01000481a2": 830, - "575146b724597720a27126d5": 412, - "560d5e524bdc2d25448b4571": 605, - "5755356824597772cb798962": 165, - "59e3577886f774176a362503": 465, - "57347d7224597744596b4e72": 498, - "59d625f086f774661516605d": 439, - "57347da92459774491567cf5": 473, - "55d480c04bdc2d1d4e8b456a": 3354, - "5d6e6869a4b9361c140bcfde": 3350, - "57347d8724597744596b4e76": 485, - "5bed61680db834001d2c45ab": 1458, - "5d6e689ca4b9361bc8618956": 3325, - "5d6e68dea4b9361bcc29e659": 912, - "5d6e68b3a4b9361bca7e50b5": 3415, - "544fb62a4bdc2dfb738b4568": 484, - "5cbdaf89ae9215000e5b9c94": 3442, - "637b6179104668754b72f8f5": 20, - "57505f6224597709a92585a9": 434, - "57347d692459774491567cf1": 516, - "60098ad7c2240c0fe85c570a": 98, - "5d6e6806a4b936088465b17e": 1206, - "58820d1224597753c90aeb13": 3344, - "5d1b33a686f7742523398398": 31, - "5d403f9186f7743cac3f229b": 276, - "59e5d83b86f7745aed03d262": 2630, - "5448ff904bdc2d6f028b456e": 481, - "5751487e245977207e26a315": 656, - "60098af40accd37ef2175f27": 128, - "5448fee04bdc2dbc018b4567": 210, - "57347d3d245977448f7b7f61": 474, - "62a09f32621468534a797acb": 353, - "5751496424597720a27126da": 525, - "544fb3364bdc2d34748b456a": 326, - "5751a25924597722c463c472": 348, - "575062b524597720a31c09a1": 372, - "5c0e534186f7747fa1419867": 57, - "5d40407c86f774318526545a": 352, - "544fb6cc4bdc2d34748b456e": 454, - "5c0e531286f7747fa54205c2": 48, - "57513f9324597720a7128161": 369, - "60098b1705871270cd5352a1": 230, - "57347d9c245977448b40fa85": 468, - "5751435d24597720a27126d1": 434, - "57513f07245977207e26a311": 510, - "5bc9b156d4351e00367fbce9": 148, - "65815f0e647e3d7246384e14": 263, - "590c5f0d86f77413997acfab": 355, - "637b60c3b7afa97bfc3d7001": 9, - "590c657e86f77412b013051d": 39, - "5755383e24597772cb798966": 39, - "544fb25a4bdc2dfb738b4567": 380, - "60b0f93284c20f0feb453da7": 226, - "5c0fa877d174af02a012e1cf": 260, - "5d02778e86f774203e7dedbe": 41, - "5bc9c29cd4351e003562b8a3": 284, - "5e8f3423fd7471236e6e3b64": 143, - "5734773724597737fd047c14": 245, - "57347d5f245977448b40fa81": 379, - "544fb45d4bdc2dee738b4568": 121, - "5673de654bdc2d180f8b456d": 308, - "590c695186f7741e566b64a2": 43, - "5c0e531d86f7747fa23f4d42": 121, - "5af0454c86f7746bf20992e8": 157, - "57514643245977207f2c2d09": 333, - "5c10c8fd86f7743d7d706df3": 37, - "590c661e86f7741e566b646a": 100, - "5e8488fa988a8701445df1e4": 116, - "544fb37f4bdc2dee738b4567": 195, - "5ed51652f6c34d2cc26336a1": 17, - "544fb3f34bdc2d03748b456a": 52, - "5c0e533786f7747fa23f4d47": 50, - "5af0548586f7743a532b7e99": 38, - "66507eabf5ddb0818b085b68": 10, - "637b612fb7afa97bfc3d7005": 30, - "5ed5166ad380ab312177c100": 14, - "5ed515c8d380ab312177c0fa": 48, - "5fca13ca637ee0341a484f46": 22, - "5ed5160a87bb8443d10680b5": 21, - "590c678286f77426c9660122": 37, - "5ed515e03a40a50460332579": 28, - "5c0e530286f7747fa1419862": 48, - "637b620db7afa97bfc3d7009": 25, - "637b6251104668754b72f8f9": 10, - "5ed515ece452db0eb56fc028": 25, - "5d1b376e86f774252519444e": 21, - "5751a89d24597722aa0e8db0": 15, - "5fca138c2a7b221b2852a5c6": 6, - "5ed515f6915ec335206e4152": 26 - }, - "Pockets": { - "57514643245977207f2c2d09": 164, - "544fb25a4bdc2dfb738b4567": 1254, - "637b6179104668754b72f8f5": 79, - "544fb3364bdc2d34748b456a": 1031, - "5449016a4bdc2d6f028b456f": 3368, - "5c0e531286f7747fa54205c2": 148, - "544fb3f34bdc2d03748b456a": 159, - "5751435d24597720a27126d1": 213, - "5448be9a4bdc2dfd2f8b456a": 4543, - "60098af40accd37ef2175f27": 437, - "60b0f6c058e0b0481a09ad11": 842, - "57505f6224597709a92585a9": 228, - "60098ad7c2240c0fe85c570a": 325, - "5751487e245977207e26a315": 296, - "5734773724597737fd047c14": 105, - "59e3577886f774176a362503": 269, - "5c0e531d86f7747fa23f4d42": 417, - "57347d5f245977448b40fa81": 196, - "60098b1705871270cd5352a1": 119, - "62a09d3bcf4a99369e262447": 848, - "544fb6cc4bdc2d34748b456e": 224, - "544fb37f4bdc2dee738b4567": 657, - "5af0548586f7743a532b7e99": 190, - "5783c43d2459774bbe137486": 1290, - "5755356824597772cb798962": 597, - "656df4fec921ad01000481a2": 470, - "5af0454c86f7746bf20992e8": 522, - "57347d8724597744596b4e76": 256, - "5751496424597720a27126da": 249, - "57347d3d245977448f7b7f61": 228, - "5ed515f6915ec335206e4152": 90, - "5e831507ea0a7c419c2f9bd9": 410, - "60b0f93284c20f0feb453da7": 104, - "5ed515ece452db0eb56fc028": 87, - "5751a25924597722c463c472": 1175, - "5c10c8fd86f7743d7d706df3": 179, - "57347d9c245977448b40fa85": 225, - "5755383e24597772cb798966": 158, - "5e8488fa988a8701445df1e4": 423, - "57347da92459774491567cf5": 249, - "5c0e533786f7747fa23f4d47": 150, - "65815f0e647e3d7246384e14": 140, - "5ed5160a87bb8443d10680b5": 92, - "66507eabf5ddb0818b085b68": 35, - "5bc9c29cd4351e003562b8a3": 136, - "57347d692459774491567cf1": 247, - "5bc9b156d4351e00367fbce9": 77, - "5c0e534186f7747fa1419867": 170, - "590c695186f7741e566b64a2": 155, - "57347d7224597744596b4e72": 258, - "5ed515c8d380ab312177c0fa": 154, - "590c678286f77426c9660122": 161, - "637b620db7afa97bfc3d7009": 72, - "5c0e530286f7747fa1419862": 148, - "5673de654bdc2d180f8b456d": 150, - "637b6251104668754b72f8f9": 48, - "5448ff904bdc2d6f028b456e": 227, - "637b60c3b7afa97bfc3d7001": 39, - "637b612fb7afa97bfc3d7005": 72, - "575062b524597720a31c09a1": 189, - "5ed515e03a40a50460332579": 76, - "5ed51652f6c34d2cc26336a1": 96, - "5fca13ca637ee0341a484f46": 72, - "5ed5166ad380ab312177c100": 45, - "5fca138c2a7b221b2852a5c6": 44, - "5751a89d24597722aa0e8db0": 37 - }, - "Backpack": { - "544fb45d4bdc2dee738b4568": 169, - "5783c43d2459774bbe137486": 412, - "590c5f0d86f77413997acfab": 187, - "5751487e245977207e26a315": 249, - "5780cf692459777de4559321": 3, - "59e3577886f774176a362503": 215, - "57347d3d245977448f7b7f61": 236, - "6582dbe43a2e5248357dbe9a": 30, - "5af0454c86f7746bf20992e8": 156, - "656df4fec921ad01000481a2": 421, - "5d40407c86f774318526545a": 201, - "57505f6224597709a92585a9": 169, - "60098af40accd37ef2175f27": 145, - "5c0e530286f7747fa1419862": 62, - "5b86a0e586f7745b600ccb23": 1, - "5673de654bdc2d180f8b456d": 128, - "5fca138c2a7b221b2852a5c6": 15, - "5755383e24597772cb798966": 51, - "5c0fa877d174af02a012e1cf": 137, - "57347d9c245977448b40fa85": 191, - "61aa81fcb225ac1ead7957c3": 2, - "590c621186f774138d11ea29": 486, - "5448ff904bdc2d6f028b456e": 206, - "544fb25a4bdc2dfb738b4567": 446, - "5c10c8fd86f7743d7d706df3": 64, - "57514643245977207f2c2d09": 133, - "544fb6cc4bdc2d34748b456e": 183, - "6601380580e77cfd080e3418": 11, - "56dfef82d2720bbd668b4567": 23, - "5be4038986f774527d3fae60": 16, - "590c661e86f7741e566b646a": 127, - "5c6161fb2e221600113fbde5": 2, - "5a3c16fe86f77452b62de32a": 37, - "59e4cf5286f7741778269d8a": 21, - "5e8f3423fd7471236e6e3b64": 75, - "57513f9324597720a7128161": 199, - "63a39fdf1e21260da44a0256": 5, - "56dff4a2d2720bbd668b456a": 36, - "5a6086ea4f39f99cd479502f": 4, - "5751a25924597722c463c472": 384, - "56dff0bed2720bb0668b4567": 63, - "62389aaba63f32501b1b444f": 18, - "60b0f93284c20f0feb453da7": 104, - "5c3df7d588a4501f290594e5": 37, - "5efb0da7a29a85116f6ea05f": 8, - "544fb3364bdc2d34748b456a": 355, - "590c657e86f77412b013051d": 92, - "62a09f32621468534a797acb": 205, - "5ba26812d4351e003201fef1": 35, - "67069d66af4890b09f0006ec": 3, - "60098b1705871270cd5352a1": 96, - "544fb62a4bdc2dfb738b4568": 237, - "676176a162e0497044079f46": 3, - "5b2389515acfc4771e1be0c0": 1, - "65815f0e647e3d7246384e14": 113, - "5bc9b156d4351e00367fbce9": 82, - "57347d8724597744596b4e76": 208, - "5c6d450c2e221600114c997d": 1, - "5a7ad0c451dfba0013379712": 1, - "5755356824597772cb798962": 177, - "64b8f7c241772715af0f9c3d": 30, - "5751496424597720a27126da": 226, - "575062b524597720a31c09a1": 172, - "59e4d3d286f774176a36250a": 32, - "57347d7224597744596b4e72": 227, - "5780cfa52459777dfb276eb1": 17, - "5bc9c29cd4351e003562b8a3": 103, - "5751435d24597720a27126d1": 216, - "5e831507ea0a7c419c2f9bd9": 151, - "5e42c71586f7747f245e1343": 1, - "5938144586f77473c2087145": 2, - "57347d90245977448f7b7f65": 241, - "67069d8dad91f3a63c0bc2b4": 4, - "661f8995c341ea101e0d33e8": 5, - "590c695186f7741e566b64a2": 53, - "56dff216d2720bbd668b4568": 46, - "5fc275cf85fd526b824a571a": 7, - "5cc80f53e4a949000e1ea4f8": 20, - "5780cf942459777df90dcb72": 39, - "5a788068c5856700137e4c8f": 2, - "5a16b8a9fcdbcb00165aa6ca": 1, - "57347d5f245977448b40fa81": 158, - "62330b3ed4dc74626d570b95": 16, - "5d02797c86f774203f38e30a": 60, - "56dff3afd2720bba668b4567": 71, - "590c5d4b86f774784e1b9c45": 218, - "56dff061d2720bb5668b4567": 34, - "560d5e524bdc2d25448b4571": 20, - "5c0e531286f7747fa54205c2": 68, - "5b7d679f5acfc4001a5c4024": 2, - "57347da92459774491567cf5": 203, - "59e35ef086f7741777737012": 10, - "577e1c9d2459773cd707c525": 2, - "6761a6f90575f25e020816a4": 22, - "56dff338d2720bbd668b4569": 68, - "5d6e6a05a4b93618084f58d0": 28, - "5d6e68e6a4b9361c140bcfe0": 9, - "5cadf6eeae921500134b2799": 16, - "59e77a2386f7742ee578960a": 11, - "5d1b2ffd86f77425243e8d17": 1, - "5e8488fa988a8701445df1e4": 155, - "5e569a132642e66b0b68015c": 2, - "57ffa9f4245977728561e844": 4, - "57513fcc24597720a31c09a6": 189, - "64b8ee384b75259c590fa89b": 20, - "5d403f9186f7743cac3f229b": 168, - "5b7bedd75acfc43d825283f9": 5, - "5f6339d53ada5942720e2dc3": 1, - "5938603e86f77435642354f4": 41, - "57372140245977611f70ee91": 36, - "5ed515c8d380ab312177c0fa": 56, - "60098ad7c2240c0fe85c570a": 94, - "5cc80f79e4a949033c7343b2": 47, - "5ba2678ad4351e44f824b344": 19, - "63a39fd1c9b3aa4b61683efb": 8, - "59e6927d86f77411da468256": 34, - "5cc86832d7f00c000d3a6e6c": 20, - "5735ff5c245977640e39ba7e": 67, - "5e85aa1a988a8701445df1f5": 8, - "625ff2eb9f5537057932257d": 7, - "628a6678ccaab13006640e49": 3, - "5a80a29286f7742b25692012": 11, - "573601b42459776410737435": 36, - "5fbe3ffdf8b6a877a729ea82": 16, - "57513f07245977207e26a311": 331, - "619d36da53b4d42ee724fae4": 4, - "5cf638cbd7f00c06595bc936": 4, - "5c5db6652e221600113fba51": 5, - "62330c18744e5e31df12f516": 8, - "5af0548586f7743a532b7e99": 68, - "635a758bfefc88a93f021b8a": 56, - "6529370c405a5f51dd023db8": 1, - "5a3501acc4a282000d72293a": 1, - "59e68f6f86f7746c9f75e846": 19, - "64b7af5a8532cf95ee0a0dbd": 39, - "544fb37f4bdc2dee738b4567": 222, - "5f6341043ada5942720e2dc5": 2, - "5ad5d49886f77455f9731921": 37, - "5b2388675acfc4771e1be0be": 5, - "66ffea06132225f0fe061394": 6, - "5a0dc95c86f77452440fc675": 6, - "56d59d3ad2720bdb418b4577": 13, - "61713cc4d8e3106d9806c109": 1, - "670fd0a8d8d4eae4790c8187": 4, - "5448fee04bdc2dbc018b4567": 120, - "5d122e7bd7ad1a07102d6d7f": 1, - "55d35ee94bdc2d61338b4568": 19, - "564ca99c4bdc2d16268b4589": 6, - "673f0b36536d64240f01acd6": 1, - "5b4736b986f77405cb415c10": 1, - "57a0e5022459774d1673f889": 25, - "637b620db7afa97bfc3d7009": 29, - "575146b724597720a27126d5": 231, - "62a09ee4cf4a99369e262453": 5, - "573476f124597737e04bf328": 8, - "56742c284bdc2d98058b456d": 5, - "5737218f245977612125ba51": 33, - "56dff2ced2720bb4668b4567": 62, - "5c0e531d86f7747fa23f4d42": 147, - "5a26ac0ec4a28200741e1e18": 23, - "5d6e68c4a4b9361b93413f79": 29, - "5c0e533786f7747fa23f4d47": 51, - "59e6906286f7746c9f75e847": 36, - "5913651986f774432f15d132": 4, - "637b612fb7afa97bfc3d7005": 31, - "5a32aa0cc4a28232996e405f": 3, - "5d25a6a48abbc306c62e6310": 4, - "5938504186f7740991483f30": 24, - "59e0d99486f7744a32234762": 28, - "5cf6937cd7f00c056c53fb39": 2, - "5cc80f67e4a949035e43bbba": 16, - "64b8f7968532cf95ee0a0dbf": 33, - "5887431f2459777e1612938f": 37, - "6388c4ac8d895f557a0c6515": 6, - "5d25a4a98abbc30b917421a4": 2, - "5a269f97c4a282000b151807": 12, - "6698c9e07356874dfe0a0b88": 9, - "6513f0a194c72326990a3868": 2, - "576fd4ec2459777f0b518431": 3, - "5d1c819a86f774771b0acd6c": 5, - "5f63405df5750b524b45f114": 2, - "5e21ca18e4d47f0da15e77dd": 2, - "5fbb978207e8a97d1f0902d3": 2, - "62ff9920fe938a24c90c10d2": 3, - "5d6e6911a4b9361bd5780d52": 19, - "560d657b4bdc2da74d8b4572": 2, - "5a26ac06c4a282000c5a90a8": 28, - "626becf9582c3e319310b837": 4, - "5734773724597737fd047c14": 80, - "65f05b9d39dab9e9ec049cfd": 4, - "5d2dc3e548f035404a1a4798": 2, - "5ef366938cef260c0642acad": 7, - "54527a984bdc2d4e668b4567": 36, - "5ed51652f6c34d2cc26336a1": 35, - "57c9a89124597704ee6faec1": 22, - "5c6beec32e221601da3578f2": 2, - "5d0378d486f77420421a5ff4": 1, - "591ee00d86f774592f7b841e": 4, - "6576f96220d53a5b8f3e395e": 23, - "55d45f484bdc2d972f8b456d": 2, - "558032614bdc2de7118b4585": 2, - "64b7af434b75259c590fa893": 47, - "5a608bf24f39f98ffc77720e": 38, - "57c69dd424597774c03b7bbc": 1, - "66992713ae08c5c29e0c4f97": 3, - "5e023e88277cce2b522ff2b1": 14, - "5947c73886f7747701588af5": 2, - "5f63407e1b231926f2329f15": 1, - "5e023e53d4353e3302577c4c": 52, - "58820d1224597753c90aeb13": 16, - "5900b89686f7744e704a8747": 14, - "5c13cef886f774072e618e82": 4, - "5734795124597738002c6176": 7, - "5e85a9a6eacf8c039e4e2ac1": 10, - "5e2af51086f7746d3f3c3402": 3, - "5c052a900db834001a66acbd": 2, - "5c0e534186f7747fa1419867": 44, - "573476d324597737da2adc13": 9, - "5ed515ece452db0eb56fc028": 27, - "5656eb674bdc2d35148b457c": 11, - "573718ba2459775a75491131": 22, - "5ed5160a87bb8443d10680b5": 24, - "5d6e6891a4b9361bd473feea": 15, - "591afe0186f77431bd616a11": 15, - "5c4eecc32e221602b412b440": 1, - "602a97060ddce744014caf6f": 2, - "61bf7b6302b3924be92fa8c3": 5, - "637b6251104668754b72f8f9": 12, - "59e6920f86f77411d82aa167": 56, - "66015dc4aaad2f54cb04c56a": 2, - "62330c40bdd19b369e1e53d1": 21, - "57347c5b245977448d35f6e1": 16, - "57347c77245977448d35f6e2": 12, - "5a26abfac4a28232980eabff": 17, - "6710cea62bb09af72f0e6bf8": 7, - "573719df2459775a626ccbc2": 38, - "57347d692459774491567cf1": 207, - "5937ee6486f77408994ba448": 24, - "5beec8ea0db834001a6f9dbf": 3, - "5c18b90d2e2216152142466b": 5, - "5d02778e86f774203e7dedbe": 66, - "5ef61964ec7f42238c31e0c1": 1, - "658199972dc4e60f6d556a2f": 28, - "5fbcc429900b1d5091531dd7": 2, - "612e0d3767085e45ef14057f": 4, - "64b8725c4b75259c590fa899": 16, - "59e6542b86f77411dc52a77a": 32, - "5b07db875acfc40dc528a5f6": 1, - "593d1fa786f7746da62d61ac": 4, - "57616a9e2459773c7a400234": 5, - "58272b392459774b4c7b3ccd": 4, - "6581998038c79576a2569e11": 24, - "5df8f541c41b2312ea3335e3": 1, - "63a39fc0af870e651d58e6ae": 3, - "6582dc4b6ba9e979af6b79f4": 11, - "64b7af734b75259c590fa895": 39, - "67586c61a0c49554ed0bb4a8": 1, - "590c5a7286f7747884343aea": 11, - "54527ac44bdc2d36668b4567": 24, - "63a71eb5b7f4570d3a29316b": 1, - "5a9d6d00a2750c5c985b5305": 1, - "5bc5a372d4351e44f824d17f": 4, - "59e6658b86f77411d949b250": 16, - "6196365d58ef8c428c287da1": 16, - "5e023e6e34d52a55c3304f71": 28, - "5fca13ca637ee0341a484f46": 30, - "5a0eb38b86f774153b320eb0": 2, - "5c5db5c62e22160012542255": 1, - "5656d7c34bdc2d9d198b4587": 44, - "62987e26a77ec735f90a2995": 8, - "5ed515f6915ec335206e4152": 28, - "5e2af47786f7746d404f3aaa": 7, - "58864a4f2459770fcc257101": 25, - "5d6fc87386f77449db3db94e": 3, - "5c13cd2486f774072c757944": 6, - "5909e99886f7740c983b9984": 4, - "62e2a7138e1ac9380579c122": 2, - "5a9d6d21a2750c00137fa649": 3, - "587e08ee245977446b4410cf": 1, - "58dd3ad986f77403051cba8f": 36, - "623c2f4242aee3103f1c44b7": 4, - "57cffe20245977632f391a9d": 4, - "615d8df08004cc50514c3236": 1, - "56d59948d2720bb7418b4582": 1, - "5bbdb83fd4351e44f824c44b": 3, - "5c88f24b2e22160bc12c69a6": 1, - "5780d07a2459777de4559324": 2, - "5ba26844d4351e00334c9475": 4, - "66a0d1e0ed648d72fe064d06": 20, - "64b6979341772715af0f9c39": 32, - "576a5ed62459771e9c2096cb": 6, - "5cf8f3b0d7f00c00217872ef": 1, - "5ede475339ee016e8c534742": 24, - "57cff947245977638e6f2a19": 2, - "634eba08f69c710e0108d386": 4, - "58272d7f2459774f6311ddfd": 7, - "615d8faecabb9b7ad90f4d5d": 1, - "6087e663132d4d12c81fd96b": 1, - "5a6f5f078dc32e00094b97dd": 2, - "618ba92152ecee1505530bd3": 4, - "5beec8b20db834001961942a": 3, - "5d80ca9086f774403a401e40": 2, - "5a0eeb8e86f77461257ed71a": 2, - "560d61e84bdc2da74d8b4571": 3, - "5ea034eb5aad6446a939737b": 7, - "5a13ef7e86f7741290491063": 1, - "646372518610c40fc20204e8": 3, - "601aa3d2b2bcb34913271e6d": 9, - "593aa4be86f77457f56379f8": 26, - "56dff421d2720b5f5a8b4567": 42, - "61962b617c6c7b169525f168": 16, - "5a27bad7c4a282000b15184b": 3, - "5dfa3d7ac41b2312ea33362a": 3, - "5fc0f9cbd6fa9c00c571bb90": 2, - "647dd2b8a12ebf96c3031655": 2, - "5c0d56a986f774449d5de529": 14, - "5d6e69c7a4b9360b6c0d54e4": 17, - "60194943740c5d77f6705eea": 14, - "5ed5166ad380ab312177c100": 15, - "623c3c1f37b4b31470357737": 2, - "5c7fc87d2e221644f31c0298": 3, - "5ed515e03a40a50460332579": 27, - "5fb6564947ce63734e3fa1da": 5, - "5733279d245977289b77ec24": 4, - "5bc9be8fd4351e00334cae6e": 3, - "5c0d591486f7744c505b416f": 18, - "64b8f7b5389d7ffd620ccba2": 25, - "5a0ee62286f774369454a7ac": 4, - "5926c3b286f774640d189b6b": 5, - "673ddbb567c759b3c90e5f76": 3, - "58889c7324597754281f9439": 1, - "61962d879bb3d20b0946d385": 16, - "544fb3f34bdc2d03748b456a": 58, - "5d8e0db586f7744450412a42": 2, - "5a0ec6d286f7742c0b518fb5": 2, - "59e655cb86f77411dc52a77b": 17, - "5fc0f9b5d724d907e2077d82": 4, - "618167616ef05c2ce828f1a8": 2, - "5a0f045e86f7745b0f0d0e42": 2, - "5448c1d04bdc2dff2f8b4569": 4, - "5798a2832459774b53341029": 15, - "590c678286f77426c9660122": 47, - "5a9fc7e6a2750c0032157184": 1, - "61714eec290d254f5e6b2ffc": 2, - "67110d8d388bded67304ceb4": 3, - "5d03794386f77420415576f5": 1, - "5780d0532459777a5108b9a2": 7, - "5a0f075686f7745bcc42ee12": 5, - "5fc382b6d6fa9c00c571bbc3": 2, - "5d6e68dea4b9361bcc29e659": 11, - "62330bfadc5883093563729b": 8, - "661e53149c8b4dadef008579": 2, - "57347b8b24597737dd42e192": 6, - "56742c2e4bdc2d95058b456d": 1, - "63a39c69af870e651d58e6aa": 3, - "5d19cd96d7ad1a4a992c9f52": 1, - "590c31c586f774245e3141b2": 3, - "5672cb124bdc2d1a0f8b4568": 9, - "6389c6c7dbfd5e4b95197e68": 2, - "59136a4486f774447a1ed172": 13, - "5d6e6a42a4b9364f07165f52": 14, - "5d6e6a5fa4b93614ec501745": 10, - "6272370ee4013c5d7e31f418": 2, - "59e6918f86f7746c9f75e849": 22, - "6269545d0e57f218e4548ca2": 5, - "5d120a28d7ad1a1c8962e295": 4, - "5addbb945acfc4001a5fc44e": 2, - "5d6e68a8a4b9360b6c0d54e2": 19, - "668032ba74b8f2050c0b917d": 1, - "59e3606886f77417674759a5": 2, - "60391b0fb847c71012789415": 2, - "5c6d10fa2e221600106f3f23": 2, - "5c82342f2e221644f31c060e": 6, - "5d0a3a58d7ad1a669c15ca14": 12, - "588226ef24597767af46e39c": 3, - "5beec2820db834001b095426": 3, - "5a0d716f1526d8000d26b1e2": 2, - "5cc80f8fe4a949033b0224a2": 51, - "5c5db6552e2216001026119d": 1, - "67614a31062e6212f5058c38": 2, - "619666f4af1f5202c57a952d": 2, - "5d1b376e86f774252519444e": 19, - "5b363dd25acfc4001a598fd2": 1, - "62a09cb7a04c0c5c6e0a84f8": 3, - "57347baf24597738002c6178": 2, - "63076701a987397c0816d21b": 4, - "5914578086f774123569ffa4": 10, - "59e0bed186f774156f04ce84": 2, - "57486e672459770abd687134": 1, - "56dff4ecd2720b5f5a8b4568": 10, - "544a38634bdc2d58388b4568": 3, - "57371e4124597760ff7b25f1": 30, - "5d6e695fa4b936359b35d852": 16, - "5cc7012ae4a949001252b43e": 2, - "5c0696830db834001d23f5da": 2, - "5d6e6869a4b9361c140bcfde": 11, - "5efb0e16aeb21837e749c7ff": 9, - "628a66b41d5e41750e314f34": 3, - "5a33b2c9c4a282000c5a9511": 1, - "5c0d688c86f77413ae3407b2": 12, - "5c0d5ae286f7741e46554302": 23, - "637b6179104668754b72f8f5": 23, - "5c18b9192e2216398b5a8104": 3, - "56ea7293d2720b8d4b8b45ba": 11, - "5e023d34e8a400319a28ed44": 9, - "67586af7036d7f3da60c3612": 1, - "5c78f2792e221600106f4683": 1, - "5448ba0b4bdc2d02308b456c": 4, - "6065878ac9cf8012264142fd": 3, - "63a71e781031ac76fe773c7d": 10, - "5b1fb3e15acfc4001637f068": 5, - "5cc80f38e4a949001152b560": 18, - "574dad8024597745964bf05c": 2, - "619b5db699fb192e7430664f": 1, - "5c90c3622e221601da359851": 4, - "5ea2a8e200685063ec28c05a": 12, - "59e358a886f7741776641ac3": 3, - "57347c1124597737fb1379e3": 11, - "5c0d5e4486f77478390952fe": 19, - "651580dc71a4f10aec4b6056": 3, - "5cf518cfd7f00c065b422214": 1, - "5888988e24597752fe43a6fa": 3, - "593d493f86f7745e6b2ceb22": 2, - "5d6e68d1a4b93622fe60e845": 9, - "5c0fafb6d174af02a96260ba": 1, - "5aaa5e60e5b5b000140293d6": 3, - "5cadf6ddae9215051e1c23b2": 10, - "5ede4739e0350d05467f73e8": 8, - "590a391c86f774385a33c404": 3, - "5737207f24597760ff7b25f2": 24, - "66a0d1f88486c69fce00fdf6": 18, - "59e690b686f7746c9f75e848": 15, - "5ad5d20586f77449be26d877": 13, - "5efb0cabfb3e451d70735af5": 13, - "5fc382a9d724d907e2077dab": 7, - "5d1b33a686f7742523398398": 32, - "5cadd954ae921500103bb3c2": 9, - "5d4406a8a4b9361e4f6eb8b7": 1, - "6415d33eda439c6a97048b5b": 3, - "5d1b385e86f774252167b98a": 1, - "590a3b0486f7743954552bdb": 6, - "5e023cf8186a883be655e54f": 15, - "6582dc5740562727a654ebb1": 2, - "673f0a38259f5945d70e43a6": 1, - "5894a05586f774094708ef75": 3, - "61695095d92c473c7702147a": 2, - "5efb0fc6aeb21837e749c801": 8, - "6601546f86889319850bd566": 27, - "5efb0d4f4bc50b58e81710f3": 21, - "6259bdcabd28e4721447a2aa": 2, - "5ad5ccd186f774446d5706e9": 4, - "590c2b4386f77425357b6123": 5, - "676149fbe2cf1419500357ee": 4, - "5e85a9f4add9fe03027d9bf1": 3, - "647de824196bf69818044c93": 1, - "5913877a86f774432f15d444": 2, - "5cf50850d7f00c056e24104c": 1, - "5fbbaa86f9986c4cff3fe5f6": 1, - "6513f1798cb24472490ee331": 1, - "59148c8a86f774197930e983": 11, - "669924a69950f5f4cd060295": 5, - "5a38ebd9c4a282000d722a5b": 12, - "66ffc2ecfe9b3825960652f7": 2, - "5f3e7801153b8571434a924c": 3, - "5a1452ee86f7746f33111763": 2, - "5bb20de5d4351e0035629e59": 2, - "58aeaaa886f7744fc1560f81": 1, - "57371aab2459775a77142f22": 13, - "637b60c3b7afa97bfc3d7001": 14, - "5d947d4e86f774447b415895": 1, - "634f02331f9f536910079b51": 1, - "5b222d405acfc400153af4fe": 1, - "5f2aa4559b44de6b1b4e68d1": 4, - "55d480c04bdc2d1d4e8b456a": 3, - "5938994586f774523a425196": 18, - "5d0236dad7ad1a0940739d29": 3, - "5c6d710d2e22165df16b81e7": 1, - "5c925fa22e221601da359b7b": 7, - "63a71e922b25f7513905ca20": 2, - "5c0505e00db834001b735073": 1, - "64b7bbb74b75259c590fa897": 15, - "5fc382c1016cce60e8341b20": 14, - "5bffec120db834001c38f5fa": 2, - "5b7be4645acfc400170e2dcc": 2, - "5cadc2e0ae9215051e1c21e7": 1, - "5a7afa25e899ef00135e31b0": 4, - "6076c1b9f2cb2e02a42acedc": 2, - "590c595c86f7747884343ad7": 3, - "5eff09cd30a7dc22fd1ddfed": 6, - "5aaf8a0be5b5b00015693243": 4, - "5addc7db5acfc4001669f279": 1, - "5d25d0ac8abbc3054f3e61f7": 1, - "5b7d678a5acfc4001a5c4022": 2, - "5a8036fb86f77407252ddc02": 14, - "647def638295ebcb5b02f05b": 3, - "5ce69cbad7f00c00b61c5098": 3, - "61a6444b8c141d68246e2d2f": 7, - "5a966ec8a2750c00171b3f36": 1, - "56ea8222d2720b69698b4567": 1, - "5a32aa8bc4a2826c6e06d737": 3, - "588226d124597767ad33f787": 5, - "67405e3b83ac5c69ae025406": 1, - "64ccc1ec1779ad6ba200a137": 2, - "626a9cb151cb5849f6002890": 1, - "5a0ea69f86f7741cd5406619": 6, - "5c87ca002e221600114cb150": 5, - "5cadf6e5ae921500113bb973": 26, - "619636be6db0f2477964e710": 10, - "5fc4b97bab884124df0cd5e3": 1, - "5cc86840d7f00c002412c56c": 22, - "61840bedd92c473c77021635": 3, - "63a39cb1c9b3aa4b61683ee2": 2, - "5b7bef5d5acfc43bca7067a3": 1, - "651a8e529829226ceb67c319": 5, - "5d40412b86f7743cb332ac3a": 4, - "5c06779c86f77426e00dd782": 10, - "66ffe5edfe9b38259606530d": 4, - "5c6c2c9c2e2216000f2002e4": 4, - "676177591f08ed5e8800b7a9": 6, - "5a7ad74e51dfba0015068f45": 4, - "6699249f3c4fda6471005cba": 5, - "612e0cfc8004cc50514c2d9e": 1, - "62e7e7bbe6da9612f743f1e0": 5, - "57cffddc24597763133760c6": 2, - "5b3f7c005acfc4704b4a1de8": 1, - "59e0be5d86f7742d48765bd2": 2, - "5a7c74b3e899ef0014332c29": 3, - "58d2946c86f7744e271174b5": 6, - "59e3658a86f7741776641ac4": 3, - "59ecc28286f7746d7a68aa8c": 1, - "591383f186f7744a4c5edcf3": 11, - "6165ac8c290d254f5e6b2f6c": 3, - "66a0d1c87d0d369e270bb9de": 13, - "5b84038986f774774913b0c1": 2, - "5f6336bbda967c74a42e9932": 1, - "5fd20ff893a8961fc660a954": 18, - "634eff66517ccc8a960fc735": 2, - "63888bbd28e5cc32cc09d2b6": 2, - "5d95d6fa86f77424484aa5e9": 3, - "5d6e689ca4b9361bc8618956": 7, - "607ffb988900dc2d9a55b6e4": 3, - "5d6e6806a4b936088465b17e": 16, - "5e81f423763d9f754677bf2e": 20, - "601949593ae8f707c4608daa": 4, - "56dff026d2720bb8668b4567": 20, - "5a0f006986f7741ffd2fe484": 2, - "5da743f586f7744014504f72": 1, - "5d00e0cbd7ad1a6c6566a42d": 3, - "665edce564fb556f940ab32a": 1, - "57acb6222459771ec34b5cb0": 2, - "668031ffe3e7eb26e8004cdd": 3, - "63a39c7964283b5e9c56b280": 12, - "62811e335631d45211793c95": 2, - "5c791e872e2216001219c40a": 2, - "58949edd86f77409483e16a9": 7, - "5c5db6f82e2216003a0fe914": 2, - "5a37cb10c4a282329a73b4e7": 4, - "67110d06723c2733410161e8": 5, - "5c12688486f77426843c7d32": 2, - "5cc9b815d7f00c000e2579d6": 2, - "5c5db5f22e2216000e5e47e8": 1, - "576a7c512459771e796e0e17": 12, - "5d440625a4b9361eec4ae6c5": 3, - "624c29ce09cd027dff2f8cd7": 4, - "5a144dfd86f77445cb5a0982": 1, - "544909bb4bdc2d6f028b4577": 2, - "5a33bab6c4a28200741e22f8": 2, - "5a9fb739a2750c003215717f": 2, - "5ba26835d4351e0035628ff5": 9, - "5df917564a9f347bc92edca3": 1, - "64ccc1d4a0f13c24561edf27": 2, - "5e2af4a786f7746d3f3c3400": 5, - "56742c324bdc2d150f8b456d": 3, - "5e2af41e86f774755a234b67": 3, - "61aa5aed32a4743c3453d319": 2, - "6272874a6c47bd74f92e2087": 2, - "5c5db6ee2e221600113fba54": 3, - "5da5cdcd86f774529238fb9b": 1, - "5d4aaa54a4b9365392071170": 1, - "5c07dd120db834001c39092d": 1, - "5a78830bc5856700137e4c90": 6, - "6087e2a5232e5a31c233d552": 2, - "6711107e1ad01bb88705347e": 2, - "674fe89a4472d471fb0f07d8": 2, - "5ad5cfbd86f7742c825d6104": 4, - "66ffaab91f7492c901027bb8": 2, - "5a145ebb86f77458f1796f05": 2, - "625ff31daaaa8c1130599f64": 3, - "5a398b75c4a282000a51a266": 1, - "5bfebc530db834001d23eb65": 3, - "67614a225152c0eaed08ec86": 2, - "5d3eb5eca4b9363b1f22f8e4": 1, - "5b057b4f5acfc4771e1bd3e9": 6, - "5c5db5fc2e2216000f1b2842": 2, - "58c157be86f77403c74b2bb6": 4, - "57fd23e32459772d0805bcf1": 4, - "5c0695860db834001b735461": 4, - "5f647f31b6238e5dd066e196": 9, - "5734779624597737e04bf329": 5, - "5af0534a86f7743b6f354284": 4, - "57a0dfb82459774d3078b56c": 7, - "5ab372a310e891001717f0d8": 7, - "57d152ec245977144076ccdf": 3, - "55d484b44bdc2d1d4e8b456d": 2, - "57c5ac0824597754771e88a9": 5, - "57ade1442459771557167e15": 1, - "5a32a064c4a28200741e22de": 1, - "63a39f18c2d53c2c6839c1d3": 2, - "5d6e6a53a4b9361bd473feec": 16, - "590a386e86f77429692b27ab": 4, - "576a63cd2459771e796e0e11": 1, - "5a0eff2986f7741fd654e684": 2, - "6706a159c67236b2f703bb95": 1, - "5d1340bdd7ad1a0e8d245aab": 2, - "5cde739cd7f00c0010373bd3": 2, - "618a75f0bd321d49084cd399": 5, - "63969c9019971040b005049b": 3, - "590a3cd386f77436f20848cb": 6, - "5c1bc7752e221602b1779b34": 2, - "5c066e3a0db834001b7353f0": 2, - "5bfea7ad0db834001c38f1ee": 4, - "5bb20e70d4351e0035629f8f": 3, - "655df24fdf80b12750626d0a": 3, - "571a279b24597720b4066566": 1, - "5addbfe15acfc4001a5fc58b": 1, - "64ccc2111779ad6ba200a139": 5, - "574eb85c245977648157eec3": 11, - "622efbcb99f4ea1a4d6c9a15": 1, - "5d6e69b9a4b9361bc8618958": 21, - "5913915886f774123603c392": 3, - "66507eabf5ddb0818b085b68": 16, - "5ea17bbc09aa976f2e7a51cd": 5, - "651a8bf3a8520e48047bf708": 3, - "5c1cdd512e22161b267d91ae": 1, - "5dfe14f30b92095fd441edaf": 2, - "5e569a2e56edd02abe09f280": 2, - "5913611c86f77479e0084092": 21, - "5bbde41ed4351e003562b038": 1, - "5c0009510db834001966907f": 1, - "5a0ea79b86f7741d4a35298e": 2, - "66866f622a2296a8d9099639": 5, - "61a64428a8c6aa1b795f0ba1": 1, - "5a13f46386f7741dd7384b04": 2, - "626a8ae89e664a2e2a75f409": 2, - "59e4d24686f7741776641ac7": 5, - "655dccfdbdcc6b5df71382b6": 4, - "57ffb0e42459777d047111c5": 2, - "55d4ae6c4bdc2d8b2f8b456e": 1, - "64b9e265c94d0d15c5027e35": 6, - "59c1383d86f774290a37e0ca": 2, - "64785e7c19d732620e045e15": 2, - "590c2d8786f774245b1f03f3": 2, - "590de7e986f7741b096e5f32": 1, - "676177b09cfcc4c25b027446": 3, - "62850c28da09541f43158cca": 3, - "618178aa1cb55961fa0fdc80": 3, - "660137ef76c1b56143052be8": 9, - "63a39e49cd6db0635c1975fc": 2, - "5c0102b20db834001d23eebc": 5, - "5d6e68b3a4b9361bca7e50b5": 11, - "5aa66be6e5b5b0214e506e97": 4, - "5894a2c386f77427140b8342": 4, - "5d80c8f586f77440373c4ed0": 2, - "590a3c0a86f774385a33c450": 5, - "5dfa3d2b0dee1b22f862eade": 2, - "64ccc24de61ea448b507d34d": 3, - "5bfe86a20db834001d23e8f7": 2, - "5c61627a2e22160012542c55": 3, - "5b30b0dc5acfc400153b7124": 2, - "5d00ef6dd7ad1a0940739b16": 1, - "5d80c66d86f774405611c7d6": 1, - "62a091170b9d3c46de5b6cf2": 1, - "62389bc9423ed1685422dc57": 1, - "5a0eeb1a86f774688b70aa5c": 4, - "669fa435803b94fb5d0e3a76": 1, - "5a9fbb84a2750c00137fa685": 4, - "5cbdc23eae9215001136a407": 1, - "5c06782b86f77426df5407d2": 5, - "5a13eebd86f7746fd639aa93": 2, - "64ccc206793ca11c8f450a38": 3, - "595cf16b86f77427440c32e2": 3, - "57347c93245977448d35f6e3": 4, - "5c0530ee86f774697952d952": 1, - "5672cb304bdc2dc2088b456a": 3, - "5e2af29386f7746d4159f077": 1, - "5a957c3fa2750c00137fa5f7": 2, - "668fe62ac62660a5d8071446": 15, - "5b3a16655acfc40016387a2a": 3, - "5888945a2459774bf43ba385": 3, - "5fbe7618d6fa9c00c571bb6c": 2, - "57347cd0245977445a2d6ff1": 6, - "5bc9b355d4351e6d1509862a": 1, - "5d1b309586f77425227d1676": 7, - "5a9fbb74a2750c0032157181": 5, - "5f0596629e22f464da6bbdd9": 17, - "59d625f086f774661516605d": 1, - "5c99f3592e221644fc633070": 2, - "5bc5a351d4351e003477a414": 1, - "59bfc5c886f7743bf6794e62": 1, - "5afd7e095acfc40017541f61": 3, - "63a39f6e64283b5e9c56b289": 4, - "5b7be46e5acfc400170e2dcf": 2, - "5c0111ab0db834001966914d": 1, - "573477e124597737dd42e191": 3, - "5ac66bea5acfc43b321d4aec": 1, - "6194f5d418a3974e5e7421ef": 3, - "5bfe86df0db834001b734685": 1, - "5c05413a0db834001c390617": 2, - "59fb137a86f7740adb646af1": 1, - "5c1e2d1f86f77431e9280bee": 5, - "5c0d668f86f7747ccb7f13b2": 10, - "61965d9058ef8c428c287e0d": 2, - "59136e1e86f774432f15d133": 5, - "62a09ec84f842e1bd12da3f2": 5, - "6196255558ef8c428c287d1c": 3, - "5a0c59791526d8dba737bba7": 2, - "5a718b548dc32e000d46d262": 4, - "5d135e83d7ad1a21b83f42d8": 1, - "5a0f068686f7745b0d4ea242": 4, - "5780cda02459777b272ede61": 2, - "5df8e085bb49d91fb446d6a8": 3, - "59faf98186f774067b6be103": 2, - "5ede475b549eed7c6d5c18fb": 5, - "5a0d63621526d8dba31fe3bf": 3, - "63a39f08cd6db0635c197600": 3, - "5c7e8fab2e22165df16b889b": 2, - "5ede474b0c226a66f5402622": 4, - "571659bb2459771fb2755a12": 2, - "57dbb57e2459774673234890": 3, - "591382d986f774465a6413a7": 9, - "591af10186f774139d495f0e": 1, - "66993733f74fef4dfd0b04ff": 3, - "5b3f7bf05acfc433000ecf6b": 3, - "5a33cae9c4a28232980eb086": 3, - "5c7954d52e221600106f4cc7": 1, - "6698c8b7710a4525fe0e9e55": 4, - "5cf508bfd7f00c056e24104e": 2, - "5c1e2a1e86f77431ea0ea84c": 4, - "57a3459f245977764a01f703": 3, - "5cc9ad73d7f00c000e2579d4": 4, - "5d3ef698a4b9361182109872": 2, - "5b7d63b75acfc400170e2f8a": 1, - "5bb20e0ed4351e3bac1212dc": 2, - "5b7bebc85acfc43bca706666": 2, - "5e01ea19e9dc277128008c0b": 1, - "5b3a08b25acfc4001754880c": 2, - "648ae3e356c6310a830fc291": 1, - "5cf79389d7f00c10941a0c4d": 4, - "57cffcd624597763133760c5": 1, - "670fd03dc424cf758f006946": 3, - "58d39b0386f77443380bf13c": 1, - "5e569a0156edd02abe09f27d": 1, - "5b7be2345acfc400196d524a": 2, - "5d80cb5686f77440545d1286": 3, - "5cf50fc5d7f00c056c53f83c": 1, - "5bc09a30d4351e00367fb7c8": 3, - "5d2c772c48f0355d95672c25": 2, - "5bffe7c50db834001d23ece1": 3, - "5e01e9e273d8eb11426f5bc3": 1, - "5bb20da5d4351e0035629dbf": 2, - "5d4405f0a4b9361e6a4e6bd9": 1, - "55d3632e4bdc2d972f8b4569": 3, - "5d443f8fa4b93678dd4a01aa": 1, - "618a5d5852ecee1505530b2a": 4, - "61aa5ba8018e9821b7368da9": 2, - "5c1bc5af2e221602b412949b": 1, - "640b20359ab20e15ee445fa9": 1, - "5fb655b748c711690e3a8d5a": 3, - "676177df1f08ed5e8800b7ae": 3, - "5d8e15b686f774445103b190": 4, - "67506ca81f18589016006aa6": 9, - "5d80cd1a86f77402aa362f42": 1, - "5a0ea64786f7741707720468": 4, - "5d1b32c186f774252167a530": 2, - "59e36c6f86f774176c10a2a7": 6, - "5926f2e086f7745aae644231": 1, - "67614a3ce2cf1419500357f4": 2, - "5cbdaf89ae9215000e5b9c94": 2, - "58ac1bf086f77420ed183f9f": 2, - "62307b7b10d2321fa8741921": 2, - "5d0a3e8cd7ad1a6f6a3d35bd": 3, - "5d025cc1d7ad1a53845279ef": 1, - "56eabf3bd2720b75698b4569": 1, - "5f0c892565703e5c461894e9": 6, - "5a7ad2e851dfba0016153692": 2, - "6194f017ed0429009f543eaa": 3, - "6698c9ed36ba38d291017713": 8, - "5c920e902e221644f31c3c99": 1, - "623c3be0484b5003161840dc": 1, - "615d8eb350224f204c1da1cf": 2, - "5a0ee76686f7743698200d5c": 4, - "647dba3142c479dde701b654": 1, - "5e21a3c67e40bd02257a008a": 1, - "62389be94d5d474bf712e709": 5, - "55d485be4bdc2d962f8b456f": 1, - "59fc48e086f77463b1118392": 1, - "590a358486f77429692b2790": 4, - "5df8a72c86f77412640e2e83": 2, - "5b7be4575acfc400161d0832": 3, - "59e35cbb86f7741778269d83": 4, - "5e2af00086f7746d3f3c33f7": 5, - "5a789261c5856700186c65d3": 2, - "66ffeab4ab3336cc01063833": 1, - "5d80cab086f77440535be201": 1, - "5751a89d24597722aa0e8db0": 6, - "5a9548c9159bd400133e97b3": 2, - "5e2aedd986f7746d404f3aa4": 3, - "590c2c9c86f774245b1f03f2": 2, - "5a787f25c5856700186c4ab9": 1, - "59f99a7d86f7745b134aa97b": 3, - "5fc3e466187fea44d52eda90": 3, - "5d1340b3d7ad1a0b52682ed7": 3, - "5d40419286f774318526545f": 1, - "5734770f24597738025ee254": 8, - "5e2aef7986f7746d3f3c33f5": 2, - "66ffe2fbab3336cc0106382b": 6, - "612e0e3c290d254f5e6b291d": 2, - "5a34fbadc4a28200741e230a": 3, - "661e52e29c8b4dadef008577": 3, - "5dfe6104585a0c3e995c7b82": 3, - "5734781f24597737e04bf32a": 7, - "5c82343a2e221644f31c0611": 2, - "57cffcdd24597763f5110006": 1, - "5d80ccac86f77470841ff452": 2, - "56ea70acd2720b844b8b4594": 5, - "62987da96188c076bc0d8c51": 3, - "648afce7ec6bb25b2608defb": 1, - "609b9e31506cf869cf3eaf41": 2, - "599860ac86f77436b225ed1a": 1, - "59d790f486f77403cb06aec6": 2, - "5d1b392c86f77425243e98fe": 3, - "633a98eab8b0506e48497c1a": 2, - "5bbdb870d4351e00367fb67d": 3, - "59136f6f86f774447a1ed173": 2, - "570fd721d2720bc5458b4596": 2, - "5cf13123d7f00c1085616a50": 2, - "64ccc1f4ff54fb38131acf27": 4, - "573475fb24597737fb1379e1": 5, - "606ee5c81246154cad35d65e": 1, - "60b0f7057897d47c5b04ab94": 1, - "5b7bef9c5acfc43d102852ec": 4, - "5c6d10e82e221601da357b07": 1, - "5fc4b992187fea44d52edaa9": 4, - "63a399193901f439517cafb6": 1, - "5c6d42cb2e2216000e69d7d1": 3, - "5bfd4cd60db834001c38f095": 2, - "66ffe811f5d758d71101e89a": 2, - "5dff772da3651922b360bf91": 7, - "5c503ac82e221602b21d6e9a": 3, - "5827272a24597748c74bdeea": 3, - "60391a8b3364dc22b04d0ce5": 2, - "5d0376a486f7747d8050965c": 3, - "5d1b371186f774253763a656": 2, - "59e35abd86f7741778269d82": 2, - "5ac66c5d5acfc4001718d314": 2, - "67110d6fa71d1f123d021cd3": 2, - "5a0060fc86f7745793204432": 4, - "59c63b4486f7747afb151c1c": 3, - "5649d9a14bdc2d79388b4580": 7, - "590c5c9f86f77477c91c36e7": 4, - "5b4335ba86f7744d2837a264": 7, - "5926d33d86f77410de68ebc0": 4, - "5b30bc165acfc40016387293": 1, - "56ea7165d2720b6e518b4583": 1, - "619621a4de3cdf1d2614a7a7": 4, - "57c55f172459772d27602381": 1, - "6193d3149fb0c665d5490e32": 2, - "673cbdfad0453ba50c0f76d6": 3, - "57ae0171245977343c27bfcf": 6, - "630769c4962d0247b029dc60": 1, - "62e7c98b550c8218d602cbb4": 1, - "5c5952732e2216398b5abda2": 2, - "5a9d6d34a2750c00141e07da": 1, - "5e2af37686f774755a234b65": 1, - "63a71ed21031ac76fe773c7f": 1, - "5d80c6fc86f774403a401e3c": 1, - "5a7ad55551dfba0015068f42": 1, - "676175bb48fa5c377e06fc36": 1, - "618b9671d14d6d5ab879c5ea": 4, - "619cbf476b8a1b37a54eebf8": 3, - "6196364158ef8c428c287d9f": 9, - "5ad7242b86f7740a6a3abd43": 3, - "5d80c78786f774403a401e3e": 4, - "59fb375986f7741b681b81a6": 1, - "5d947d3886f774447b415893": 2, - "6113d6c3290d254f5e6b27db": 2, - "5d0377ce86f774186372f689": 2, - "5af0561e86f7745f5f3ad6ac": 2, - "5c7e5f112e221600106f4ede": 1, - "5a13ef0686f7746e5a411744": 3, - "6764139c44b3c96e7b0e2f7b": 3, - "5a01c29586f77474660c694c": 3, - "590c346786f77423e50ed342": 5, - "6494094948796d891603e59f": 3, - "625eb0faa6e3a82193267ad9": 2, - "5a7033908dc32e000a311392": 1, - "58d2912286f7744e27117493": 2, - "5d1b3a5d86f774252167ba22": 3, - "5e2aee0a86f774755a234b62": 1, - "63f4ba71f31d4a33b87bd046": 1, - "606f263a8900dc2d9a55b68d": 2, - "5a13ee1986f774794d4c14cd": 4, - "59148f8286f7741b951ea113": 2, - "5d15ce51d7ad1a1eff619092": 4, - "5d9f1fa686f774726974a992": 2, - "5a144bdb86f7741d374bbde0": 2, - "6516e9d7e239bd0c487e3766": 1, - "5998517986f7746017232f7e": 2, - "5ae35b315acfc4001714e8b0": 3, - "587df583245977373c4f1129": 1, - "63f5feead259b42f0b4d6d0f": 1, - "5d1b31ce86f7742523398394": 1, - "5ef3448ab37dfd6af863525c": 1, - "609a4b4fe2ff132951242d04": 2, - "5cc9bcaed7f00c011c04e179": 2, - "619cc01e0a7c3a1a2731940c": 3, - "6516b129609aaf354b34b3a8": 5, - "59db7eed86f77461f8380365": 2, - "5cf67cadd7f00c065a5abab7": 3, - "655cb6b5d680a544f30607fa": 1, - "5d1b327086f7742525194449": 2, - "66992f4db9f31ddda10dd1c8": 3, - "57af48872459771f0b2ebf11": 3, - "64ccc268c41e91416064ebc7": 2, - "57ffb0062459777a045af529": 2, - "676176b762e0497044079f49": 4, - "5b099ac65acfc400186331e1": 3, - "628120fd5631d45211793c9f": 1, - "5e217ba4c1434648c13568cd": 1, - "5a145d7b86f7744cbb6f4a13": 2, - "62a0a098de7ac8199358053b": 2, - "6686717ffb75ee4a5e02eb19": 5, - "5a70366c8dc32e001207fb06": 3, - "59db3a1d86f77429e05b4e92": 2, - "62a0a043cf4a99369e2624a5": 2, - "5cc9c20cd7f00c001336c65d": 1, - "56ea6fafd2720b844b8b4593": 3, - "5d7b6bafa4b93652786f4c76": 4, - "5672cb724bdc2dc2088b456b": 3, - "570fd6c2d2720bc6458b457f": 1, - "5ad5d64486f774079b080af8": 3, - "5a787ebcc5856700142fdd98": 1, - "606f262c6d0bd7580617bafa": 1, - "670fd1cc95c92bfc8e0bea39": 3, - "571a28e524597720b4066567": 3, - "5bbdb8bdd4351e4502011460": 2, - "6415c694da439c6a97048b56": 1, - "5e2af4d286f7746d4159f07a": 5, - "5b3b99475acfc432ff4dcbee": 2, - "5a33ca0fc4a282000d72292f": 1, - "660ea4453786cc0af808a1be": 1, - "6567e7681265c8a131069b0f": 4, - "5b800e9286f7747a8b04f3ff": 4, - "615d8f5dd92c473c770212ef": 2, - "5bbdb811d4351e45020113c7": 2, - "63ac5c9658d0485fc039f0b8": 1, - "5b43575a86f77424f443fe62": 3, - "5c878e9d2e2216000f201903": 1, - "5cf54404d7f00c108840b2ef": 5, - "5648ae314bdc2d3d1c8b457f": 2, - "57ac965c24597706be5f975c": 2, - "67614a0be889e1972605d6c0": 3, - "602e620f9b513876d4338d9a": 3, - "5c5db6302e2216000e5e47f0": 2, - "5d4041f086f7743cac3f22a7": 2, - "673f4046259f5945d70e43ab": 2, - "5c7fb51d2e2216001219ce11": 2, - "618b9682a3884f56c957ca78": 3, - "5943ee5a86f77413872d25ec": 3, - "55d481904bdc2d8c2f8b456a": 2, - "5beec8c20db834001d2c465c": 2, - "626667e87379c44d557b7550": 2, - "584924ec24597768f12ae244": 2, - "5a0ec70e86f7742c0b518fba": 5, - "5a0eb6ac86f7743124037a28": 3, - "5df8f535bb49d91fb446d6b0": 3, - "5addbba15acfc400185c2854": 1, - "6699272a3c4fda6471005cc1": 1, - "617131a4568c120fdd29482d": 2, - "5c4ee3d62e2216152006f302": 1, - "5c079ed60db834001a66b372": 1, - "6130c3dffaa1272e43151c7d": 1, - "57ee59b42459771c7b045da5": 2, - "5cdd7685d7f00c000f260ed2": 2, - "5dfa3d45dfc58d14537c20b0": 2, - "615d8e9867085e45ef1409c6": 1, - "5c87a07c2e2216001219d4a2": 2, - "5de8ea8ffd6b4e6e2276dc35": 3, - "61aa5b7db225ac1ead7957c1": 3, - "58d39d3d86f77445bb794ae7": 2, - "66ffea456be19fd81e0ef742": 3, - "5c878ebb2e2216001219d48a": 1, - "5bb20d92d4351e00853263eb": 2, - "59fafb5d86f774067a6f2084": 3, - "5649a2464bdc2d91118b45a8": 2, - "61963a852d2c397d660036ad": 1, - "5ede7a8229445733cb4c18e2": 3, - "5e208b9842457a4a7a33d074": 1, - "5672c92d4bdc2d180f8b4567": 4, - "5a38ed75c4a28232996e40c6": 1, - "5d80c6c586f77440351beef1": 2, - "57aca93d2459771f2c7e26db": 1, - "5c0e2f5cd174af02a012cfc9": 1, - "5d80c93086f7744036212b41": 2, - "56def37dd2720bec348b456a": 2, - "5a6b5e468dc32e001207faf5": 3, - "63a39df18a56922e82001f25": 4, - "570fd79bd2720bc7458b4583": 1, - "5e2af22086f7746d3f3c33fa": 5, - "564caa3d4bdc2d17108b458e": 1, - "6193d338de3cdf1d2614a6fc": 2, - "5a16b93dfcdbcbcae6687261": 2, - "5b07dd285acfc4001754240d": 2, - "59fafc9386f774067d462453": 3, - "5caf1109ae9215753c44119f": 3, - "5c1cdd302e221602b3137250": 1, - "5a0dc45586f7742f6b0b73e3": 2, - "5d123102d7ad1a004e475fe5": 1, - "670fced86a7e274b1a0964e8": 2, - "5cc700ede4a949033c734315": 2, - "5b4736a986f774040571e998": 2, - "6576f4708ca9c4381d16cd9d": 2, - "5e023d48186a883be655e551": 3, - "5d2f213448f0355009199284": 3, - "66ffc6ceb7ff397142017c3a": 2, - "5d440b9fa4b93601354d480c": 1, - "5f63418ef5750b524b45f116": 2, - "57c55efc2459772d2c6271e7": 2, - "5e2af2bc86f7746d3f3c33fc": 5, - "573478bc24597738002c6175": 2, - "5d1b313086f77425227d1678": 4, - "5ba264f6d4351e0034777d52": 2, - "5a27b6bec4a282000e496f78": 1, - "59bffc1f86f77435b128b872": 2, - "5ede47405b097655935d7d16": 3, - "6194f41f9fb0c665d5490e75": 1, - "5b7d693d5acfc43bca706a3d": 1, - "61657230d92c473c770213d7": 2, - "5c0517910db83400232ffee5": 2, - "649ec30cb013f04a700e60fb": 4, - "5f633f791b231926f2329f13": 1, - "6576f93989f0062e741ba952": 4, - "5ad5db3786f7743568421cce": 2, - "590a373286f774287540368b": 3, - "60658776f2cb2e02a42ace2b": 2, - "5b099b7d5acfc400186331e4": 1, - "5a78832ec5856700155a6ca3": 3, - "57235b6f24597759bf5a30f1": 2, - "5a27b281c4a28200741e1e52": 2, - "6194efe07c6c7b169525f11b": 2, - "5a13f35286f77413ef1436b0": 4, - "630f27f04f3f6281050b94d7": 2, - "625ff3046d721f05d93bf2ee": 2, - "57347c2e24597744902c94a1": 2, - "5a966f51a2750c00156aacf6": 1, - "590c2e1186f77425357b6124": 1, - "5648ac824bdc2ded0b8b457d": 1, - "5bc09a18d4351e003562b68e": 1, - "615d8fd3290d254f5e6b2edc": 3, - "5d120a10d7ad1a4e1026ba85": 3, - "59e361e886f774176c10a2a5": 1, - "6267c6396b642f77f56f5c1c": 3, - "56eabcd4d2720b66698b4574": 2, - "5fce16961f152d4312622bc9": 1, - "5947eab886f77475961d96c5": 2, - "5649b2314bdc2d79388b4576": 5, - "5c1bc5fb2e221602b1779b32": 1, - "66866f4ec3d473265104f381": 1, - "6113c3586c780c1e710c90bc": 3, - "5c4eec9b2e2216398b5aaba2": 1, - "5b0800175acfc400153aebd4": 1, - "5d95d6be86f77424444eb3a7": 2, - "591af28e86f77414a27a9e1d": 2, - "57da93632459771cb65bf83f": 3, - "5b099bf25acfc4001637e683": 1, - "5f6372e2865db925d54f3869": 1, - "5bc5a35cd4351e450201232f": 3, - "5d00ede1d7ad1a0940739a76": 2, - "5cbda9f4ae9215000e5b9bfc": 2, - "577d128124597739d65d0e56": 2, - "5d135ecbd7ad1a21c176542e": 2, - "5fb651b52b1b027b1f50bcff": 1, - "5b31163c5acfc400153b71cb": 2, - "544a3a774bdc2d3a388b4567": 2, - "628a85ee6b1d481ff772e9d5": 2, - "5bb20dadd4351e00367faeff": 5, - "6516e91f609aaf354b34b3e2": 2, - "5d02676dd7ad1a049e54f6dc": 1, - "5d1b3f2d86f774253763b735": 1, - "63a39ce4cd6db0635c1975fa": 2, - "5d25a7b88abbc3054f3e60bc": 1, - "5d133067d7ad1a33013f95b4": 2, - "618ba27d9008e4636a67f61d": 2, - "58491f3324597764bc48fa02": 2, - "637f57c532b66e7e320a6676": 2, - "6761779c48fa5c377e06fc3f": 2, - "5c06595c0db834001a66af6c": 1, - "5a7b32a2e899ef00135e345a": 1, - "5d023784d7ad1a049d4aa7f2": 1, - "65f064eec4da400cbb0dc1fe": 1, - "67405ef125beb509e8070276": 1, - "57838f0b2459774a256959b2": 1, - "5fc23636016cce60e8341b05": 1, - "5cff9e84d7ad1a049e54ed55": 1, - "58d2947686f774485c6a1ee5": 1, - "5b3116595acfc40019476364": 1, - "61702be9faa1272e431522c3": 1, - "67110dd41ad01bb88705347b": 1, - "674fe57721a9aa6be6045b96": 2, - "5c07a8770db8340023300450": 2, - "5ea16ada09aa976f2e7a51be": 1, - "56e05b06d2720bb2668b4586": 2, - "63a39dfe3901f439517cafba": 1, - "63a39667c9b3aa4b61683e98": 4, - "6034e3cb0ddce744014cb870": 2, - "5a34fd2bc4a282329a73b4c5": 2, - "5a0eecf686f7740350630097": 2, - "588b56d02459771481110ae2": 1, - "676149a3e2cf1419500357eb": 2, - "5cf12a15d7f00c05464b293f": 1, - "59e0bdb186f774156f04ce82": 5, - "64b9e2037fdfb81df81e3c25": 2, - "5c1cd46f2e22164bef5cfedb": 1, - "5c7d55de2e221644f31bff68": 2, - "5cdeac22d7f00c000f26168f": 1, - "5d40425986f7743185265461": 1, - "5d4042a986f7743185265463": 1, - "573474f924597738002c6174": 4, - "5a6b5b8a8dc32e001207faf3": 2, - "602286df23506e50807090c6": 2, - "5d1b198cd7ad1a604869ad72": 1, - "5f6331e097199b7db2128dc2": 1, - "5ea172e498dacb342978818e": 1, - "628c9ab845c59e5b80768a81": 1, - "5c6d46132e221601da357d56": 3, - "5a0f0f5886f7741c4e32a472": 4, - "62987cb98081af308d7558c8": 3, - "5abcc328d8ce8700194394f3": 2, - "5fbc226eca32ed67276c155d": 2, - "5b7d37845acfc400170e2f87": 1, - "62987dfc402c7f69bf010923": 1, - "5addbb825acfc408fb139400": 3, - "5aa66a9be5b5b0214e506e89": 2, - "5f2aa43ba9b91d26f20ae6d2": 2, - "5addc7005acfc4001669f275": 1, - "590c311186f77424d1667482": 3, - "55d4887d4bdc2d962f8b4570": 1, - "5cc700d4e4a949000f0f0f28": 1, - "5bed625c0db834001c062946": 1, - "5a34f7f1c4a2826c6e06d75d": 1, - "5649ab884bdc2ded0b8b457f": 2, - "5b099a9d5acfc47a8607efe7": 1, - "57ffaea724597779f52b3a4d": 3, - "6761765f1f08ed5e8800b7a6": 1, - "5da46e3886f774653b7a83fe": 1, - "5c11046cd174af02a012e42b": 1, - "57d17c5e2459775a5c57d17d": 3, - "5d03784a86f774203e7e0c4d": 2, - "6761763448fa5c377e06fc39": 1, - "6491c6f6ef312a876705191b": 1, - "668fe5c5f35310705d02b696": 1, - "5e54f6af86f7742199090bf3": 2, - "59faff1d86f7746c51718c9c": 1, - "5780cf722459777a5108b9a1": 2, - "630f2982cdb9e392db0cbcc7": 2, - "5afd7ded5acfc40017541f5e": 1, - "5d80cb8786f774405611c7d9": 1, - "5a0eebed86f77461230ddb3d": 4, - "5c0102aa0db834001b734ba1": 2, - "6698c89bfbc8142e60024b0e": 1, - "63d3ce0446bd475bcb50f55f": 1, - "59f8a37386f7747af3328f06": 2, - "5cbda392ae92155f3c17c39f": 2, - "5c78f26f2e221601da3581d1": 2, - "661e52415be02310ed07a07a": 1, - "5ef1ba28c64c5d0dfc0571a5": 2, - "5d44064fa4b9361e4f6eb8b5": 1, - "5780cf9e2459777df90dcb73": 3, - "5a351711c4a282000b1521a4": 2, - "609269c3b0e443224b421cc1": 1, - "634f06262e5def262d0b30ca": 1, - "660137d8481cc6907a0c5cda": 1, - "64ccc246ff54fb38131acf29": 2, - "59e3596386f774176c10a2a2": 5, - "5a9d56c8a2750c0032157146": 2, - "5a78813bc5856700186c4abe": 2, - "55d6190f4bdc2d87028b4567": 1, - "626a74340be03179a165e30c": 1, - "5a7b483fe899ef0016170d15": 1, - "5a9d6d13a2750c00164f6b03": 2, - "67405d760098dcb5940ea1a6": 2, - "5ae30c9a5acfc408fb139a03": 1, - "558022b54bdc2dac148b458d": 1, - "5a71e4f48dc32e001207fb26": 2, - "671126a210d67adb5b08e925": 2, - "5947fa2486f77425b47c1a9b": 2, - "5943eeeb86f77412d6384f6b": 1, - "627bce33f21bc425b06ab967": 2, - "64ccc1fe088064307e14a6f7": 1, - "5c0548ae0db834001966a3c2": 2, - "5ef1b9f0c64c5d0dfc0571a1": 1, - "5bb20dfcd4351e00334c9e24": 1, - "5c0e2f94d174af029f650d56": 2, - "5af0484c86f7740f02001f7f": 3, - "5d6fc78386f77449d825f9dc": 4, - "675307301f7c19a9780f2668": 3, - "5fce0cf655375d18a253eff0": 1, - "5d80cb3886f77440556dbf09": 1, - "5d2369418abbc306c62e0c80": 1, - "612e0e55a112697a4b3a66e7": 1, - "58272b842459774abc128d50": 3, - "5dff8db859400025ea5150d4": 1, - "5ea034f65aad6446a939737e": 2, - "5fb6567747ce63734e3fa1dc": 2, - "5cfe8010d7ad1a59283b14c6": 2, - "5a7d90eb159bd400165484f1": 2, - "59e3556c86f7741776641ac2": 2, - "63d3d44a2a49307baf09386d": 1, - "66012788c752a02bbe05e68e": 1, - "6388c4478d895f557a0c6512": 1, - "66b37ea4c5d72b0277488439": 1, - "544a378f4bdc2d30388b4567": 2, - "638612b607dfed1ccb7206ba": 1, - "5a7ad1fb51dfba0013379715": 2, - "617130016c780c1e710c9a24": 1, - "593d489686f7745c6255d58a": 1, - "5efaf417aeb21837e749c7f2": 1, - "5d80ccdd86f77474f7575e02": 1, - "618a75c9a3884f56c957ca1b": 1, - "5bb20df1d4351e00347787d5": 2, - "588226dd24597767ad33f789": 2, - "5c503ad32e2216398b5aada2": 1, - "6749c40822a2740bb408d066": 2, - "5b3a337e5acfc4704b4a19a0": 2, - "5de8e8dafd6b4e6e2276dc32": 3, - "653931da5db71d30ab1d6296": 1, - "5addbf175acfc408fb13965b": 2, - "5aaa5dfee5b5b000140293d3": 1, - "55d482194bdc2d1d4e8b456b": 2, - "609a63b6e2ff132951242d09": 1, - "5b7d64555acfc4001876c8e2": 1, - "5a800961159bd4315e3a1657": 1, - "6642f63667f5cb56a00662eb": 1, - "5b222d335acfc4771e1be099": 1, - "5aa66c72e5b5b00016327c93": 1, - "5d80c88d86f77440556dbf07": 1, - "618bab21526131765025ab3f": 1, - "590a3d9c86f774385926e510": 1, - "5eea217fc64c5d0dfc05712a": 1, - "665d5d9e338229cfd6078da1": 2, - "5a0eedb386f77403506300be": 2, - "59387a4986f77401cc236e62": 1, - "5c5970672e221602b21d7855": 2, - "5c6d7b3d2e221600114c9b7d": 1, - "590c35a486f774273531c822": 3, - "590c5bbd86f774785762df04": 1, - "5b3b6dc75acfc47a8773fb1e": 1, - "5a33a8ebc4a282000c5a950d": 1, - "5d1b317c86f7742523398392": 2, - "5de8eaadbbaf010b10528a6d": 1, - "58c157c886f774032749fb06": 1, - "5cdeac5cd7f00c000f261694": 2, - "5648b4534bdc2d3d1c8b4580": 1, - "5bed61680db834001d2c45ab": 3, - "5a7b4900e899ef197b331a2a": 2, - "5b7be4895acfc400170e2dd5": 2, - "5a705e128dc32e000d46d258": 2, - "5dfa3cd1b33c0951220c079b": 3, - "5947f92f86f77427344a76b1": 2, - "5c6d11072e2216000e69d2e4": 1, - "616442e4faa1272e43152193": 1, - "57cffe0024597763b03fc60b": 1, - "63d3ce281fe77d0f2801859e": 1, - "5c7951452e221644f31bfd5c": 2, - "676175789dcee773150c6925": 1, - "58d2946386f774496974c37e": 1, - "630767c37d50ff5e8a1ea71a": 3, - "602a95fe4e02ce1eaa358729": 2, - "606587d11246154cad35d635": 2, - "5b7d63cf5acfc4001876c8df": 1, - "6768c25aa7b238f14a08d3f6": 4, - "590a3efd86f77437d351a25b": 2, - "59e35de086f7741778269d84": 1, - "59f9d81586f7744c7506ee62": 1, - "606ef0812535c57a13424d20": 2, - "668672b8c99550c6fd0f0b29": 1, - "66ffc246a81a4f85e70d4d06": 1, - "5bffd7ed0db834001d23ebf9": 1, - "5caf17c9ae92150b30006be1": 1, - "5d0379a886f77420407aa271": 3, - "5e2af02c86f7746d420957d4": 1, - "5c78f2882e22165df16b832e": 1, - "5ea16acdfadf1d18c87b0784": 1, - "5fb651dc85f90547f674b6f4": 1, - "5addaffe86f77470b455f900": 2, - "6130c43c67085e45ef1405a1": 1, - "5d1b304286f774253763a528": 1, - "5bae13ded4351e44f824bf38": 1, - "5fbcbd02900b1d5091531dd3": 1, - "6544d4187c5457729210d277": 2, - "5a1ead28fcdbcb001912fa9f": 1, - "5a0ee30786f774023b6ee08f": 3, - "5a0eee1486f77402aa773226": 1, - "5a9fbacda2750c00141e080f": 1, - "606eef756d0bd7580617baf8": 1, - "5eeb2ff5ea4f8b73c827350b": 1, - "661e52b5b099f32c28003586": 1, - "5a7dbfc1159bd40016548fde": 1, - "5734758f24597738025ee253": 1, - "5d1c774f86f7746d6620f8db": 1, - "5cc6ea85e4a949000e1ea3c3": 1, - "6034e3e20ddce744014cb878": 1, - "60b0f561c4449e4cb624c1d7": 1, - "5addbfd15acfc40015621bde": 1, - "6272379924e29f06af4d5ecb": 3, - "618b9643526131765025ab35": 1, - "619cbfccbedcde2f5b3f7bdd": 1, - "5d1c702ad7ad1a632267f429": 1, - "5c12620d86f7743f8b198b72": 1, - "626bb8532c923541184624b4": 1, - "6065881d1246154cad35d637": 1, - "5c1bc4812e22164bef5cfde7": 1, - "5fb655a72b1b027b1f50bd06": 1, - "5d1f819086f7744b355c219b": 1, - "5a5f1ce64f39f90b401987bc": 1, - "61bf83814088ec1a363d7097": 2, - "5c9a1c3a2e2216000e69fb6a": 3, - "59e366c186f7741778269d85": 2, - "5ba26586d4351e44f824b340": 1, - "5cf78496d7f00c065703d6ca": 2, - "6194eff92d2c397d6600348b": 1, - "55d48ebc4bdc2d8c2f8b456c": 2, - "5addc7ac5acfc400194dbd90": 1, - "5a0abb6e1526d8000a025282": 1, - "5dff77c759400025ea5150cf": 1, - "5c9a25172e2216000f20314e": 2, - "5b7d68af5acfc400170e30c3": 1, - "5a9e81fba2750c00164f6b11": 2, - "5c0673fb0db8340023300271": 1, - "66992725ae08c5c29e0c4f9a": 1, - "6357c98711fb55120211f7e1": 1, - "674fe8b9362ea1f88b0e278d": 1, - "5fbc22ccf24b94483f726483": 1, - "59d6272486f77466146386ff": 1, - "55d614004bdc2d86028b4568": 1, - "61aa5b518f5e7a39b41416e2": 2, - "637f57d2f5ef8c33840d36c4": 1, - "5a788089c5856700142fdd9c": 1, - "5d63d33b86f7746ea9275524": 1, - "5f6340d3ca442212f4047eb2": 1, - "5b800ebc86f774394e230a90": 1, - "5addc00b5acfc4001669f144": 1, - "5dcbe965e4ed22586443a79d": 1, - "5bbde409d4351e003562b036": 1, - "59db3b0886f77429d72fb895": 1, - "59db3acc86f7742a2c4ab912": 1, - "5c7955c22e221644f31bfd5e": 1, - "5a37ca54c4a282000d72296a": 1, - "5d2c829448f0353a5c7d6674": 1, - "5cdeac42d7f00c000d36ba73": 1, - "674fe8f6f34d761ab8020cc8": 1, - "591ae8f986f77406f854be45": 2, - "58d2947e86f77447aa070d53": 1, - "66ffc2bd132225f0fe0611d8": 2, - "59ccfdba86f7747f2109a587": 2, - "5cf4e3f3d7f00c06595bc7f0": 1, - "623c2f652febb22c2777d8d7": 1, - "5d80c62a86f7744036212b3f": 1, - "64c196ad26a15b84aa07132f": 1, - "5d10b49bd7ad1a1a560708b0": 1, - "5d3eb59ea4b9361c284bb4b2": 1, - "5efb0c1bd79ff02a1f5e68d9": 2, - "5780d0652459777df90dcb74": 1, - "626673016f1edc06f30cf6d5": 1, - "60391afc25aff57af81f7085": 2, - "66ffc20ba73a7bce3d0b45ab": 1, - "5c61a40d2e2216001403158d": 1, - "5cdeaca5d7f00c00b61c4b70": 1, - "6477772ea8a38bb2050ed4db": 1, - "5d00ec68d7ad1a04a067e5be": 2, - "5c0684e50db834002a12585a": 1, - "6171367e1cb55961fa0fdb36": 1, - "63d114019e35b334d82302f7": 1, - "63877c99e785640d436458ea": 1, - "673f3f9840aeca974e0b5c68": 1, - "59ecc3dd86f7746dc827481c": 1, - "6699370c57df3e2b4e0a0dab": 1, - "590de71386f774347051a052": 1, - "5d026791d7ad1a04a067ea63": 1, - "5c1bc7432e221602b412949d": 1, - "5d4aab30a4b9365435358c55": 1, - "5b7bef1e5acfc43d82528402": 1, - "5c5db6742e2216000f1b2852": 1, - "61840d85568c120fdd2962a5": 2, - "5c471c442e221602b542a6f8": 1, - "5780cf7f2459777de4559322": 2, - "5d235a5986f77443f6329bc6": 1, - "6516e9bc5901745209404287": 1, - "5cff9e5ed7ad1a09407397d4": 1, - "5a145d4786f7744cbb6f4a12": 1, - "6389c70ca33d8c4cdf4932c6": 1, - "5b04473a5acfc40018632f70": 1, - "5d1b2f3f86f774252167a52c": 1, - "66992f7d9950f5f4cd0602a8": 1, - "6193dcd0f8ee7e52e4210a28": 1, - "5dfa3d950dee1b22f862eae0": 1, - "63a3a93f8a56922e82001f5d": 1, - "5c6bf4aa2e2216001219b0ae": 1, - "6284bd5f95250a29bc628a30": 1, - "65f1b2a5c14a07890801fc70": 1, - "65ae4f57e343f0acc00824da": 1, - "5c7d55f52e221644f31bff6a": 1, - "588226e62459776e3e094af7": 1, - "5d0375ff86f774186372f685": 1, - "5df25b6c0b92095fd441e4cf": 1, - "5d02677ad7ad1a04a15c0f95": 1, - "5eea21647547d6330471b3c9": 1, - "591c4efa86f7741030027726": 1, - "5a0ee4b586f7743698200d22": 1, - "5b2240bf5acfc40dc528af69": 1, - "61a64492ba05ef10d62adcc1": 1, - "5bc9bdb8d4351e003562b8a1": 1, - "5fbc227aa56d053a3543f79e": 1, - "5c617a5f2e2216000f1e81b3": 1, - "5c1265fc86f7743f896a21c2": 1, - "62669bccdb9ebb4daa44cd14": 1, - "5d1b39a386f774252339976f": 1, - "5f3e77f59103d430b93f94c1": 1 - }, - "SecuredContainer": { - "5d6e6806a4b936088465b17e": 31040, - "5d6e6891a4b9361bd473feea": 18800, - "56dff216d2720bbd668b4568": 41110, - "59e4d3d286f774176a36250a": 25490, - "56dff4a2d2720bbd668b456a": 39430, - "64b7af5a8532cf95ee0a0dbd": 34210, - "560d5e524bdc2d25448b4571": 48800, - "5d6e68d1a4b93622fe60e845": 402, - "5656d7c34bdc2d9d198b4587": 9033, - "56dff421d2720b5f5a8b4567": 39300, - "5d6e6869a4b9361c140bcfde": 51430, - "56dff0bed2720bb0668b4567": 40230, - "59e4cf5286f7741778269d8a": 9455, - "5d6e689ca4b9361bc8618956": 51960, - "5d6e68dea4b9361bcc29e659": 32370, - "5d6e68b3a4b9361bca7e50b5": 52390, - "56dff338d2720bbd668b4569": 41480, - "58820d1224597753c90aeb13": 51110, - "64b7af734b75259c590fa895": 13380, - "56dff061d2720bb5668b4567": 3159, - "56dff4ecd2720b5f5a8b4568": 11300, - "56dff3afd2720bba668b4567": 19290, - "56dfef82d2720bbd668b4567": 6808, - "56dff2ced2720bb4668b4567": 5990, - "5d6e67fba4b9361bc73bc779": 748 - }, - "SpecialLoot": {} - } - }, "firstName": [ "Толстяк", "Наждачник", @@ -2404,2090 +2132,8 @@ "Лавина", "Замерзайка" ], - "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 5, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.8, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.65, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "HARD_AIM_CHANCE_100": 80, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "DAMAGE_TO_DISCARD_AIM_0_100": 96, - "MIN_TIME_DISCARD_AIM_SEC": 2.3, - "MAX_TIME_DISCARD_AIM_SEC": 2.6, - "XZ_COEF": 0.65, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.2, - "FIRST_CONTACT_ADD_SEC": 0.05, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, - "BASE_HIT_AFFECTION_MIN_ANG": 14, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_SHIEF": 0.5, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.65, - "SCATTERING_DIST_MODIF_CLOSE": 0.8, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -1, - "COEF_IF_MOVE": 1.5, - "TIME_COEF_IF_MOVE": 1.5, - "BOT_MOVE_IF_DELTA": 0.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 30, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "ANGLE_FOR_GETUP": 30, - "MAX_VISION_GRASS_METERS": 0.4, - "MAX_VISION_GRASS_METERS_FLARE": 7, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.25, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0001, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 43, - "ENEMY_LIGHT_ADD": 45, - "ENEMY_LIGHT_START_DIST": 40, - "CAN_LOOK_TO_WALL": false, - "CHECK_HEAD_ANY_DIST": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 2, - "RECOIL_PER_METER": 0.1, - "CAN_STOP_SHOOT_CAUSE_ANIMATOR": true, - "MAX_RECOIL_PER_METER": 0.2, - "HORIZONT_RECOIL_COEF": 0.4, - "WAIT_NEXT_SINGLE_SHOT": 0.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.1, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 333, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, - "LOW_DIST_TO_CHANGE_WEAPON": 10, - "FAR_DIST_TO_CHANGE_WEAPON": 50, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 30, - "CHANCE_RUN_FLASHED_100": 0, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.3, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 5, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, - "CLOSE_TO_SMOKE_TIME_DELTA": 7, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.7, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 16.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "DEAD_BODY_LOOK_PERIOD": 8, - "LOOK_TIME_BASE": 12, - "CAN_LOOK_TO_DEADBODIES": true, - "CAN_CHOOSE_RESERV": true, - "DO_RANDOM_DROP_ITEM": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": false, - "CAN_FRIENDLY_TILT": true, - "CAN_HARD_AIM": true, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 15.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 2, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, - "DISPERSION_COEF": 3.6, - "CLOSE_DIST": 10, - "FAR_DIST": 30, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0.75, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 23, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "CAN_TAKE_ITEMS": true, - "CHECK_MARK_OF_UNKNOWS": true, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "SURGE_KIT_ONLY_SAFE_CONTAINER": false, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 1, - "GROUP_EXACTLY_PHRASE_DELAY": 24, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "MAY_BE_CALLED_FOR_HELP": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1 - }, - "Core": { - "VisibleAngle": 140, - "VisibleDistance": 130, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.05, - "ScatteringClosePerMeter": 0.1, - "DamageCoeff": 1, - "HearingSense": 2.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.3, - "WaitInCoverBetweenShotsSec": 1.5 - }, - "Scattering": { - "MinScatter": 0.015, - "WorkingScatter": 0.15, - "MaxScatter": 0.3, - "SpeedUp": 0.6, - "SpeedUpAim": 1.8, - "SpeedDown": -0.2, - "ToSlowBotSpeed": 1.8, - "ToLowBotSpeed": 2.8, - "ToUpBotSpeed": 4.3, - "MovingSlowCoef": 1.4, - "ToLowBotAngularSpeed": 140, - "ToStopBotAngularSpeed": 80, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.03, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.015, - "AMPLITUDE_SPEED": 0.001, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 5, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.8, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.65, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "HARD_AIM_CHANCE_100": 80, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "DAMAGE_TO_DISCARD_AIM_0_100": 96, - "MIN_TIME_DISCARD_AIM_SEC": 2.3, - "MAX_TIME_DISCARD_AIM_SEC": 2.6, - "XZ_COEF": 0.65, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.2, - "FIRST_CONTACT_ADD_SEC": 0.05, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, - "BASE_HIT_AFFECTION_MIN_ANG": 14, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_SHIEF": 0.5, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.65, - "SCATTERING_DIST_MODIF_CLOSE": 0.8, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -1, - "COEF_IF_MOVE": 1.5, - "TIME_COEF_IF_MOVE": 1.5, - "BOT_MOVE_IF_DELTA": 0.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 30, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "ANGLE_FOR_GETUP": 30, - "MAX_VISION_GRASS_METERS": 0.4, - "MAX_VISION_GRASS_METERS_FLARE": 7, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.25, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0001, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 43, - "ENEMY_LIGHT_ADD": 45, - "ENEMY_LIGHT_START_DIST": 40, - "CAN_LOOK_TO_WALL": false, - "CHECK_HEAD_ANY_DIST": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 2, - "RECOIL_PER_METER": 0.1, - "CAN_STOP_SHOOT_CAUSE_ANIMATOR": true, - "MAX_RECOIL_PER_METER": 0.2, - "HORIZONT_RECOIL_COEF": 0.4, - "WAIT_NEXT_SINGLE_SHOT": 0.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.1, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 333, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, - "LOW_DIST_TO_CHANGE_WEAPON": 10, - "FAR_DIST_TO_CHANGE_WEAPON": 50, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 30, - "CHANCE_RUN_FLASHED_100": 0, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.3, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 5, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, - "CLOSE_TO_SMOKE_TIME_DELTA": 7, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.7, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 16.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "DEAD_BODY_LOOK_PERIOD": 8, - "LOOK_TIME_BASE": 12, - "CAN_LOOK_TO_DEADBODIES": true, - "CAN_CHOOSE_RESERV": true, - "DO_RANDOM_DROP_ITEM": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": false, - "CAN_FRIENDLY_TILT": true, - "CAN_HARD_AIM": true, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 15.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 2, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, - "DISPERSION_COEF": 3.6, - "CLOSE_DIST": 10, - "FAR_DIST": 30, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0.75, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 23, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "CAN_TAKE_ITEMS": true, - "CHECK_MARK_OF_UNKNOWS": true, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "SURGE_KIT_ONLY_SAFE_CONTAINER": false, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 1, - "GROUP_EXACTLY_PHRASE_DELAY": 24, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "MAY_BE_CALLED_FOR_HELP": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1 - }, - "Core": { - "VisibleAngle": 140, - "VisibleDistance": 130, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.05, - "ScatteringClosePerMeter": 0.1, - "DamageCoeff": 1, - "HearingSense": 2.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.3, - "WaitInCoverBetweenShotsSec": 1.5 - }, - "Scattering": { - "MinScatter": 0.015, - "WorkingScatter": 0.15, - "MaxScatter": 0.3, - "SpeedUp": 0.6, - "SpeedUpAim": 1.8, - "SpeedDown": -0.2, - "ToSlowBotSpeed": 1.8, - "ToLowBotSpeed": 2.8, - "ToUpBotSpeed": 4.3, - "MovingSlowCoef": 1.4, - "ToLowBotAngularSpeed": 140, - "ToStopBotAngularSpeed": 80, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.03, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.015, - "AMPLITUDE_SPEED": 0.001, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 5, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.8, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.65, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "HARD_AIM_CHANCE_100": 80, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "DAMAGE_TO_DISCARD_AIM_0_100": 96, - "MIN_TIME_DISCARD_AIM_SEC": 2.3, - "MAX_TIME_DISCARD_AIM_SEC": 2.6, - "XZ_COEF": 0.65, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.2, - "FIRST_CONTACT_ADD_SEC": 0.05, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, - "BASE_HIT_AFFECTION_MIN_ANG": 14, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_SHIEF": 0.5, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.65, - "SCATTERING_DIST_MODIF_CLOSE": 0.8, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -1, - "COEF_IF_MOVE": 1.5, - "TIME_COEF_IF_MOVE": 1.5, - "BOT_MOVE_IF_DELTA": 0.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 30, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "ANGLE_FOR_GETUP": 30, - "MAX_VISION_GRASS_METERS": 0.4, - "MAX_VISION_GRASS_METERS_FLARE": 7, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.25, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0001, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 43, - "ENEMY_LIGHT_ADD": 45, - "ENEMY_LIGHT_START_DIST": 40, - "CAN_LOOK_TO_WALL": false, - "CHECK_HEAD_ANY_DIST": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 2, - "RECOIL_PER_METER": 0.1, - "CAN_STOP_SHOOT_CAUSE_ANIMATOR": true, - "MAX_RECOIL_PER_METER": 0.2, - "HORIZONT_RECOIL_COEF": 0.4, - "WAIT_NEXT_SINGLE_SHOT": 0.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.1, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 333, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, - "LOW_DIST_TO_CHANGE_WEAPON": 10, - "FAR_DIST_TO_CHANGE_WEAPON": 50, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 30, - "CHANCE_RUN_FLASHED_100": 0, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.3, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 5, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, - "CLOSE_TO_SMOKE_TIME_DELTA": 7, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.7, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 16.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "DEAD_BODY_LOOK_PERIOD": 8, - "LOOK_TIME_BASE": 12, - "CAN_LOOK_TO_DEADBODIES": true, - "CAN_CHOOSE_RESERV": true, - "DO_RANDOM_DROP_ITEM": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": false, - "CAN_FRIENDLY_TILT": true, - "CAN_HARD_AIM": true, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 15.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 2, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, - "DISPERSION_COEF": 3.6, - "CLOSE_DIST": 10, - "FAR_DIST": 30, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0.75, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 23, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "CAN_TAKE_ITEMS": true, - "CHECK_MARK_OF_UNKNOWS": true, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "SURGE_KIT_ONLY_SAFE_CONTAINER": false, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 1, - "GROUP_EXACTLY_PHRASE_DELAY": 24, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "MAY_BE_CALLED_FOR_HELP": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1 - }, - "Core": { - "VisibleAngle": 140, - "VisibleDistance": 130, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.05, - "ScatteringClosePerMeter": 0.1, - "DamageCoeff": 1, - "HearingSense": 2.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.3, - "WaitInCoverBetweenShotsSec": 1.5 - }, - "Scattering": { - "MinScatter": 0.015, - "WorkingScatter": 0.15, - "MaxScatter": 0.3, - "SpeedUp": 0.6, - "SpeedUpAim": 1.8, - "SpeedDown": -0.2, - "ToSlowBotSpeed": 1.8, - "ToLowBotSpeed": 2.8, - "ToUpBotSpeed": 4.3, - "MovingSlowCoef": 1.4, - "ToLowBotAngularSpeed": 140, - "ToStopBotAngularSpeed": 80, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.03, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.015, - "AMPLITUDE_SPEED": 0.001, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2, - "DELTA_GETUP": 5, - "DELTA_AFTER_GETUP": 10, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "MAX_LAY_TIME": 35, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "ATTACK_LAY_CHANCE": 25, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121, - "MIN_CAN_LAY_DIST": 11, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_CAN_LAY_DIST": 200, - "LAY_CHANCE_DANGER": 40, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2, - "BETTER_PRECICING_COEF": 0.8, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.65, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "HARD_AIM_CHANCE_100": 80, - "PANIC_TIME": 2, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "DAMAGE_TO_DISCARD_AIM_0_100": 96, - "MIN_TIME_DISCARD_AIM_SEC": 2.3, - "MAX_TIME_DISCARD_AIM_SEC": 2.6, - "XZ_COEF": 0.65, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.2, - "FIRST_CONTACT_ADD_SEC": 0.05, - "FIRST_CONTACT_ADD_CHANCE_100": 80, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.27, - "BASE_HIT_AFFECTION_MIN_ANG": 14, - "BASE_HIT_AFFECTION_MAX_ANG": 18, - "BASE_SHIEF": 0.5, - "SCATTERING_HAVE_DAMAGE_COEF": 2, - "SCATTERING_DIST_MODIF": 0.65, - "SCATTERING_DIST_MODIF_CLOSE": 0.8, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "SHPERE_FRIENDY_FIRE_SIZE": -1, - "COEF_IF_MOVE": 1.5, - "TIME_COEF_IF_MOVE": 1.5, - "BOT_MOVE_IF_DELTA": 0.01, - "NEXT_SHOT_MISS_CHANCE_100": 100, - "NEXT_SHOT_MISS_Y_OFFSET": 1, - "ANYTIME_LIGHT_WHEN_AIM_100": -1, - "ANY_PART_SHOOT_TIME": 30, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.8 - }, - "Look": { - "OLD_TIME_POINT": 11, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "ANGLE_FOR_GETUP": 30, - "MAX_VISION_GRASS_METERS": 0.4, - "MAX_VISION_GRASS_METERS_FLARE": 7, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 30, - "FAR_DISTANCE": 160, - "FarDeltaTimeSec": 3, - "MIDDLE_DIST": 90, - "MiddleDeltaTimeSec": 1, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 0.25, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.0001, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 43, - "ENEMY_LIGHT_ADD": 45, - "ENEMY_LIGHT_START_DIST": 40, - "CAN_LOOK_TO_WALL": false, - "CHECK_HEAD_ANY_DIST": false, - "DIST_NOT_TO_IGNORE_WALL": 15, - "DIST_CHECK_WALL": 20, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "MIN_LOOK_AROUD_TIME": 20, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 2, - "RECOIL_PER_METER": 0.1, - "CAN_STOP_SHOOT_CAUSE_ANIMATOR": true, - "MAX_RECOIL_PER_METER": 0.2, - "HORIZONT_RECOIL_COEF": 0.4, - "WAIT_NEXT_SINGLE_SHOT": 0.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.8, - "MARKSMAN_DIST_SEK_COEF": 44, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.1, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76, - "FAR_DIST_ENEMY": 20, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "CAN_SHOOTS_TIME_TO_AMBUSH": 333, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 0, - "LOW_DIST_TO_CHANGE_WEAPON": 10, - "FAR_DIST_TO_CHANGE_WEAPON": 50, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "WAIT_NEXT_STATIONARY_GRENADE": 1, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_START_RAYCAST": 15, - "BASE_START_SERACH": 35, - "UPDATE_TIME_RECAL_WAY": 7, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST_SQR": 225, - "BASE_SQRT_START_SERACH": 1225, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20, - "REACH_DIST_COVER": 2, - "RUN_TO_COVER_MIN": 2, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "SEC_TO_CHANGE_TO_RUN": 3 - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "DELTA_NEXT_ATTEMPT": 10, - "MIN_DIST_NOT_TO_THROW": 8, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 99, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 4, - "REQUEST_DIST_MUST_THROW": 2, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 30, - "CHANCE_RUN_FLASHED_100": 0, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "FLASH_GRENADE_TIME_COEF": 0.3, - "SIZE_SPOTTED_COEF": 2, - "BE_ATTENTION_COEF": 4, - "TIME_SHOOT_TO_FLASH": 4, - "CLOSE_TO_SMOKE_TO_SHOOT": 5, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 25, - "CLOSE_TO_SMOKE_TIME_DELTA": 7, - "SMOKE_CHECK_DELTA": 1, - "DELTA_GRENADE_START_TIME": 0.7, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "NO_RUN_FROM_AI_GRENADES": false, - "MAX_THROW_POWER": 16.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "STUN_SUPPRESS_DELTA": 9, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "ANG_TYPE": 4 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "SOUND_TO_GET_SPOTTED": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "MAX_DIST_OF_COVER": 4, - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CHECK_SFETY": 9, - "TIME_CHECK_SAFE": 2, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "SPOTTED_COVERS_RADIUS": 3, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16, - "MAX_SPOTTED_TIME_SEC": 45, - "WAIT_INT_COVER_FINDING_ENEMY": 2, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "CHECK_COVER_ENEMY_LOOK": true, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 20, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25 - }, - "Patrol": { - "DEAD_BODY_LOOK_PERIOD": 8, - "LOOK_TIME_BASE": 12, - "CAN_LOOK_TO_DEADBODIES": true, - "CAN_CHOOSE_RESERV": true, - "DO_RANDOM_DROP_ITEM": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": false, - "CAN_FRIENDLY_TILT": true, - "CAN_HARD_AIM": true, - "RESERVE_TIME_STAY": 72, - "FRIEND_SEARCH_SEC": 12, - "TALK_DELAY": 1.1, - "MIN_TALK_DELAY": 35, - "TALK_DELAY_BIG": 15.1, - "CHANGE_WAY_TIME": 125.1, - "MIN_DIST_TO_CLOSE_TALK": 5, - "VISION_DIST_COEF_PEACE": 0.75, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 50, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7, - "RESERVE_OUT_TIME": 30, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "CAN_WATCH_SECOND_WEAPON": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 2, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.7, - "DISPERSION_COEF": 3.6, - "CLOSE_DIST": 10, - "FAR_DIST": 30, - "SOUND_DIR_DEEFREE": 30, - "DIST_PLACE_TO_FIND_POINT": 70, - "DEAD_BODY_SOUND_RAD": 30, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17, - "HEAR_DELAY_WHEN_PEACE": 0.75, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.5, - "LOOK_ONLY_DANGER_DELTA": 9 - }, - "Mind": { - "HOW_WORK_OVER_DEAD_BODY": 2, - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_LEAVE_MAP": 23, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "MIN_DAMAGE_SCARE": 20, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_FIND_ENEMY": 22, - "MAX_AGGRO_BOT_DIST": 100, - "HIT_POINT_DETECTION": 4, - "DANGER_POINT_CHOOSE_COEF": 1, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "DIST_TO_STOP_RUN_ENEMY": 15, - "CAN_TAKE_ITEMS": true, - "CHECK_MARK_OF_UNKNOWS": true, - "ENEMY_LOOK_AT_ME_ANG": 15, - "MIN_START_AGGRESION_COEF": 1, - "MAX_START_AGGRESION_COEF": 3, - "BULLET_FEEL_DIST": 360, - "BULLET_FEEL_CLOSE_SDIST": 1, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 10, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "SURGE_KIT_ONLY_SAFE_CONTAINER": false, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": false, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10, - "CAN_STAND_BY": true, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 1, - "GROUP_EXACTLY_PHRASE_DELAY": 24, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "DOG_FIGHT_OUT": 6, - "DOG_FIGHT_IN": 3, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "PISTOL_SHOTGUN_AMBUSH_DIST": 60, - "STANDART_AMBUSH_DIST": 200, - "AI_POWER_COEF": 120, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "TALK_WITH_QUERY": true, - "WILL_PERSUE_AXEMAN": true, - "MAY_BE_CALLED_FOR_HELP": true - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34, - "BOSS_DIST_TO_WARNING_SQRT": 1156, - "BOSS_DIST_TO_WARNING_OUT": 43, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, - "BOSS_DIST_TO_SHOOT": 16, - "BOSS_DIST_TO_SHOOT_SQRT": 256, - "CHANCE_TO_SEND_GRENADE_100": 100, - "MAX_DIST_COVER_BOSS": 25, - "MAX_DIST_COVER_BOSS_SQRT": 625, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10, - "CHANCE_USE_RESERVE_PATROL_100": 50, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_CONTUTION_TIME": 5, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_SEARCH_METERS": 30, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_HOLD_DELAY": 5, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40, - "KOJANIY_DIST_TO_BE_ENEMY": 200, - "KOJANIY_MIN_DIST_TO_LOOT": 20, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1 - }, - "Core": { - "VisibleAngle": 140, - "VisibleDistance": 130, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.05, - "ScatteringClosePerMeter": 0.1, - "DamageCoeff": 1, - "HearingSense": 2.85, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35, - "ShotgunFireDistancePref": 50, - "RifleFireDistancePref": 100, - "AccuratySpeed": 0.3, - "WaitInCoverBetweenShotsSec": 1.5 - }, - "Scattering": { - "MinScatter": 0.015, - "WorkingScatter": 0.15, - "MaxScatter": 0.3, - "SpeedUp": 0.6, - "SpeedUpAim": 1.8, - "SpeedDown": -0.2, - "ToSlowBotSpeed": 1.8, - "ToLowBotSpeed": 2.8, - "ToUpBotSpeed": 4.3, - "MovingSlowCoef": 1.4, - "ToLowBotAngularSpeed": 140, - "ToStopBotAngularSpeed": 80, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.03, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.015, - "AMPLITUDE_SPEED": 0.001, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1 - } - } - }, - "chances": { - "equipment": { - "Headwear": 64, - "Earpiece": 0, - "FaceCover": 49, - "ArmorVest": 73, - "Eyewear": 37, - "ArmBand": 0, - "TacticalVest": 100, - "Backpack": 29, - "FirstPrimaryWeapon": 100, - "SecondPrimaryWeapon": 0, - "Holster": 0, - "Scabbard": 76, - "Pockets": 100, - "SecuredContainer": 100 - }, - "weaponMods": { - "mod_mount_000": 27, - "mod_muzzle": 33, - "mod_reciever": 82, - "mod_sight_rear": 67, - "mod_stock": 52, - "mod_magazine": 100, - "mod_charge": 5, - "mod_mount_001": 0, - "mod_launcher": 0, - "mod_scope": 28, - "mod_sight_front": 0, - "mod_mount": 0, - "mod_foregrip": 35, - "mod_tactical_000": 10, - "mod_tactical_001": 47, - "mod_tactical_002": 86, - "mod_tactical_003": 0, - "mod_flashlight": 99, - "mod_stock_000": 15, - "mod_tactical": 52 - }, - "equipmentMods": { - "mod_nvg": 0, - "mod_equipment": 0, - "front_plate": 100, - "back_plate": 100, - "mod_equipment_000": 0, - "mod_mount": 0 - } - }, "generation": { "items": { - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "food": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "drink": { - "weights": { - "0": 10, - "1": 5, - "2": 2 - }, - "whitelist": [] - }, - "currency": { - "weights": { - "0": 20, - "1": 5, - "2": 1 - }, - "whitelist": [] - }, "backpackLoot": { "weights": { "0": 1, @@ -4501,6 +2147,67 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, "pocketLoot": { "weights": { "0": 1, @@ -4511,6 +2218,21 @@ }, "whitelist": [] }, + "specialItems": { + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, "vestLoot": { "weights": { "0": 1, @@ -4522,28 +2244,2306 @@ "6": 0 }, "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 1 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 2, - "2": 1, - "3": 1, - "4": 0, - "5": 0 - }, - "whitelist": [] } } + }, + "health": { + "BodyParts": [ + { + "Chest": { + "max": 100, + "min": 100 + }, + "Head": { + "max": 35, + "min": 35 + }, + "LeftArm": { + "max": 70, + "min": 70 + }, + "LeftLeg": { + "max": 80, + "min": 80 + }, + "RightArm": { + "max": 70, + "min": 70 + }, + "RightLeg": { + "max": 80, + "min": 80 + }, + "Stomach": { + "max": 100, + "min": 100 + } + } + ], + "Energy": { + "max": 100, + "min": 100 + }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { + "Ammo": { + "Caliber12g": { + "560d5e524bdc2d25448b4571": 4910, + "58820d1224597753c90aeb13": 3340, + "5d6e67fba4b9361bc73bc779": 45, + "5d6e6806a4b936088465b17e": 2640, + "5d6e6869a4b9361c140bcfde": 3350, + "5d6e6891a4b9361bd473feea": 2010, + "5d6e689ca4b9361bc8618956": 3320, + "5d6e68b3a4b9361bca7e50b5": 3410, + "5d6e68d1a4b93622fe60e845": 22, + "5d6e68dea4b9361bcc29e659": 2910 + }, + "Caliber545x39": { + "56dfef82d2720bbd668b4567": 162, + "56dff061d2720bb5668b4567": 78, + "56dff0bed2720bb0668b4567": 884, + "56dff216d2720bbd668b4568": 870, + "56dff2ced2720bb4668b4567": 138, + "56dff338d2720bbd668b4569": 909, + "56dff3afd2720bba668b4567": 448, + "56dff421d2720b5f5a8b4567": 861, + "56dff4a2d2720bbd668b456a": 858, + "56dff4ecd2720b5f5a8b4568": 274 + }, + "Caliber762x39": { + "5656d7c34bdc2d9d198b4587": 64, + "59e4cf5286f7741778269d8a": 70, + "59e4d3d286f774176a36250a": 192, + "64b7af5a8532cf95ee0a0dbd": 256, + "64b7af734b75259c590fa895": 101 + } + }, + "equipment": { + "ArmBand": {}, + "ArmorVest": { + "5c0e51be86f774598e797894": 285, + "64be79c487d1510151095552": 1408, + "64be79e2bf8412471d0d9bcc": 1419 + }, + "Backpack": { + "56e33634d2720bd8058b456b": 8145, + "56e33680d2720be2748b4576": 4187 + }, + "Earpiece": {}, + "Eyewear": { + "557ff21e4bdc2d89578b4586": 3815, + "59e770b986f7742cbd762754": 7745, + "5d6d2ef3a4b93618084f58bd": 2090, + "603409c80ca681766b6a0fb2": 952, + "61c18d83b00456371a66814b": 677, + "62a09e410b9d3c46de5b6e78": 637 + }, + "FaceCover": { + "572b7fa524597762b747ce82": 6752, + "59e7715586f7742ee5789605": 3378, + "5ab8f4ff86f77431c60d91ba": 3423, + "5b432b2f5acfc4771e1c6622": 553, + "5b432b6c5acfc4001a599bf0": 1102, + "5b432f3d5acfc4704b4a1dfb": 3355, + "5bd073a586f7747e6f135799": 579, + "5e54f76986f7740366043752": 588, + "5e54f79686f7744022011103": 379, + "62a09e08de7ac81993580532": 348, + "62a5c2c98ec41a51b34739c0": 359 + }, + "FirstPrimaryWeapon": { + "54491c4f4bdc2db1078b4568": 16150, + "5644bd2b4bdc2d3b4c8b4572": 9059, + "576165642459773c7a400233": 5673, + "57dc2fa62459775949412633": 5517, + "59d6088586f774275f37482f": 5666 + }, + "Headwear": { + "572b7d8524597762b472f9d1": 1434, + "5a7c4850e899ef00150be885": 8684, + "5b4329075acfc400153b78ff": 6669, + "61c18db6dfd64163ea78fbb4": 1492, + "65719f0775149d62ce0a670b": 8712 + }, + "Holster": {}, + "Pockets": { + "557ffd194bdc2d28148b457f": 1 + }, + "Scabbard": { + "54491bb74bdc2d09088b4567": 2601, + "57e26ea924597715ca604a09": 6635, + "57e26fc7245977162a14b800": 6570, + "5bc9c1e2d4351e00367fbcf0": 335 + }, + "SecondPrimaryWeapon": {}, + "SecuredContainer": { + "5c0a794586f77461c458f892": 1 + }, + "TacticalVest": { + "5fd4c5477a8d854fa0105061": 1021, + "6034cf5fffd42c541047f72e": 1082 + } + }, + "items": { + "Backpack": { + "5448ba0b4bdc2d02308b456c": 4, + "5448c1d04bdc2dff2f8b4569": 4, + "5448fee04bdc2dbc018b4567": 120, + "5448ff904bdc2d6f028b456e": 206, + "544909bb4bdc2d6f028b4577": 2, + "544a378f4bdc2d30388b4567": 2, + "544a38634bdc2d58388b4568": 3, + "544a3a774bdc2d3a388b4567": 2, + "544fb25a4bdc2dfb738b4567": 446, + "544fb3364bdc2d34748b456a": 355, + "544fb37f4bdc2dee738b4567": 222, + "544fb3f34bdc2d03748b456a": 58, + "544fb45d4bdc2dee738b4568": 169, + "544fb62a4bdc2dfb738b4568": 237, + "544fb6cc4bdc2d34748b456e": 183, + "54527a984bdc2d4e668b4567": 36, + "54527ac44bdc2d36668b4567": 24, + "558022b54bdc2dac148b458d": 1, + "558032614bdc2de7118b4585": 2, + "55d35ee94bdc2d61338b4568": 19, + "55d3632e4bdc2d972f8b4569": 3, + "55d45f484bdc2d972f8b456d": 2, + "55d480c04bdc2d1d4e8b456a": 3, + "55d481904bdc2d8c2f8b456a": 2, + "55d482194bdc2d1d4e8b456b": 2, + "55d484b44bdc2d1d4e8b456d": 2, + "55d485be4bdc2d962f8b456f": 1, + "55d4887d4bdc2d962f8b4570": 1, + "55d48ebc4bdc2d8c2f8b456c": 2, + "55d4ae6c4bdc2d8b2f8b456e": 1, + "55d614004bdc2d86028b4568": 1, + "55d6190f4bdc2d87028b4567": 1, + "560d5e524bdc2d25448b4571": 20, + "560d61e84bdc2da74d8b4571": 3, + "560d657b4bdc2da74d8b4572": 2, + "5648ac824bdc2ded0b8b457d": 1, + "5648ae314bdc2d3d1c8b457f": 2, + "5648b4534bdc2d3d1c8b4580": 1, + "5649a2464bdc2d91118b45a8": 2, + "5649ab884bdc2ded0b8b457f": 2, + "5649b2314bdc2d79388b4576": 5, + "5649d9a14bdc2d79388b4580": 7, + "564ca99c4bdc2d16268b4589": 6, + "564caa3d4bdc2d17108b458e": 1, + "5656d7c34bdc2d9d198b4587": 44, + "5656eb674bdc2d35148b457c": 11, + "5672c92d4bdc2d180f8b4567": 4, + "5672cb124bdc2d1a0f8b4568": 9, + "5672cb304bdc2dc2088b456a": 3, + "5672cb724bdc2dc2088b456b": 3, + "5673de654bdc2d180f8b456d": 128, + "56742c284bdc2d98058b456d": 5, + "56742c2e4bdc2d95058b456d": 1, + "56742c324bdc2d150f8b456d": 3, + "56d59948d2720bb7418b4582": 1, + "56d59d3ad2720bdb418b4577": 13, + "56def37dd2720bec348b456a": 2, + "56dfef82d2720bbd668b4567": 23, + "56dff026d2720bb8668b4567": 20, + "56dff061d2720bb5668b4567": 34, + "56dff0bed2720bb0668b4567": 63, + "56dff216d2720bbd668b4568": 46, + "56dff2ced2720bb4668b4567": 62, + "56dff338d2720bbd668b4569": 68, + "56dff3afd2720bba668b4567": 71, + "56dff421d2720b5f5a8b4567": 42, + "56dff4a2d2720bbd668b456a": 36, + "56dff4ecd2720b5f5a8b4568": 10, + "56e05b06d2720bb2668b4586": 2, + "56ea6fafd2720b844b8b4593": 3, + "56ea70acd2720b844b8b4594": 5, + "56ea7165d2720b6e518b4583": 1, + "56ea7293d2720b8d4b8b45ba": 11, + "56ea8222d2720b69698b4567": 1, + "56eabcd4d2720b66698b4574": 2, + "56eabf3bd2720b75698b4569": 1, + "570fd6c2d2720bc6458b457f": 1, + "570fd721d2720bc5458b4596": 2, + "570fd79bd2720bc7458b4583": 1, + "571659bb2459771fb2755a12": 2, + "571a279b24597720b4066566": 1, + "571a28e524597720b4066567": 3, + "57235b6f24597759bf5a30f1": 2, + "5733279d245977289b77ec24": 4, + "573474f924597738002c6174": 4, + "5734758f24597738025ee253": 1, + "573475fb24597737fb1379e1": 5, + "573476d324597737da2adc13": 9, + "573476f124597737e04bf328": 8, + "5734770f24597738025ee254": 8, + "5734773724597737fd047c14": 80, + "5734779624597737e04bf329": 5, + "573477e124597737dd42e191": 3, + "5734781f24597737e04bf32a": 7, + "573478bc24597738002c6175": 2, + "5734795124597738002c6176": 7, + "57347b8b24597737dd42e192": 6, + "57347baf24597738002c6178": 2, + "57347c1124597737fb1379e3": 11, + "57347c2e24597744902c94a1": 2, + "57347c5b245977448d35f6e1": 16, + "57347c77245977448d35f6e2": 12, + "57347c93245977448d35f6e3": 4, + "57347cd0245977445a2d6ff1": 6, + "57347d3d245977448f7b7f61": 236, + "57347d5f245977448b40fa81": 158, + "57347d692459774491567cf1": 207, + "57347d7224597744596b4e72": 227, + "57347d8724597744596b4e76": 208, + "57347d90245977448f7b7f65": 241, + "57347d9c245977448b40fa85": 191, + "57347da92459774491567cf5": 203, + "5735ff5c245977640e39ba7e": 67, + "573601b42459776410737435": 36, + "573718ba2459775a75491131": 22, + "573719df2459775a626ccbc2": 38, + "57371aab2459775a77142f22": 13, + "57371e4124597760ff7b25f1": 30, + "5737207f24597760ff7b25f2": 24, + "57372140245977611f70ee91": 36, + "5737218f245977612125ba51": 33, + "57486e672459770abd687134": 1, + "574dad8024597745964bf05c": 2, + "574eb85c245977648157eec3": 11, + "57505f6224597709a92585a9": 169, + "575062b524597720a31c09a1": 172, + "57513f07245977207e26a311": 331, + "57513f9324597720a7128161": 199, + "57513fcc24597720a31c09a6": 189, + "5751435d24597720a27126d1": 216, + "57514643245977207f2c2d09": 133, + "575146b724597720a27126d5": 231, + "5751487e245977207e26a315": 249, + "5751496424597720a27126da": 226, + "5751a25924597722c463c472": 384, + "5751a89d24597722aa0e8db0": 6, + "5755356824597772cb798962": 177, + "5755383e24597772cb798966": 51, + "57616a9e2459773c7a400234": 5, + "576a5ed62459771e9c2096cb": 6, + "576a63cd2459771e796e0e11": 1, + "576a7c512459771e796e0e17": 12, + "576fd4ec2459777f0b518431": 3, + "577d128124597739d65d0e56": 2, + "577e1c9d2459773cd707c525": 2, + "5780cda02459777b272ede61": 2, + "5780cf692459777de4559321": 3, + "5780cf722459777a5108b9a1": 2, + "5780cf7f2459777de4559322": 2, + "5780cf942459777df90dcb72": 39, + "5780cf9e2459777df90dcb73": 3, + "5780cfa52459777dfb276eb1": 17, + "5780d0532459777a5108b9a2": 7, + "5780d0652459777df90dcb74": 1, + "5780d07a2459777de4559324": 2, + "57838f0b2459774a256959b2": 1, + "5783c43d2459774bbe137486": 412, + "5798a2832459774b53341029": 15, + "57a0dfb82459774d3078b56c": 7, + "57a0e5022459774d1673f889": 25, + "57a3459f245977764a01f703": 3, + "57ac965c24597706be5f975c": 2, + "57aca93d2459771f2c7e26db": 1, + "57acb6222459771ec34b5cb0": 2, + "57ade1442459771557167e15": 1, + "57ae0171245977343c27bfcf": 6, + "57af48872459771f0b2ebf11": 3, + "57c55efc2459772d2c6271e7": 2, + "57c55f172459772d27602381": 1, + "57c5ac0824597754771e88a9": 5, + "57c69dd424597774c03b7bbc": 1, + "57c9a89124597704ee6faec1": 22, + "57cff947245977638e6f2a19": 2, + "57cffcd624597763133760c5": 1, + "57cffcdd24597763f5110006": 1, + "57cffddc24597763133760c6": 2, + "57cffe0024597763b03fc60b": 1, + "57cffe20245977632f391a9d": 4, + "57d152ec245977144076ccdf": 3, + "57d17c5e2459775a5c57d17d": 3, + "57da93632459771cb65bf83f": 3, + "57dbb57e2459774673234890": 3, + "57ee59b42459771c7b045da5": 2, + "57fd23e32459772d0805bcf1": 4, + "57ffa9f4245977728561e844": 4, + "57ffaea724597779f52b3a4d": 3, + "57ffb0062459777a045af529": 2, + "57ffb0e42459777d047111c5": 2, + "5827272a24597748c74bdeea": 3, + "58272b392459774b4c7b3ccd": 4, + "58272b842459774abc128d50": 3, + "58272d7f2459774f6311ddfd": 7, + "58491f3324597764bc48fa02": 2, + "584924ec24597768f12ae244": 2, + "587df583245977373c4f1129": 1, + "587e08ee245977446b4410cf": 1, + "58820d1224597753c90aeb13": 16, + "588226d124597767ad33f787": 5, + "588226dd24597767ad33f789": 2, + "588226e62459776e3e094af7": 1, + "588226ef24597767af46e39c": 3, + "58864a4f2459770fcc257101": 25, + "5887431f2459777e1612938f": 37, + "5888945a2459774bf43ba385": 3, + "5888988e24597752fe43a6fa": 3, + "58889c7324597754281f9439": 1, + "588b56d02459771481110ae2": 1, + "58949edd86f77409483e16a9": 7, + "5894a05586f774094708ef75": 3, + "5894a2c386f77427140b8342": 4, + "58ac1bf086f77420ed183f9f": 2, + "58aeaaa886f7744fc1560f81": 1, + "58c157be86f77403c74b2bb6": 4, + "58c157c886f774032749fb06": 1, + "58d2912286f7744e27117493": 2, + "58d2946386f774496974c37e": 1, + "58d2946c86f7744e271174b5": 6, + "58d2947686f774485c6a1ee5": 1, + "58d2947e86f77447aa070d53": 1, + "58d39b0386f77443380bf13c": 1, + "58d39d3d86f77445bb794ae7": 2, + "58dd3ad986f77403051cba8f": 36, + "5900b89686f7744e704a8747": 14, + "5909e99886f7740c983b9984": 4, + "590a358486f77429692b2790": 4, + "590a373286f774287540368b": 3, + "590a386e86f77429692b27ab": 4, + "590a391c86f774385a33c404": 3, + "590a3b0486f7743954552bdb": 6, + "590a3c0a86f774385a33c450": 5, + "590a3cd386f77436f20848cb": 6, + "590a3d9c86f774385926e510": 1, + "590a3efd86f77437d351a25b": 2, + "590c2b4386f77425357b6123": 5, + "590c2c9c86f774245b1f03f2": 2, + "590c2d8786f774245b1f03f3": 2, + "590c2e1186f77425357b6124": 1, + "590c311186f77424d1667482": 3, + "590c31c586f774245e3141b2": 3, + "590c346786f77423e50ed342": 5, + "590c35a486f774273531c822": 3, + "590c595c86f7747884343ad7": 3, + "590c5a7286f7747884343aea": 11, + "590c5bbd86f774785762df04": 1, + "590c5c9f86f77477c91c36e7": 4, + "590c5d4b86f774784e1b9c45": 218, + "590c5f0d86f77413997acfab": 187, + "590c621186f774138d11ea29": 486, + "590c657e86f77412b013051d": 92, + "590c661e86f7741e566b646a": 127, + "590c678286f77426c9660122": 47, + "590c695186f7741e566b64a2": 53, + "590de71386f774347051a052": 1, + "590de7e986f7741b096e5f32": 1, + "5913611c86f77479e0084092": 21, + "5913651986f774432f15d132": 4, + "59136a4486f774447a1ed172": 13, + "59136e1e86f774432f15d133": 5, + "59136f6f86f774447a1ed173": 2, + "591382d986f774465a6413a7": 9, + "591383f186f7744a4c5edcf3": 11, + "5913877a86f774432f15d444": 2, + "5913915886f774123603c392": 3, + "5914578086f774123569ffa4": 10, + "59148c8a86f774197930e983": 11, + "59148f8286f7741b951ea113": 2, + "591ae8f986f77406f854be45": 2, + "591af10186f774139d495f0e": 1, + "591af28e86f77414a27a9e1d": 2, + "591afe0186f77431bd616a11": 15, + "591c4efa86f7741030027726": 1, + "591ee00d86f774592f7b841e": 4, + "5926c3b286f774640d189b6b": 5, + "5926d33d86f77410de68ebc0": 4, + "5926f2e086f7745aae644231": 1, + "5937ee6486f77408994ba448": 24, + "5938144586f77473c2087145": 2, + "5938504186f7740991483f30": 24, + "5938603e86f77435642354f4": 41, + "59387a4986f77401cc236e62": 1, + "5938994586f774523a425196": 18, + "593aa4be86f77457f56379f8": 26, + "593d1fa786f7746da62d61ac": 4, + "593d489686f7745c6255d58a": 1, + "593d493f86f7745e6b2ceb22": 2, + "5943ee5a86f77413872d25ec": 3, + "5943eeeb86f77412d6384f6b": 1, + "5947c73886f7747701588af5": 2, + "5947eab886f77475961d96c5": 2, + "5947f92f86f77427344a76b1": 2, + "5947fa2486f77425b47c1a9b": 2, + "595cf16b86f77427440c32e2": 3, + "5998517986f7746017232f7e": 2, + "599860ac86f77436b225ed1a": 1, + "59bfc5c886f7743bf6794e62": 1, + "59bffc1f86f77435b128b872": 2, + "59c1383d86f774290a37e0ca": 2, + "59c63b4486f7747afb151c1c": 3, + "59ccfdba86f7747f2109a587": 2, + "59d625f086f774661516605d": 1, + "59d6272486f77466146386ff": 1, + "59d790f486f77403cb06aec6": 2, + "59db3a1d86f77429e05b4e92": 2, + "59db3acc86f7742a2c4ab912": 1, + "59db3b0886f77429d72fb895": 1, + "59db7eed86f77461f8380365": 2, + "59e0bdb186f774156f04ce82": 5, + "59e0be5d86f7742d48765bd2": 2, + "59e0bed186f774156f04ce84": 2, + "59e0d99486f7744a32234762": 28, + "59e3556c86f7741776641ac2": 2, + "59e3577886f774176a362503": 215, + "59e358a886f7741776641ac3": 3, + "59e3596386f774176c10a2a2": 5, + "59e35abd86f7741778269d82": 2, + "59e35cbb86f7741778269d83": 4, + "59e35de086f7741778269d84": 1, + "59e35ef086f7741777737012": 10, + "59e3606886f77417674759a5": 2, + "59e361e886f774176c10a2a5": 1, + "59e3658a86f7741776641ac4": 3, + "59e366c186f7741778269d85": 2, + "59e36c6f86f774176c10a2a7": 6, + "59e4cf5286f7741778269d8a": 21, + "59e4d24686f7741776641ac7": 5, + "59e4d3d286f774176a36250a": 32, + "59e6542b86f77411dc52a77a": 32, + "59e655cb86f77411dc52a77b": 17, + "59e6658b86f77411d949b250": 16, + "59e68f6f86f7746c9f75e846": 19, + "59e6906286f7746c9f75e847": 36, + "59e690b686f7746c9f75e848": 15, + "59e6918f86f7746c9f75e849": 22, + "59e6920f86f77411d82aa167": 56, + "59e6927d86f77411da468256": 34, + "59e77a2386f7742ee578960a": 11, + "59ecc28286f7746d7a68aa8c": 1, + "59ecc3dd86f7746dc827481c": 1, + "59f8a37386f7747af3328f06": 2, + "59f99a7d86f7745b134aa97b": 3, + "59f9d81586f7744c7506ee62": 1, + "59faf98186f774067b6be103": 2, + "59fafb5d86f774067a6f2084": 3, + "59fafc9386f774067d462453": 3, + "59faff1d86f7746c51718c9c": 1, + "59fb137a86f7740adb646af1": 1, + "59fb375986f7741b681b81a6": 1, + "59fc48e086f77463b1118392": 1, + "5a0060fc86f7745793204432": 4, + "5a01c29586f77474660c694c": 3, + "5a0abb6e1526d8000a025282": 1, + "5a0c59791526d8dba737bba7": 2, + "5a0d63621526d8dba31fe3bf": 3, + "5a0d716f1526d8000d26b1e2": 2, + "5a0dc45586f7742f6b0b73e3": 2, + "5a0dc95c86f77452440fc675": 6, + "5a0ea64786f7741707720468": 4, + "5a0ea69f86f7741cd5406619": 6, + "5a0ea79b86f7741d4a35298e": 2, + "5a0eb38b86f774153b320eb0": 2, + "5a0eb6ac86f7743124037a28": 3, + "5a0ec6d286f7742c0b518fb5": 2, + "5a0ec70e86f7742c0b518fba": 5, + "5a0ee30786f774023b6ee08f": 3, + "5a0ee4b586f7743698200d22": 1, + "5a0ee62286f774369454a7ac": 4, + "5a0ee76686f7743698200d5c": 4, + "5a0eeb1a86f774688b70aa5c": 4, + "5a0eeb8e86f77461257ed71a": 2, + "5a0eebed86f77461230ddb3d": 4, + "5a0eecf686f7740350630097": 2, + "5a0eedb386f77403506300be": 2, + "5a0eee1486f77402aa773226": 1, + "5a0eff2986f7741fd654e684": 2, + "5a0f006986f7741ffd2fe484": 2, + "5a0f045e86f7745b0f0d0e42": 2, + "5a0f068686f7745b0d4ea242": 4, + "5a0f075686f7745bcc42ee12": 5, + "5a0f0f5886f7741c4e32a472": 4, + "5a13ee1986f774794d4c14cd": 4, + "5a13eebd86f7746fd639aa93": 2, + "5a13ef0686f7746e5a411744": 3, + "5a13ef7e86f7741290491063": 1, + "5a13f35286f77413ef1436b0": 4, + "5a13f46386f7741dd7384b04": 2, + "5a144bdb86f7741d374bbde0": 2, + "5a144dfd86f77445cb5a0982": 1, + "5a1452ee86f7746f33111763": 2, + "5a145d4786f7744cbb6f4a12": 1, + "5a145d7b86f7744cbb6f4a13": 2, + "5a145ebb86f77458f1796f05": 2, + "5a16b8a9fcdbcb00165aa6ca": 1, + "5a16b93dfcdbcbcae6687261": 2, + "5a1ead28fcdbcb001912fa9f": 1, + "5a269f97c4a282000b151807": 12, + "5a26abfac4a28232980eabff": 17, + "5a26ac06c4a282000c5a90a8": 28, + "5a26ac0ec4a28200741e1e18": 23, + "5a27b281c4a28200741e1e52": 2, + "5a27b6bec4a282000e496f78": 1, + "5a27bad7c4a282000b15184b": 3, + "5a32a064c4a28200741e22de": 1, + "5a32aa0cc4a28232996e405f": 3, + "5a32aa8bc4a2826c6e06d737": 3, + "5a33a8ebc4a282000c5a950d": 1, + "5a33b2c9c4a282000c5a9511": 1, + "5a33bab6c4a28200741e22f8": 2, + "5a33ca0fc4a282000d72292f": 1, + "5a33cae9c4a28232980eb086": 3, + "5a34f7f1c4a2826c6e06d75d": 1, + "5a34fbadc4a28200741e230a": 3, + "5a34fd2bc4a282329a73b4c5": 2, + "5a3501acc4a282000d72293a": 1, + "5a351711c4a282000b1521a4": 2, + "5a37ca54c4a282000d72296a": 1, + "5a37cb10c4a282329a73b4e7": 4, + "5a38ebd9c4a282000d722a5b": 12, + "5a38ed75c4a28232996e40c6": 1, + "5a398b75c4a282000a51a266": 1, + "5a3c16fe86f77452b62de32a": 37, + "5a5f1ce64f39f90b401987bc": 1, + "5a6086ea4f39f99cd479502f": 4, + "5a608bf24f39f98ffc77720e": 38, + "5a6b5b8a8dc32e001207faf3": 2, + "5a6b5e468dc32e001207faf5": 3, + "5a6f5f078dc32e00094b97dd": 2, + "5a7033908dc32e000a311392": 1, + "5a70366c8dc32e001207fb06": 3, + "5a705e128dc32e000d46d258": 2, + "5a718b548dc32e000d46d262": 4, + "5a71e4f48dc32e001207fb26": 2, + "5a787ebcc5856700142fdd98": 1, + "5a787f25c5856700186c4ab9": 1, + "5a788068c5856700137e4c8f": 2, + "5a788089c5856700142fdd9c": 1, + "5a78813bc5856700186c4abe": 2, + "5a78830bc5856700137e4c90": 6, + "5a78832ec5856700155a6ca3": 3, + "5a789261c5856700186c65d3": 2, + "5a7ad0c451dfba0013379712": 1, + "5a7ad1fb51dfba0013379715": 2, + "5a7ad2e851dfba0016153692": 2, + "5a7ad55551dfba0015068f42": 1, + "5a7ad74e51dfba0015068f45": 4, + "5a7afa25e899ef00135e31b0": 4, + "5a7b32a2e899ef00135e345a": 1, + "5a7b483fe899ef0016170d15": 1, + "5a7b4900e899ef197b331a2a": 2, + "5a7c74b3e899ef0014332c29": 3, + "5a7d90eb159bd400165484f1": 2, + "5a7dbfc1159bd40016548fde": 1, + "5a800961159bd4315e3a1657": 1, + "5a8036fb86f77407252ddc02": 14, + "5a80a29286f7742b25692012": 11, + "5a9548c9159bd400133e97b3": 2, + "5a957c3fa2750c00137fa5f7": 2, + "5a966ec8a2750c00171b3f36": 1, + "5a966f51a2750c00156aacf6": 1, + "5a9d56c8a2750c0032157146": 2, + "5a9d6d00a2750c5c985b5305": 1, + "5a9d6d13a2750c00164f6b03": 2, + "5a9d6d21a2750c00137fa649": 3, + "5a9d6d34a2750c00141e07da": 1, + "5a9e81fba2750c00164f6b11": 2, + "5a9fb739a2750c003215717f": 2, + "5a9fbacda2750c00141e080f": 1, + "5a9fbb74a2750c0032157181": 5, + "5a9fbb84a2750c00137fa685": 4, + "5a9fc7e6a2750c0032157184": 1, + "5aa66a9be5b5b0214e506e89": 2, + "5aa66be6e5b5b0214e506e97": 4, + "5aa66c72e5b5b00016327c93": 1, + "5aaa5dfee5b5b000140293d3": 1, + "5aaa5e60e5b5b000140293d6": 3, + "5aaf8a0be5b5b00015693243": 4, + "5ab372a310e891001717f0d8": 7, + "5abcc328d8ce8700194394f3": 2, + "5ac66bea5acfc43b321d4aec": 1, + "5ac66c5d5acfc4001718d314": 2, + "5ad5ccd186f774446d5706e9": 4, + "5ad5cfbd86f7742c825d6104": 4, + "5ad5d20586f77449be26d877": 13, + "5ad5d49886f77455f9731921": 37, + "5ad5d64486f774079b080af8": 3, + "5ad5db3786f7743568421cce": 2, + "5ad7242b86f7740a6a3abd43": 3, + "5addaffe86f77470b455f900": 2, + "5addbb825acfc408fb139400": 3, + "5addbb945acfc4001a5fc44e": 2, + "5addbba15acfc400185c2854": 1, + "5addbf175acfc408fb13965b": 2, + "5addbfd15acfc40015621bde": 1, + "5addbfe15acfc4001a5fc58b": 1, + "5addc00b5acfc4001669f144": 1, + "5addc7005acfc4001669f275": 1, + "5addc7ac5acfc400194dbd90": 1, + "5addc7db5acfc4001669f279": 1, + "5ae30c9a5acfc408fb139a03": 1, + "5ae35b315acfc4001714e8b0": 3, + "5af0454c86f7746bf20992e8": 156, + "5af0484c86f7740f02001f7f": 3, + "5af0534a86f7743b6f354284": 4, + "5af0548586f7743a532b7e99": 68, + "5af0561e86f7745f5f3ad6ac": 2, + "5afd7ded5acfc40017541f5e": 1, + "5afd7e095acfc40017541f61": 3, + "5b04473a5acfc40018632f70": 1, + "5b057b4f5acfc4771e1bd3e9": 6, + "5b07db875acfc40dc528a5f6": 1, + "5b07dd285acfc4001754240d": 2, + "5b0800175acfc400153aebd4": 1, + "5b099a9d5acfc47a8607efe7": 1, + "5b099ac65acfc400186331e1": 3, + "5b099b7d5acfc400186331e4": 1, + "5b099bf25acfc4001637e683": 1, + "5b1fb3e15acfc4001637f068": 5, + "5b222d335acfc4771e1be099": 1, + "5b222d405acfc400153af4fe": 1, + "5b2240bf5acfc40dc528af69": 1, + "5b2388675acfc4771e1be0be": 5, + "5b2389515acfc4771e1be0c0": 1, + "5b30b0dc5acfc400153b7124": 2, + "5b30bc165acfc40016387293": 1, + "5b31163c5acfc400153b71cb": 2, + "5b3116595acfc40019476364": 1, + "5b363dd25acfc4001a598fd2": 1, + "5b3a08b25acfc4001754880c": 2, + "5b3a16655acfc40016387a2a": 3, + "5b3a337e5acfc4704b4a19a0": 2, + "5b3b6dc75acfc47a8773fb1e": 1, + "5b3b99475acfc432ff4dcbee": 2, + "5b3f7bf05acfc433000ecf6b": 3, + "5b3f7c005acfc4704b4a1de8": 1, + "5b4335ba86f7744d2837a264": 7, + "5b43575a86f77424f443fe62": 3, + "5b4736a986f774040571e998": 2, + "5b4736b986f77405cb415c10": 1, + "5b7be2345acfc400196d524a": 2, + "5b7be4575acfc400161d0832": 3, + "5b7be4645acfc400170e2dcc": 2, + "5b7be46e5acfc400170e2dcf": 2, + "5b7be4895acfc400170e2dd5": 2, + "5b7bebc85acfc43bca706666": 2, + "5b7bedd75acfc43d825283f9": 5, + "5b7bef1e5acfc43d82528402": 1, + "5b7bef5d5acfc43bca7067a3": 1, + "5b7bef9c5acfc43d102852ec": 4, + "5b7d37845acfc400170e2f87": 1, + "5b7d63b75acfc400170e2f8a": 1, + "5b7d63cf5acfc4001876c8df": 1, + "5b7d64555acfc4001876c8e2": 1, + "5b7d678a5acfc4001a5c4022": 2, + "5b7d679f5acfc4001a5c4024": 2, + "5b7d68af5acfc400170e30c3": 1, + "5b7d693d5acfc43bca706a3d": 1, + "5b800e9286f7747a8b04f3ff": 4, + "5b800ebc86f774394e230a90": 1, + "5b84038986f774774913b0c1": 2, + "5b86a0e586f7745b600ccb23": 1, + "5ba264f6d4351e0034777d52": 2, + "5ba26586d4351e44f824b340": 1, + "5ba2678ad4351e44f824b344": 19, + "5ba26812d4351e003201fef1": 35, + "5ba26835d4351e0035628ff5": 9, + "5ba26844d4351e00334c9475": 4, + "5bae13ded4351e44f824bf38": 1, + "5bb20d92d4351e00853263eb": 2, + "5bb20da5d4351e0035629dbf": 2, + "5bb20dadd4351e00367faeff": 5, + "5bb20de5d4351e0035629e59": 2, + "5bb20df1d4351e00347787d5": 2, + "5bb20dfcd4351e00334c9e24": 1, + "5bb20e0ed4351e3bac1212dc": 2, + "5bb20e70d4351e0035629f8f": 3, + "5bbdb811d4351e45020113c7": 2, + "5bbdb83fd4351e44f824c44b": 3, + "5bbdb870d4351e00367fb67d": 3, + "5bbdb8bdd4351e4502011460": 2, + "5bbde409d4351e003562b036": 1, + "5bbde41ed4351e003562b038": 1, + "5bc09a18d4351e003562b68e": 1, + "5bc09a30d4351e00367fb7c8": 3, + "5bc5a351d4351e003477a414": 1, + "5bc5a35cd4351e450201232f": 3, + "5bc5a372d4351e44f824d17f": 4, + "5bc9b156d4351e00367fbce9": 82, + "5bc9b355d4351e6d1509862a": 1, + "5bc9bdb8d4351e003562b8a1": 1, + "5bc9be8fd4351e00334cae6e": 3, + "5bc9c29cd4351e003562b8a3": 103, + "5be4038986f774527d3fae60": 16, + "5bed61680db834001d2c45ab": 3, + "5bed625c0db834001c062946": 1, + "5beec2820db834001b095426": 3, + "5beec8b20db834001961942a": 3, + "5beec8c20db834001d2c465c": 2, + "5beec8ea0db834001a6f9dbf": 3, + "5bfd4cd60db834001c38f095": 2, + "5bfe86a20db834001d23e8f7": 2, + "5bfe86df0db834001b734685": 1, + "5bfea7ad0db834001c38f1ee": 4, + "5bfebc530db834001d23eb65": 3, + "5bffd7ed0db834001d23ebf9": 1, + "5bffe7c50db834001d23ece1": 3, + "5bffec120db834001c38f5fa": 2, + "5c0009510db834001966907f": 1, + "5c0102aa0db834001b734ba1": 2, + "5c0102b20db834001d23eebc": 5, + "5c0111ab0db834001966914d": 1, + "5c0505e00db834001b735073": 1, + "5c0517910db83400232ffee5": 2, + "5c052a900db834001a66acbd": 2, + "5c0530ee86f774697952d952": 1, + "5c05413a0db834001c390617": 2, + "5c0548ae0db834001966a3c2": 2, + "5c06595c0db834001a66af6c": 1, + "5c066e3a0db834001b7353f0": 2, + "5c0673fb0db8340023300271": 1, + "5c06779c86f77426e00dd782": 10, + "5c06782b86f77426df5407d2": 5, + "5c0684e50db834002a12585a": 1, + "5c0695860db834001b735461": 4, + "5c0696830db834001d23f5da": 2, + "5c079ed60db834001a66b372": 1, + "5c07a8770db8340023300450": 2, + "5c07dd120db834001c39092d": 1, + "5c0d56a986f774449d5de529": 14, + "5c0d591486f7744c505b416f": 18, + "5c0d5ae286f7741e46554302": 23, + "5c0d5e4486f77478390952fe": 19, + "5c0d668f86f7747ccb7f13b2": 10, + "5c0d688c86f77413ae3407b2": 12, + "5c0e2f5cd174af02a012cfc9": 1, + "5c0e2f94d174af029f650d56": 2, + "5c0e530286f7747fa1419862": 62, + "5c0e531286f7747fa54205c2": 68, + "5c0e531d86f7747fa23f4d42": 147, + "5c0e533786f7747fa23f4d47": 51, + "5c0e534186f7747fa1419867": 44, + "5c0fa877d174af02a012e1cf": 137, + "5c0fafb6d174af02a96260ba": 1, + "5c10c8fd86f7743d7d706df3": 64, + "5c11046cd174af02a012e42b": 1, + "5c12620d86f7743f8b198b72": 1, + "5c1265fc86f7743f896a21c2": 1, + "5c12688486f77426843c7d32": 2, + "5c13cd2486f774072c757944": 6, + "5c13cef886f774072e618e82": 4, + "5c18b90d2e2216152142466b": 5, + "5c18b9192e2216398b5a8104": 3, + "5c1bc4812e22164bef5cfde7": 1, + "5c1bc5af2e221602b412949b": 1, + "5c1bc5fb2e221602b1779b32": 1, + "5c1bc7432e221602b412949d": 1, + "5c1bc7752e221602b1779b34": 2, + "5c1cd46f2e22164bef5cfedb": 1, + "5c1cdd302e221602b3137250": 1, + "5c1cdd512e22161b267d91ae": 1, + "5c1e2a1e86f77431ea0ea84c": 4, + "5c1e2d1f86f77431e9280bee": 5, + "5c3df7d588a4501f290594e5": 37, + "5c471c442e221602b542a6f8": 1, + "5c4ee3d62e2216152006f302": 1, + "5c4eec9b2e2216398b5aaba2": 1, + "5c4eecc32e221602b412b440": 1, + "5c503ac82e221602b21d6e9a": 3, + "5c503ad32e2216398b5aada2": 1, + "5c5952732e2216398b5abda2": 2, + "5c5970672e221602b21d7855": 2, + "5c5db5c62e22160012542255": 1, + "5c5db5f22e2216000e5e47e8": 1, + "5c5db5fc2e2216000f1b2842": 2, + "5c5db6302e2216000e5e47f0": 2, + "5c5db6552e2216001026119d": 1, + "5c5db6652e221600113fba51": 5, + "5c5db6742e2216000f1b2852": 1, + "5c5db6ee2e221600113fba54": 3, + "5c5db6f82e2216003a0fe914": 2, + "5c6161fb2e221600113fbde5": 2, + "5c61627a2e22160012542c55": 3, + "5c617a5f2e2216000f1e81b3": 1, + "5c61a40d2e2216001403158d": 1, + "5c6beec32e221601da3578f2": 2, + "5c6bf4aa2e2216001219b0ae": 1, + "5c6c2c9c2e2216000f2002e4": 4, + "5c6d10e82e221601da357b07": 1, + "5c6d10fa2e221600106f3f23": 2, + "5c6d11072e2216000e69d2e4": 1, + "5c6d42cb2e2216000e69d7d1": 3, + "5c6d450c2e221600114c997d": 1, + "5c6d46132e221601da357d56": 3, + "5c6d710d2e22165df16b81e7": 1, + "5c6d7b3d2e221600114c9b7d": 1, + "5c78f26f2e221601da3581d1": 2, + "5c78f2792e221600106f4683": 1, + "5c78f2882e22165df16b832e": 1, + "5c791e872e2216001219c40a": 2, + "5c7951452e221644f31bfd5c": 2, + "5c7954d52e221600106f4cc7": 1, + "5c7955c22e221644f31bfd5e": 1, + "5c7d55de2e221644f31bff68": 2, + "5c7d55f52e221644f31bff6a": 1, + "5c7e5f112e221600106f4ede": 1, + "5c7e8fab2e22165df16b889b": 2, + "5c7fb51d2e2216001219ce11": 2, + "5c7fc87d2e221644f31c0298": 3, + "5c82342f2e221644f31c060e": 6, + "5c82343a2e221644f31c0611": 2, + "5c878e9d2e2216000f201903": 1, + "5c878ebb2e2216001219d48a": 1, + "5c87a07c2e2216001219d4a2": 2, + "5c87ca002e221600114cb150": 5, + "5c88f24b2e22160bc12c69a6": 1, + "5c90c3622e221601da359851": 4, + "5c920e902e221644f31c3c99": 1, + "5c925fa22e221601da359b7b": 7, + "5c99f3592e221644fc633070": 2, + "5c9a1c3a2e2216000e69fb6a": 3, + "5c9a25172e2216000f20314e": 2, + "5cadc2e0ae9215051e1c21e7": 1, + "5cadd954ae921500103bb3c2": 9, + "5cadf6ddae9215051e1c23b2": 10, + "5cadf6e5ae921500113bb973": 26, + "5cadf6eeae921500134b2799": 16, + "5caf1109ae9215753c44119f": 3, + "5caf17c9ae92150b30006be1": 1, + "5cbda392ae92155f3c17c39f": 2, + "5cbda9f4ae9215000e5b9bfc": 2, + "5cbdaf89ae9215000e5b9c94": 2, + "5cbdc23eae9215001136a407": 1, + "5cc6ea85e4a949000e1ea3c3": 1, + "5cc700d4e4a949000f0f0f28": 1, + "5cc700ede4a949033c734315": 2, + "5cc7012ae4a949001252b43e": 2, + "5cc80f38e4a949001152b560": 18, + "5cc80f53e4a949000e1ea4f8": 20, + "5cc80f67e4a949035e43bbba": 16, + "5cc80f79e4a949033c7343b2": 47, + "5cc80f8fe4a949033b0224a2": 51, + "5cc86832d7f00c000d3a6e6c": 20, + "5cc86840d7f00c002412c56c": 22, + "5cc9ad73d7f00c000e2579d4": 4, + "5cc9b815d7f00c000e2579d6": 2, + "5cc9bcaed7f00c011c04e179": 2, + "5cc9c20cd7f00c001336c65d": 1, + "5cdd7685d7f00c000f260ed2": 2, + "5cde739cd7f00c0010373bd3": 2, + "5cdeac22d7f00c000f26168f": 1, + "5cdeac42d7f00c000d36ba73": 1, + "5cdeac5cd7f00c000f261694": 2, + "5cdeaca5d7f00c00b61c4b70": 1, + "5ce69cbad7f00c00b61c5098": 3, + "5cf12a15d7f00c05464b293f": 1, + "5cf13123d7f00c1085616a50": 2, + "5cf4e3f3d7f00c06595bc7f0": 1, + "5cf50850d7f00c056e24104c": 1, + "5cf508bfd7f00c056e24104e": 2, + "5cf50fc5d7f00c056c53f83c": 1, + "5cf518cfd7f00c065b422214": 1, + "5cf54404d7f00c108840b2ef": 5, + "5cf638cbd7f00c06595bc936": 4, + "5cf67cadd7f00c065a5abab7": 3, + "5cf6937cd7f00c056c53fb39": 2, + "5cf78496d7f00c065703d6ca": 2, + "5cf79389d7f00c10941a0c4d": 4, + "5cf8f3b0d7f00c00217872ef": 1, + "5cfe8010d7ad1a59283b14c6": 2, + "5cff9e5ed7ad1a09407397d4": 1, + "5cff9e84d7ad1a049e54ed55": 1, + "5d00e0cbd7ad1a6c6566a42d": 3, + "5d00ec68d7ad1a04a067e5be": 2, + "5d00ede1d7ad1a0940739a76": 2, + "5d00ef6dd7ad1a0940739b16": 1, + "5d0236dad7ad1a0940739d29": 3, + "5d023784d7ad1a049d4aa7f2": 1, + "5d025cc1d7ad1a53845279ef": 1, + "5d02676dd7ad1a049e54f6dc": 1, + "5d02677ad7ad1a04a15c0f95": 1, + "5d026791d7ad1a04a067ea63": 1, + "5d02778e86f774203e7dedbe": 66, + "5d02797c86f774203f38e30a": 60, + "5d0375ff86f774186372f685": 1, + "5d0376a486f7747d8050965c": 3, + "5d0377ce86f774186372f689": 2, + "5d03784a86f774203e7e0c4d": 2, + "5d0378d486f77420421a5ff4": 1, + "5d03794386f77420415576f5": 1, + "5d0379a886f77420407aa271": 3, + "5d0a3a58d7ad1a669c15ca14": 12, + "5d0a3e8cd7ad1a6f6a3d35bd": 3, + "5d10b49bd7ad1a1a560708b0": 1, + "5d120a10d7ad1a4e1026ba85": 3, + "5d120a28d7ad1a1c8962e295": 4, + "5d122e7bd7ad1a07102d6d7f": 1, + "5d123102d7ad1a004e475fe5": 1, + "5d133067d7ad1a33013f95b4": 2, + "5d1340b3d7ad1a0b52682ed7": 3, + "5d1340bdd7ad1a0e8d245aab": 2, + "5d135e83d7ad1a21b83f42d8": 1, + "5d135ecbd7ad1a21c176542e": 2, + "5d15ce51d7ad1a1eff619092": 4, + "5d19cd96d7ad1a4a992c9f52": 1, + "5d1b198cd7ad1a604869ad72": 1, + "5d1b2f3f86f774252167a52c": 1, + "5d1b2ffd86f77425243e8d17": 1, + "5d1b304286f774253763a528": 1, + "5d1b309586f77425227d1676": 7, + "5d1b313086f77425227d1678": 4, + "5d1b317c86f7742523398392": 2, + "5d1b31ce86f7742523398394": 1, + "5d1b327086f7742525194449": 2, + "5d1b32c186f774252167a530": 2, + "5d1b33a686f7742523398398": 32, + "5d1b371186f774253763a656": 2, + "5d1b376e86f774252519444e": 19, + "5d1b385e86f774252167b98a": 1, + "5d1b392c86f77425243e98fe": 3, + "5d1b39a386f774252339976f": 1, + "5d1b3a5d86f774252167ba22": 3, + "5d1b3f2d86f774253763b735": 1, + "5d1c702ad7ad1a632267f429": 1, + "5d1c774f86f7746d6620f8db": 1, + "5d1c819a86f774771b0acd6c": 5, + "5d1f819086f7744b355c219b": 1, + "5d235a5986f77443f6329bc6": 1, + "5d2369418abbc306c62e0c80": 1, + "5d25a4a98abbc30b917421a4": 2, + "5d25a6a48abbc306c62e6310": 4, + "5d25a7b88abbc3054f3e60bc": 1, + "5d25d0ac8abbc3054f3e61f7": 1, + "5d2c772c48f0355d95672c25": 2, + "5d2c829448f0353a5c7d6674": 1, + "5d2dc3e548f035404a1a4798": 2, + "5d2f213448f0355009199284": 3, + "5d3eb59ea4b9361c284bb4b2": 1, + "5d3eb5eca4b9363b1f22f8e4": 1, + "5d3ef698a4b9361182109872": 2, + "5d403f9186f7743cac3f229b": 168, + "5d40407c86f774318526545a": 201, + "5d40412b86f7743cb332ac3a": 4, + "5d40419286f774318526545f": 1, + "5d4041f086f7743cac3f22a7": 2, + "5d40425986f7743185265461": 1, + "5d4042a986f7743185265463": 1, + "5d4405f0a4b9361e6a4e6bd9": 1, + "5d440625a4b9361eec4ae6c5": 3, + "5d44064fa4b9361e4f6eb8b5": 1, + "5d4406a8a4b9361e4f6eb8b7": 1, + "5d440b9fa4b93601354d480c": 1, + "5d443f8fa4b93678dd4a01aa": 1, + "5d4aaa54a4b9365392071170": 1, + "5d4aab30a4b9365435358c55": 1, + "5d63d33b86f7746ea9275524": 1, + "5d6e6806a4b936088465b17e": 16, + "5d6e6869a4b9361c140bcfde": 11, + "5d6e6891a4b9361bd473feea": 15, + "5d6e689ca4b9361bc8618956": 7, + "5d6e68a8a4b9360b6c0d54e2": 19, + "5d6e68b3a4b9361bca7e50b5": 11, + "5d6e68c4a4b9361b93413f79": 29, + "5d6e68d1a4b93622fe60e845": 9, + "5d6e68dea4b9361bcc29e659": 11, + "5d6e68e6a4b9361c140bcfe0": 9, + "5d6e6911a4b9361bd5780d52": 19, + "5d6e695fa4b936359b35d852": 16, + "5d6e69b9a4b9361bc8618958": 21, + "5d6e69c7a4b9360b6c0d54e4": 17, + "5d6e6a05a4b93618084f58d0": 28, + "5d6e6a42a4b9364f07165f52": 14, + "5d6e6a53a4b9361bd473feec": 16, + "5d6e6a5fa4b93614ec501745": 10, + "5d6fc78386f77449d825f9dc": 4, + "5d6fc87386f77449db3db94e": 3, + "5d7b6bafa4b93652786f4c76": 4, + "5d80c62a86f7744036212b3f": 1, + "5d80c66d86f774405611c7d6": 1, + "5d80c6c586f77440351beef1": 2, + "5d80c6fc86f774403a401e3c": 1, + "5d80c78786f774403a401e3e": 4, + "5d80c88d86f77440556dbf07": 1, + "5d80c8f586f77440373c4ed0": 2, + "5d80c93086f7744036212b41": 2, + "5d80ca9086f774403a401e40": 2, + "5d80cab086f77440535be201": 1, + "5d80cb3886f77440556dbf09": 1, + "5d80cb5686f77440545d1286": 3, + "5d80cb8786f774405611c7d9": 1, + "5d80ccac86f77470841ff452": 2, + "5d80ccdd86f77474f7575e02": 1, + "5d80cd1a86f77402aa362f42": 1, + "5d8e0db586f7744450412a42": 2, + "5d8e15b686f774445103b190": 4, + "5d947d3886f774447b415893": 2, + "5d947d4e86f774447b415895": 1, + "5d95d6be86f77424444eb3a7": 2, + "5d95d6fa86f77424484aa5e9": 3, + "5d9f1fa686f774726974a992": 2, + "5da46e3886f774653b7a83fe": 1, + "5da5cdcd86f774529238fb9b": 1, + "5da743f586f7744014504f72": 1, + "5dcbe965e4ed22586443a79d": 1, + "5de8e8dafd6b4e6e2276dc32": 3, + "5de8ea8ffd6b4e6e2276dc35": 3, + "5de8eaadbbaf010b10528a6d": 1, + "5df25b6c0b92095fd441e4cf": 1, + "5df8a72c86f77412640e2e83": 2, + "5df8e085bb49d91fb446d6a8": 3, + "5df8f535bb49d91fb446d6b0": 3, + "5df8f541c41b2312ea3335e3": 1, + "5df917564a9f347bc92edca3": 1, + "5dfa3cd1b33c0951220c079b": 3, + "5dfa3d2b0dee1b22f862eade": 2, + "5dfa3d45dfc58d14537c20b0": 2, + "5dfa3d7ac41b2312ea33362a": 3, + "5dfa3d950dee1b22f862eae0": 1, + "5dfe14f30b92095fd441edaf": 2, + "5dfe6104585a0c3e995c7b82": 3, + "5dff772da3651922b360bf91": 7, + "5dff77c759400025ea5150cf": 1, + "5dff8db859400025ea5150d4": 1, + "5e01e9e273d8eb11426f5bc3": 1, + "5e01ea19e9dc277128008c0b": 1, + "5e023cf8186a883be655e54f": 15, + "5e023d34e8a400319a28ed44": 9, + "5e023d48186a883be655e551": 3, + "5e023e53d4353e3302577c4c": 52, + "5e023e6e34d52a55c3304f71": 28, + "5e023e88277cce2b522ff2b1": 14, + "5e208b9842457a4a7a33d074": 1, + "5e217ba4c1434648c13568cd": 1, + "5e21a3c67e40bd02257a008a": 1, + "5e21ca18e4d47f0da15e77dd": 2, + "5e2aedd986f7746d404f3aa4": 3, + "5e2aee0a86f774755a234b62": 1, + "5e2aef7986f7746d3f3c33f5": 2, + "5e2af00086f7746d3f3c33f7": 5, + "5e2af02c86f7746d420957d4": 1, + "5e2af22086f7746d3f3c33fa": 5, + "5e2af29386f7746d4159f077": 1, + "5e2af2bc86f7746d3f3c33fc": 5, + "5e2af37686f774755a234b65": 1, + "5e2af41e86f774755a234b67": 3, + "5e2af47786f7746d404f3aaa": 7, + "5e2af4a786f7746d3f3c3400": 5, + "5e2af4d286f7746d4159f07a": 5, + "5e2af51086f7746d3f3c3402": 3, + "5e42c71586f7747f245e1343": 1, + "5e54f6af86f7742199090bf3": 2, + "5e569a0156edd02abe09f27d": 1, + "5e569a132642e66b0b68015c": 2, + "5e569a2e56edd02abe09f280": 2, + "5e81f423763d9f754677bf2e": 20, + "5e831507ea0a7c419c2f9bd9": 151, + "5e8488fa988a8701445df1e4": 155, + "5e85a9a6eacf8c039e4e2ac1": 10, + "5e85a9f4add9fe03027d9bf1": 3, + "5e85aa1a988a8701445df1f5": 8, + "5e8f3423fd7471236e6e3b64": 75, + "5ea034eb5aad6446a939737b": 7, + "5ea034f65aad6446a939737e": 2, + "5ea16acdfadf1d18c87b0784": 1, + "5ea16ada09aa976f2e7a51be": 1, + "5ea172e498dacb342978818e": 1, + "5ea17bbc09aa976f2e7a51cd": 5, + "5ea2a8e200685063ec28c05a": 12, + "5ed515c8d380ab312177c0fa": 56, + "5ed515e03a40a50460332579": 27, + "5ed515ece452db0eb56fc028": 27, + "5ed515f6915ec335206e4152": 28, + "5ed5160a87bb8443d10680b5": 24, + "5ed51652f6c34d2cc26336a1": 35, + "5ed5166ad380ab312177c100": 15, + "5ede4739e0350d05467f73e8": 8, + "5ede47405b097655935d7d16": 3, + "5ede474b0c226a66f5402622": 4, + "5ede475339ee016e8c534742": 24, + "5ede475b549eed7c6d5c18fb": 5, + "5ede7a8229445733cb4c18e2": 3, + "5eea21647547d6330471b3c9": 1, + "5eea217fc64c5d0dfc05712a": 1, + "5eeb2ff5ea4f8b73c827350b": 1, + "5ef1b9f0c64c5d0dfc0571a1": 1, + "5ef1ba28c64c5d0dfc0571a5": 2, + "5ef3448ab37dfd6af863525c": 1, + "5ef366938cef260c0642acad": 7, + "5ef61964ec7f42238c31e0c1": 1, + "5efaf417aeb21837e749c7f2": 1, + "5efb0c1bd79ff02a1f5e68d9": 2, + "5efb0cabfb3e451d70735af5": 13, + "5efb0d4f4bc50b58e81710f3": 21, + "5efb0da7a29a85116f6ea05f": 8, + "5efb0e16aeb21837e749c7ff": 9, + "5efb0fc6aeb21837e749c801": 8, + "5eff09cd30a7dc22fd1ddfed": 6, + "5f0596629e22f464da6bbdd9": 17, + "5f0c892565703e5c461894e9": 6, + "5f2aa43ba9b91d26f20ae6d2": 2, + "5f2aa4559b44de6b1b4e68d1": 4, + "5f3e77f59103d430b93f94c1": 1, + "5f3e7801153b8571434a924c": 3, + "5f6331e097199b7db2128dc2": 1, + "5f6336bbda967c74a42e9932": 1, + "5f6339d53ada5942720e2dc3": 1, + "5f633f791b231926f2329f13": 1, + "5f63405df5750b524b45f114": 2, + "5f63407e1b231926f2329f15": 1, + "5f6340d3ca442212f4047eb2": 1, + "5f6341043ada5942720e2dc5": 2, + "5f63418ef5750b524b45f116": 2, + "5f6372e2865db925d54f3869": 1, + "5f647f31b6238e5dd066e196": 9, + "5fb651b52b1b027b1f50bcff": 1, + "5fb651dc85f90547f674b6f4": 1, + "5fb655a72b1b027b1f50bd06": 1, + "5fb655b748c711690e3a8d5a": 3, + "5fb6564947ce63734e3fa1da": 5, + "5fb6567747ce63734e3fa1dc": 2, + "5fbb978207e8a97d1f0902d3": 2, + "5fbbaa86f9986c4cff3fe5f6": 1, + "5fbc226eca32ed67276c155d": 2, + "5fbc227aa56d053a3543f79e": 1, + "5fbc22ccf24b94483f726483": 1, + "5fbcbd02900b1d5091531dd3": 1, + "5fbcc429900b1d5091531dd7": 2, + "5fbe3ffdf8b6a877a729ea82": 16, + "5fbe7618d6fa9c00c571bb6c": 2, + "5fc0f9b5d724d907e2077d82": 4, + "5fc0f9cbd6fa9c00c571bb90": 2, + "5fc23636016cce60e8341b05": 1, + "5fc275cf85fd526b824a571a": 7, + "5fc382a9d724d907e2077dab": 7, + "5fc382b6d6fa9c00c571bbc3": 2, + "5fc382c1016cce60e8341b20": 14, + "5fc3e466187fea44d52eda90": 3, + "5fc4b97bab884124df0cd5e3": 1, + "5fc4b992187fea44d52edaa9": 4, + "5fca138c2a7b221b2852a5c6": 15, + "5fca13ca637ee0341a484f46": 30, + "5fce0cf655375d18a253eff0": 1, + "5fce16961f152d4312622bc9": 1, + "5fd20ff893a8961fc660a954": 18, + "60098ad7c2240c0fe85c570a": 94, + "60098af40accd37ef2175f27": 145, + "60098b1705871270cd5352a1": 96, + "60194943740c5d77f6705eea": 14, + "601949593ae8f707c4608daa": 4, + "601aa3d2b2bcb34913271e6d": 9, + "602286df23506e50807090c6": 2, + "602a95fe4e02ce1eaa358729": 2, + "602a97060ddce744014caf6f": 2, + "602e620f9b513876d4338d9a": 3, + "6034e3cb0ddce744014cb870": 2, + "6034e3e20ddce744014cb878": 1, + "60391a8b3364dc22b04d0ce5": 2, + "60391afc25aff57af81f7085": 2, + "60391b0fb847c71012789415": 2, + "60658776f2cb2e02a42ace2b": 2, + "6065878ac9cf8012264142fd": 3, + "606587d11246154cad35d635": 2, + "6065881d1246154cad35d637": 1, + "606ee5c81246154cad35d65e": 1, + "606eef756d0bd7580617baf8": 1, + "606ef0812535c57a13424d20": 2, + "606f262c6d0bd7580617bafa": 1, + "606f263a8900dc2d9a55b68d": 2, + "6076c1b9f2cb2e02a42acedc": 2, + "607ffb988900dc2d9a55b6e4": 3, + "6087e2a5232e5a31c233d552": 2, + "6087e663132d4d12c81fd96b": 1, + "609269c3b0e443224b421cc1": 1, + "609a4b4fe2ff132951242d04": 2, + "609a63b6e2ff132951242d09": 1, + "609b9e31506cf869cf3eaf41": 2, + "60b0f561c4449e4cb624c1d7": 1, + "60b0f7057897d47c5b04ab94": 1, + "60b0f93284c20f0feb453da7": 104, + "6113c3586c780c1e710c90bc": 3, + "6113d6c3290d254f5e6b27db": 2, + "612e0cfc8004cc50514c2d9e": 1, + "612e0d3767085e45ef14057f": 4, + "612e0e3c290d254f5e6b291d": 2, + "612e0e55a112697a4b3a66e7": 1, + "6130c3dffaa1272e43151c7d": 1, + "6130c43c67085e45ef1405a1": 1, + "615d8df08004cc50514c3236": 1, + "615d8e9867085e45ef1409c6": 1, + "615d8eb350224f204c1da1cf": 2, + "615d8f5dd92c473c770212ef": 2, + "615d8faecabb9b7ad90f4d5d": 1, + "615d8fd3290d254f5e6b2edc": 3, + "616442e4faa1272e43152193": 1, + "61657230d92c473c770213d7": 2, + "6165ac8c290d254f5e6b2f6c": 3, + "61695095d92c473c7702147a": 2, + "61702be9faa1272e431522c3": 1, + "617130016c780c1e710c9a24": 1, + "617131a4568c120fdd29482d": 2, + "6171367e1cb55961fa0fdb36": 1, + "61713cc4d8e3106d9806c109": 1, + "61714eec290d254f5e6b2ffc": 2, + "618167616ef05c2ce828f1a8": 2, + "618178aa1cb55961fa0fdc80": 3, + "61840bedd92c473c77021635": 3, + "61840d85568c120fdd2962a5": 2, + "618a5d5852ecee1505530b2a": 4, + "618a75c9a3884f56c957ca1b": 1, + "618a75f0bd321d49084cd399": 5, + "618b9643526131765025ab35": 1, + "618b9671d14d6d5ab879c5ea": 4, + "618b9682a3884f56c957ca78": 3, + "618ba27d9008e4636a67f61d": 2, + "618ba92152ecee1505530bd3": 4, + "618bab21526131765025ab3f": 1, + "6193d3149fb0c665d5490e32": 2, + "6193d338de3cdf1d2614a6fc": 2, + "6193dcd0f8ee7e52e4210a28": 1, + "6194efe07c6c7b169525f11b": 2, + "6194eff92d2c397d6600348b": 1, + "6194f017ed0429009f543eaa": 3, + "6194f41f9fb0c665d5490e75": 1, + "6194f5d418a3974e5e7421ef": 3, + "619621a4de3cdf1d2614a7a7": 4, + "6196255558ef8c428c287d1c": 3, + "61962b617c6c7b169525f168": 16, + "61962d879bb3d20b0946d385": 16, + "6196364158ef8c428c287d9f": 9, + "6196365d58ef8c428c287da1": 16, + "619636be6db0f2477964e710": 10, + "61963a852d2c397d660036ad": 1, + "61965d9058ef8c428c287e0d": 2, + "619666f4af1f5202c57a952d": 2, + "619b5db699fb192e7430664f": 1, + "619cbf476b8a1b37a54eebf8": 3, + "619cbfccbedcde2f5b3f7bdd": 1, + "619cc01e0a7c3a1a2731940c": 3, + "619d36da53b4d42ee724fae4": 4, + "61a64428a8c6aa1b795f0ba1": 1, + "61a6444b8c141d68246e2d2f": 7, + "61a64492ba05ef10d62adcc1": 1, + "61aa5aed32a4743c3453d319": 2, + "61aa5b518f5e7a39b41416e2": 2, + "61aa5b7db225ac1ead7957c1": 3, + "61aa5ba8018e9821b7368da9": 2, + "61aa81fcb225ac1ead7957c3": 2, + "61bf7b6302b3924be92fa8c3": 5, + "61bf83814088ec1a363d7097": 2, + "622efbcb99f4ea1a4d6c9a15": 1, + "62307b7b10d2321fa8741921": 2, + "62330b3ed4dc74626d570b95": 16, + "62330bfadc5883093563729b": 8, + "62330c18744e5e31df12f516": 8, + "62330c40bdd19b369e1e53d1": 21, + "62389aaba63f32501b1b444f": 18, + "62389bc9423ed1685422dc57": 1, + "62389be94d5d474bf712e709": 5, + "623c2f4242aee3103f1c44b7": 4, + "623c2f652febb22c2777d8d7": 1, + "623c3be0484b5003161840dc": 1, + "623c3c1f37b4b31470357737": 2, + "624c29ce09cd027dff2f8cd7": 4, + "6259bdcabd28e4721447a2aa": 2, + "625eb0faa6e3a82193267ad9": 2, + "625ff2eb9f5537057932257d": 7, + "625ff3046d721f05d93bf2ee": 2, + "625ff31daaaa8c1130599f64": 3, + "626667e87379c44d557b7550": 2, + "626673016f1edc06f30cf6d5": 1, + "62669bccdb9ebb4daa44cd14": 1, + "6267c6396b642f77f56f5c1c": 3, + "6269545d0e57f218e4548ca2": 5, + "626a74340be03179a165e30c": 1, + "626a8ae89e664a2e2a75f409": 2, + "626a9cb151cb5849f6002890": 1, + "626bb8532c923541184624b4": 1, + "626becf9582c3e319310b837": 4, + "6272370ee4013c5d7e31f418": 2, + "6272379924e29f06af4d5ecb": 3, + "6272874a6c47bd74f92e2087": 2, + "627bce33f21bc425b06ab967": 2, + "62811e335631d45211793c95": 2, + "628120fd5631d45211793c9f": 1, + "6284bd5f95250a29bc628a30": 1, + "62850c28da09541f43158cca": 3, + "628a6678ccaab13006640e49": 3, + "628a66b41d5e41750e314f34": 3, + "628a85ee6b1d481ff772e9d5": 2, + "628c9ab845c59e5b80768a81": 1, + "62987cb98081af308d7558c8": 3, + "62987da96188c076bc0d8c51": 3, + "62987dfc402c7f69bf010923": 1, + "62987e26a77ec735f90a2995": 8, + "62a091170b9d3c46de5b6cf2": 1, + "62a09cb7a04c0c5c6e0a84f8": 3, + "62a09ec84f842e1bd12da3f2": 5, + "62a09ee4cf4a99369e262453": 5, + "62a09f32621468534a797acb": 205, + "62a0a043cf4a99369e2624a5": 2, + "62a0a098de7ac8199358053b": 2, + "62e2a7138e1ac9380579c122": 2, + "62e7c98b550c8218d602cbb4": 1, + "62e7e7bbe6da9612f743f1e0": 5, + "62ff9920fe938a24c90c10d2": 3, + "63076701a987397c0816d21b": 4, + "630767c37d50ff5e8a1ea71a": 3, + "630769c4962d0247b029dc60": 1, + "630f27f04f3f6281050b94d7": 2, + "630f2982cdb9e392db0cbcc7": 2, + "633a98eab8b0506e48497c1a": 2, + "634eba08f69c710e0108d386": 4, + "634eff66517ccc8a960fc735": 2, + "634f02331f9f536910079b51": 1, + "634f06262e5def262d0b30ca": 1, + "6357c98711fb55120211f7e1": 1, + "635a758bfefc88a93f021b8a": 56, + "637b60c3b7afa97bfc3d7001": 14, + "637b612fb7afa97bfc3d7005": 31, + "637b6179104668754b72f8f5": 23, + "637b620db7afa97bfc3d7009": 29, + "637b6251104668754b72f8f9": 12, + "637f57c532b66e7e320a6676": 2, + "637f57d2f5ef8c33840d36c4": 1, + "638612b607dfed1ccb7206ba": 1, + "63877c99e785640d436458ea": 1, + "63888bbd28e5cc32cc09d2b6": 2, + "6388c4478d895f557a0c6512": 1, + "6388c4ac8d895f557a0c6515": 6, + "6389c6c7dbfd5e4b95197e68": 2, + "6389c70ca33d8c4cdf4932c6": 1, + "63969c9019971040b005049b": 3, + "63a39667c9b3aa4b61683e98": 4, + "63a399193901f439517cafb6": 1, + "63a39c69af870e651d58e6aa": 3, + "63a39c7964283b5e9c56b280": 12, + "63a39cb1c9b3aa4b61683ee2": 2, + "63a39ce4cd6db0635c1975fa": 2, + "63a39df18a56922e82001f25": 4, + "63a39dfe3901f439517cafba": 1, + "63a39e49cd6db0635c1975fc": 2, + "63a39f08cd6db0635c197600": 3, + "63a39f18c2d53c2c6839c1d3": 2, + "63a39f6e64283b5e9c56b289": 4, + "63a39fc0af870e651d58e6ae": 3, + "63a39fd1c9b3aa4b61683efb": 8, + "63a39fdf1e21260da44a0256": 5, + "63a3a93f8a56922e82001f5d": 1, + "63a71e781031ac76fe773c7d": 10, + "63a71e922b25f7513905ca20": 2, + "63a71eb5b7f4570d3a29316b": 1, + "63a71ed21031ac76fe773c7f": 1, + "63ac5c9658d0485fc039f0b8": 1, + "63d114019e35b334d82302f7": 1, + "63d3ce0446bd475bcb50f55f": 1, + "63d3ce281fe77d0f2801859e": 1, + "63d3d44a2a49307baf09386d": 1, + "63f4ba71f31d4a33b87bd046": 1, + "63f5feead259b42f0b4d6d0f": 1, + "640b20359ab20e15ee445fa9": 1, + "6415c694da439c6a97048b56": 1, + "6415d33eda439c6a97048b5b": 3, + "646372518610c40fc20204e8": 3, + "6477772ea8a38bb2050ed4db": 1, + "64785e7c19d732620e045e15": 2, + "647dba3142c479dde701b654": 1, + "647dd2b8a12ebf96c3031655": 2, + "647de824196bf69818044c93": 1, + "647def638295ebcb5b02f05b": 3, + "648ae3e356c6310a830fc291": 1, + "648afce7ec6bb25b2608defb": 1, + "6491c6f6ef312a876705191b": 1, + "6494094948796d891603e59f": 3, + "649ec30cb013f04a700e60fb": 4, + "64b6979341772715af0f9c39": 32, + "64b7af434b75259c590fa893": 47, + "64b7af5a8532cf95ee0a0dbd": 39, + "64b7af734b75259c590fa895": 39, + "64b7bbb74b75259c590fa897": 15, + "64b8725c4b75259c590fa899": 16, + "64b8ee384b75259c590fa89b": 20, + "64b8f7968532cf95ee0a0dbf": 33, + "64b8f7b5389d7ffd620ccba2": 25, + "64b8f7c241772715af0f9c3d": 30, + "64b9e2037fdfb81df81e3c25": 2, + "64b9e265c94d0d15c5027e35": 6, + "64c196ad26a15b84aa07132f": 1, + "64ccc1d4a0f13c24561edf27": 2, + "64ccc1ec1779ad6ba200a137": 2, + "64ccc1f4ff54fb38131acf27": 4, + "64ccc1fe088064307e14a6f7": 1, + "64ccc206793ca11c8f450a38": 3, + "64ccc2111779ad6ba200a139": 5, + "64ccc246ff54fb38131acf29": 2, + "64ccc24de61ea448b507d34d": 3, + "64ccc268c41e91416064ebc7": 2, + "6513f0a194c72326990a3868": 2, + "6513f1798cb24472490ee331": 1, + "651580dc71a4f10aec4b6056": 3, + "6516b129609aaf354b34b3a8": 5, + "6516e91f609aaf354b34b3e2": 2, + "6516e9bc5901745209404287": 1, + "6516e9d7e239bd0c487e3766": 1, + "651a8bf3a8520e48047bf708": 3, + "651a8e529829226ceb67c319": 5, + "6529370c405a5f51dd023db8": 1, + "653931da5db71d30ab1d6296": 1, + "6544d4187c5457729210d277": 2, + "655cb6b5d680a544f30607fa": 1, + "655dccfdbdcc6b5df71382b6": 4, + "655df24fdf80b12750626d0a": 3, + "6567e7681265c8a131069b0f": 4, + "656df4fec921ad01000481a2": 421, + "6576f4708ca9c4381d16cd9d": 2, + "6576f93989f0062e741ba952": 4, + "6576f96220d53a5b8f3e395e": 23, + "65815f0e647e3d7246384e14": 113, + "6581998038c79576a2569e11": 24, + "658199972dc4e60f6d556a2f": 28, + "6582dbe43a2e5248357dbe9a": 30, + "6582dc4b6ba9e979af6b79f4": 11, + "6582dc5740562727a654ebb1": 2, + "65ae4f57e343f0acc00824da": 1, + "65f05b9d39dab9e9ec049cfd": 4, + "65f064eec4da400cbb0dc1fe": 1, + "65f1b2a5c14a07890801fc70": 1, + "66012788c752a02bbe05e68e": 1, + "660137d8481cc6907a0c5cda": 1, + "660137ef76c1b56143052be8": 9, + "6601380580e77cfd080e3418": 11, + "6601546f86889319850bd566": 27, + "66015dc4aaad2f54cb04c56a": 2, + "660ea4453786cc0af808a1be": 1, + "661e52415be02310ed07a07a": 1, + "661e52b5b099f32c28003586": 1, + "661e52e29c8b4dadef008577": 3, + "661e53149c8b4dadef008579": 2, + "661f8995c341ea101e0d33e8": 5, + "6642f63667f5cb56a00662eb": 1, + "66507eabf5ddb0818b085b68": 16, + "665d5d9e338229cfd6078da1": 2, + "665edce564fb556f940ab32a": 1, + "668031ffe3e7eb26e8004cdd": 3, + "668032ba74b8f2050c0b917d": 1, + "66866f4ec3d473265104f381": 1, + "66866f622a2296a8d9099639": 5, + "6686717ffb75ee4a5e02eb19": 5, + "668672b8c99550c6fd0f0b29": 1, + "668fe5c5f35310705d02b696": 1, + "668fe62ac62660a5d8071446": 15, + "6698c89bfbc8142e60024b0e": 1, + "6698c8b7710a4525fe0e9e55": 4, + "6698c9e07356874dfe0a0b88": 9, + "6698c9ed36ba38d291017713": 8, + "6699249f3c4fda6471005cba": 5, + "669924a69950f5f4cd060295": 5, + "66992713ae08c5c29e0c4f97": 3, + "66992725ae08c5c29e0c4f9a": 1, + "6699272a3c4fda6471005cc1": 1, + "66992f4db9f31ddda10dd1c8": 3, + "66992f7d9950f5f4cd0602a8": 1, + "6699370c57df3e2b4e0a0dab": 1, + "66993733f74fef4dfd0b04ff": 3, + "669fa435803b94fb5d0e3a76": 1, + "66a0d1c87d0d369e270bb9de": 13, + "66a0d1e0ed648d72fe064d06": 20, + "66a0d1f88486c69fce00fdf6": 18, + "66b37ea4c5d72b0277488439": 1, + "66ffaab91f7492c901027bb8": 2, + "66ffc20ba73a7bce3d0b45ab": 1, + "66ffc246a81a4f85e70d4d06": 1, + "66ffc2bd132225f0fe0611d8": 2, + "66ffc2ecfe9b3825960652f7": 2, + "66ffc6ceb7ff397142017c3a": 2, + "66ffe2fbab3336cc0106382b": 6, + "66ffe5edfe9b38259606530d": 4, + "66ffe811f5d758d71101e89a": 2, + "66ffea06132225f0fe061394": 6, + "66ffea456be19fd81e0ef742": 3, + "66ffeab4ab3336cc01063833": 1, + "67069d66af4890b09f0006ec": 3, + "67069d8dad91f3a63c0bc2b4": 4, + "6706a159c67236b2f703bb95": 1, + "670fced86a7e274b1a0964e8": 2, + "670fd03dc424cf758f006946": 3, + "670fd0a8d8d4eae4790c8187": 4, + "670fd1cc95c92bfc8e0bea39": 3, + "6710cea62bb09af72f0e6bf8": 7, + "67110d06723c2733410161e8": 5, + "67110d6fa71d1f123d021cd3": 2, + "67110d8d388bded67304ceb4": 3, + "67110dd41ad01bb88705347b": 1, + "6711107e1ad01bb88705347e": 2, + "671126a210d67adb5b08e925": 2, + "673cbdfad0453ba50c0f76d6": 3, + "673ddbb567c759b3c90e5f76": 3, + "673f0a38259f5945d70e43a6": 1, + "673f0b36536d64240f01acd6": 1, + "673f3f9840aeca974e0b5c68": 1, + "673f4046259f5945d70e43ab": 2, + "67405d760098dcb5940ea1a6": 2, + "67405e3b83ac5c69ae025406": 1, + "67405ef125beb509e8070276": 1, + "6749c40822a2740bb408d066": 2, + "674fe57721a9aa6be6045b96": 2, + "674fe89a4472d471fb0f07d8": 2, + "674fe8b9362ea1f88b0e278d": 1, + "674fe8f6f34d761ab8020cc8": 1, + "67506ca81f18589016006aa6": 9, + "675307301f7c19a9780f2668": 3, + "67586af7036d7f3da60c3612": 1, + "67586c61a0c49554ed0bb4a8": 1, + "676149a3e2cf1419500357eb": 2, + "676149fbe2cf1419500357ee": 4, + "67614a0be889e1972605d6c0": 3, + "67614a225152c0eaed08ec86": 2, + "67614a31062e6212f5058c38": 2, + "67614a3ce2cf1419500357f4": 2, + "676175789dcee773150c6925": 1, + "676175bb48fa5c377e06fc36": 1, + "6761763448fa5c377e06fc39": 1, + "6761765f1f08ed5e8800b7a6": 1, + "676176a162e0497044079f46": 3, + "676176b762e0497044079f49": 4, + "676177591f08ed5e8800b7a9": 6, + "6761779c48fa5c377e06fc3f": 2, + "676177b09cfcc4c25b027446": 3, + "676177df1f08ed5e8800b7ae": 3, + "6761a6f90575f25e020816a4": 22, + "6764139c44b3c96e7b0e2f7b": 3, + "6768c25aa7b238f14a08d3f6": 4 + }, + "Pockets": { + "5448be9a4bdc2dfd2f8b456a": 4543, + "5448ff904bdc2d6f028b456e": 227, + "5449016a4bdc2d6f028b456f": 3368, + "544fb25a4bdc2dfb738b4567": 1254, + "544fb3364bdc2d34748b456a": 1031, + "544fb37f4bdc2dee738b4567": 657, + "544fb3f34bdc2d03748b456a": 159, + "544fb6cc4bdc2d34748b456e": 224, + "5673de654bdc2d180f8b456d": 150, + "5734773724597737fd047c14": 105, + "57347d3d245977448f7b7f61": 228, + "57347d5f245977448b40fa81": 196, + "57347d692459774491567cf1": 247, + "57347d7224597744596b4e72": 258, + "57347d8724597744596b4e76": 256, + "57347d9c245977448b40fa85": 225, + "57347da92459774491567cf5": 249, + "57505f6224597709a92585a9": 228, + "575062b524597720a31c09a1": 189, + "5751435d24597720a27126d1": 213, + "57514643245977207f2c2d09": 164, + "5751487e245977207e26a315": 296, + "5751496424597720a27126da": 249, + "5751a25924597722c463c472": 1175, + "5751a89d24597722aa0e8db0": 37, + "5755356824597772cb798962": 597, + "5755383e24597772cb798966": 158, + "5783c43d2459774bbe137486": 1290, + "590c678286f77426c9660122": 161, + "590c695186f7741e566b64a2": 155, + "59e3577886f774176a362503": 269, + "5af0454c86f7746bf20992e8": 522, + "5af0548586f7743a532b7e99": 190, + "5bc9b156d4351e00367fbce9": 77, + "5bc9c29cd4351e003562b8a3": 136, + "5c0e530286f7747fa1419862": 148, + "5c0e531286f7747fa54205c2": 148, + "5c0e531d86f7747fa23f4d42": 417, + "5c0e533786f7747fa23f4d47": 150, + "5c0e534186f7747fa1419867": 170, + "5c10c8fd86f7743d7d706df3": 179, + "5e831507ea0a7c419c2f9bd9": 410, + "5e8488fa988a8701445df1e4": 423, + "5ed515c8d380ab312177c0fa": 154, + "5ed515e03a40a50460332579": 76, + "5ed515ece452db0eb56fc028": 87, + "5ed515f6915ec335206e4152": 90, + "5ed5160a87bb8443d10680b5": 92, + "5ed51652f6c34d2cc26336a1": 96, + "5ed5166ad380ab312177c100": 45, + "5fca138c2a7b221b2852a5c6": 44, + "5fca13ca637ee0341a484f46": 72, + "60098ad7c2240c0fe85c570a": 325, + "60098af40accd37ef2175f27": 437, + "60098b1705871270cd5352a1": 119, + "60b0f6c058e0b0481a09ad11": 842, + "60b0f93284c20f0feb453da7": 104, + "62a09d3bcf4a99369e262447": 848, + "637b60c3b7afa97bfc3d7001": 39, + "637b612fb7afa97bfc3d7005": 72, + "637b6179104668754b72f8f5": 79, + "637b620db7afa97bfc3d7009": 72, + "637b6251104668754b72f8f9": 48, + "656df4fec921ad01000481a2": 470, + "65815f0e647e3d7246384e14": 140, + "66507eabf5ddb0818b085b68": 35 + }, + "SecuredContainer": { + "560d5e524bdc2d25448b4571": 48800, + "5656d7c34bdc2d9d198b4587": 9033, + "56dfef82d2720bbd668b4567": 6808, + "56dff061d2720bb5668b4567": 3159, + "56dff0bed2720bb0668b4567": 40230, + "56dff216d2720bbd668b4568": 41110, + "56dff2ced2720bb4668b4567": 5990, + "56dff338d2720bbd668b4569": 41480, + "56dff3afd2720bba668b4567": 19290, + "56dff421d2720b5f5a8b4567": 39300, + "56dff4a2d2720bbd668b456a": 39430, + "56dff4ecd2720b5f5a8b4568": 11300, + "58820d1224597753c90aeb13": 51110, + "59e4cf5286f7741778269d8a": 9455, + "59e4d3d286f774176a36250a": 25490, + "5d6e67fba4b9361bc73bc779": 748, + "5d6e6806a4b936088465b17e": 31040, + "5d6e6869a4b9361c140bcfde": 51430, + "5d6e6891a4b9361bd473feea": 18800, + "5d6e689ca4b9361bc8618956": 51960, + "5d6e68b3a4b9361bca7e50b5": 52390, + "5d6e68d1a4b93622fe60e845": 402, + "5d6e68dea4b9361bcc29e659": 32370, + "64b7af5a8532cf95ee0a0dbd": 34210, + "64b7af734b75259c590fa895": 13380 + }, + "SpecialLoot": {}, + "TacticalVest": { + "5448fee04bdc2dbc018b4567": 210, + "5448ff904bdc2d6f028b456e": 481, + "544fb25a4bdc2dfb738b4567": 380, + "544fb3364bdc2d34748b456a": 326, + "544fb37f4bdc2dee738b4567": 195, + "544fb3f34bdc2d03748b456a": 52, + "544fb45d4bdc2dee738b4568": 121, + "544fb62a4bdc2dfb738b4568": 484, + "544fb6cc4bdc2d34748b456e": 454, + "55d480c04bdc2d1d4e8b456a": 3354, + "55d4837c4bdc2d1d4e8b456c": 10000, + "560d5e524bdc2d25448b4571": 605, + "564ca99c4bdc2d16268b4589": 3399, + "5673de654bdc2d180f8b456d": 308, + "5734773724597737fd047c14": 245, + "57347d3d245977448f7b7f61": 474, + "57347d5f245977448b40fa81": 379, + "57347d692459774491567cf1": 516, + "57347d7224597744596b4e72": 498, + "57347d8724597744596b4e76": 485, + "57347d90245977448f7b7f65": 405, + "57347d9c245977448b40fa85": 468, + "57347da92459774491567cf5": 473, + "57505f6224597709a92585a9": 434, + "575062b524597720a31c09a1": 372, + "57513f07245977207e26a311": 510, + "57513f9324597720a7128161": 369, + "57513fcc24597720a31c09a6": 318, + "5751435d24597720a27126d1": 434, + "57514643245977207f2c2d09": 333, + "575146b724597720a27126d5": 412, + "5751487e245977207e26a315": 656, + "5751496424597720a27126da": 525, + "5751a25924597722c463c472": 348, + "5751a89d24597722aa0e8db0": 15, + "5755356824597772cb798962": 165, + "5755383e24597772cb798966": 39, + "57616a9e2459773c7a400234": 8333, + "58820d1224597753c90aeb13": 3344, + "590c5d4b86f774784e1b9c45": 405, + "590c5f0d86f77413997acfab": 355, + "590c657e86f77412b013051d": 39, + "590c661e86f7741e566b646a": 100, + "590c678286f77426c9660122": 37, + "590c695186f7741e566b64a2": 43, + "59d625f086f774661516605d": 439, + "59e3577886f774176a362503": 465, + "59e5d83b86f7745aed03d262": 2630, + "5a01c29586f77474660c694c": 3687, + "5af0454c86f7746bf20992e8": 157, + "5af0548586f7743a532b7e99": 38, + "5b1fd4e35acfc40018633c39": 2287, + "5bc9b156d4351e00367fbce9": 148, + "5bc9c29cd4351e003562b8a3": 284, + "5bed61680db834001d2c45ab": 1458, + "5c0e530286f7747fa1419862": 48, + "5c0e531286f7747fa54205c2": 48, + "5c0e531d86f7747fa23f4d42": 121, + "5c0e533786f7747fa23f4d47": 50, + "5c0e534186f7747fa1419867": 57, + "5c0fa877d174af02a012e1cf": 260, + "5c10c8fd86f7743d7d706df3": 37, + "5cbdaf89ae9215000e5b9c94": 3442, + "5d02778e86f774203e7dedbe": 41, + "5d1b33a686f7742523398398": 31, + "5d1b376e86f774252519444e": 21, + "5d403f9186f7743cac3f229b": 276, + "5d40407c86f774318526545a": 352, + "5d6e6806a4b936088465b17e": 1206, + "5d6e6869a4b9361c140bcfde": 3350, + "5d6e689ca4b9361bc8618956": 3325, + "5d6e68b3a4b9361bca7e50b5": 3415, + "5d6e68dea4b9361bcc29e659": 912, + "5e831507ea0a7c419c2f9bd9": 10000, + "5e8488fa988a8701445df1e4": 116, + "5e8f3423fd7471236e6e3b64": 143, + "5ed515c8d380ab312177c0fa": 48, + "5ed515e03a40a50460332579": 28, + "5ed515ece452db0eb56fc028": 25, + "5ed515f6915ec335206e4152": 26, + "5ed5160a87bb8443d10680b5": 21, + "5ed51652f6c34d2cc26336a1": 17, + "5ed5166ad380ab312177c100": 14, + "5fca138c2a7b221b2852a5c6": 6, + "5fca13ca637ee0341a484f46": 22, + "60098ad7c2240c0fe85c570a": 98, + "60098af40accd37ef2175f27": 128, + "60098b1705871270cd5352a1": 230, + "60b0f93284c20f0feb453da7": 226, + "62a09f32621468534a797acb": 353, + "635a758bfefc88a93f021b8a": 67, + "637b60c3b7afa97bfc3d7001": 9, + "637b612fb7afa97bfc3d7005": 30, + "637b6179104668754b72f8f5": 20, + "637b620db7afa97bfc3d7009": 25, + "637b6251104668754b72f8f9": 10, + "656df4fec921ad01000481a2": 830, + "65815f0e647e3d7246384e14": 263, + "66507eabf5ddb0818b085b68": 10 + } + }, + "mods": { + "54491c4f4bdc2db1078b4568": { + "mod_barrel": [ + "55d4491a4bdc2d882f8b456e" + ], + "mod_handguard": [ + "55d45d3f4bdc2d972f8b456c" + ], + "mod_magazine": [ + "55d485804bdc2d8c2f8b456b" + ], + "mod_mount_000": [ + "55d48ebc4bdc2d8c2f8b456c" + ], + "mod_stock": [ + "56083be64bdc2d20478b456f", + "56083a334bdc2dc8488b4571", + "56083cba4bdc2de22e8b456f" + ], + "patron_in_weapon": [ + "560d5e524bdc2d25448b4571", + "5d6e6869a4b9361c140bcfde", + "5d6e689ca4b9361bc8618956", + "5d6e68dea4b9361bcc29e659", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6806a4b936088465b17e", + "58820d1224597753c90aeb13" + ] + }, + "55d48ebc4bdc2d8c2f8b456c": { + "mod_tactical_001": [ + "6272370ee4013c5d7e31f418", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "560d657b4bdc2da74d8b4572" + ], + "mod_tactical_002": [ + "57d17e212459775a1179a0f5" + ] + }, + "5644bd2b4bdc2d3b4c8b4572": { + "mod_charge": [ + "5648ac824bdc2ded0b8b457d", + "6130ca3fd92c473c77020dbd" + ], + "mod_gas_block": [ + "59c6633186f7740cf0493bb9" + ], + "mod_magazine": [ + "564ca99c4bdc2d16268b4589", + "55d4837c4bdc2d1d4e8b456c", + "55d480c04bdc2d1d4e8b456a", + "5bed61680db834001d2c45ab", + "5cbdaf89ae9215000e5b9c94", + "5bed625c0db834001c062946" + ], + "mod_muzzle": [ + "57dc324a24597759501edc20", + "5ac72e945acfc43f3b691116", + "5649aa744bdc2ded0b8b457e", + "5ac7655e5acfc40016339a19", + "5649ab884bdc2ded0b8b457f" + ], + "mod_pistol_grip": [ + "5649ad3f4bdc2df8348b4585" + ], + "mod_reciever": [ + "5d2c772c48f0355d95672c25", + "5649af094bdc2df8348b4586" + ], + "mod_sight_rear": [ + "5649b0544bdc2d1b2b8b458a", + "5ac733a45acfc400192630e2", + "628a7b23b0f75035732dd565", + "5649d9a14bdc2d79388b4580" + ], + "mod_stock": [ + "59e6227d86f77440d64f5dc2", + "5649b0fc4bdc2d17108b4588", + "5cbdb1b0ae9215000d50e105", + "5649b1c04bdc2d16268b457c", + "59d6514b86f774171a068a08", + "59e89d0986f77427600d226e", + "5cf518cfd7f00c065b422214", + "5b222d335acfc4771e1be099", + "5649b2314bdc2d79388b4576" + ], + "patron_in_weapon": [ + "56dff216d2720bbd668b4568", + "56dff4a2d2720bbd668b456a", + "56dff421d2720b5f5a8b4567", + "56dff0bed2720bb0668b4567", + "56dff338d2720bbd668b4569", + "56dfef82d2720bbd668b4567", + "56dff2ced2720bb4668b4567", + "56dff3afd2720bba668b4567", + "56dff061d2720bb5668b4567" + ] + }, + "5648ae314bdc2d3d1c8b457f": { + "mod_foregrip": [ + "619386379fb0c665d5490dbe", + "5cf4fb76d7f00c065703d3ac", + "5c87ca002e221600114cb150", + "5cda9bcfd7f00c0c0b53e900" + ], + "mod_scope": [ + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124" + ], + "mod_tactical_001": [ + "57d17e212459775a1179a0f5" + ] + }, + "5648b4534bdc2d3d1c8b4580": { + "mod_foregrip": [ + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "5cda9bcfd7f00c0c0b53e900", + "58c157c886f774032749fb06", + "5c87ca002e221600114cb150" + ], + "mod_scope": [ + "584924ec24597768f12ae244" + ], + "mod_tactical_002": [ + "560d657b4bdc2da74d8b4572", + "57d17e212459775a1179a0f5", + "5b07dd285acfc4001754240d" + ] + }, + "5649b0544bdc2d1b2b8b458a": { + "mod_sight_rear": [ + "5a0ed824fcdbcb0176308b0d" + ] + }, + "5649b0fc4bdc2d17108b4588": { + "mod_stock": [ + "5a0c59791526d8dba737bba7" + ] + }, + "5649b1c04bdc2d16268b457c": { + "mod_stock": [ + "5a0c59791526d8dba737bba7" + ] + }, + "5649b2314bdc2d79388b4576": { + "mod_stock": [ + "5c0faeddd174af02a962601f", + "57ade1442459771557167e15", + "602e3f1254072b51b239f713" + ] + }, + "576165642459773c7a400233": { + "mod_charge": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ], + "mod_handguard": [ + "576169e62459773c69055191", + "58272b392459774b4c7b3ccd" + ], + "mod_magazine": [ + "57616a9e2459773c7a400234", + "5a966f51a2750c00156aacf6" + ], + "mod_pistol_grip": [ + "5649ade84bdc2d1b2b8b4587" + ], + "mod_reciever": [ + "57616c112459773cce774d66" + ], + "mod_sight_rear": [ + "57a9b9ce2459770ee926038d" + ], + "mod_stock": [ + "57616ca52459773c69055192" + ], + "patron_in_weapon": [ + "5d6e6806a4b936088465b17e", + "5d6e6891a4b9361bd473feea", + "560d5e524bdc2d25448b4571", + "5d6e68d1a4b93622fe60e845", + "5d6e68dea4b9361bcc29e659", + "5d6e67fba4b9361bc73bc779" + ] + }, + "57d17e212459775a1179a0f5": { + "mod_flashlight": [ + "59d790f486f77403cb06aec6", + "57d17c5e2459775a5c57d17d" + ] + }, + "57dc2fa62459775949412633": { + "mod_gas_block": [ + "59d36a0086f7747e673f3946" + ], + "mod_magazine": [ + "55d4837c4bdc2d1d4e8b456c" + ], + "mod_muzzle": [ + "5ac7655e5acfc40016339a19", + "57dc324a24597759501edc20", + "5ac72e945acfc43f3b691116", + "5649aa744bdc2ded0b8b457e", + "5649ab884bdc2ded0b8b457f", + "564caa3d4bdc2d17108b458e" + ], + "mod_pistol_grip": [ + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "5649ade84bdc2d1b2b8b4587", + "59e6318286f77444dd62c4cc", + "57e3dba62459770f0c32322b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5998517986f7746017232f7e", + "5649ae4a4bdc2d1b2b8b4588" + ], + "mod_reciever": [ + "57dc334d245977597164366f", + "5839a7742459773cf9693481" + ], + "mod_stock": [ + "57dc347d245977596754e7a1", + "5ab626e4d8ce87272e4c6e43", + "59ecc28286f7746d7a68aa8c" + ], + "patron_in_weapon": [ + "56dff0bed2720bb0668b4567", + "56dff338d2720bbd668b4569", + "56dff421d2720b5f5a8b4567", + "56dff061d2720bb5668b4567", + "56dff4ecd2720b5f5a8b4568", + "56dff3afd2720bba668b4567", + "56dff216d2720bbd668b4568", + "56dff4a2d2720bbd668b456a", + "56dfef82d2720bbd668b4567", + "56dff2ced2720bb4668b4567" + ] + }, + "57dc334d245977597164366f": { + "mod_mount_000": [ + "57ffb0062459777a045af529" + ] + }, + "57dc347d245977596754e7a1": { + "mod_stock": [ + "5a0c59791526d8dba737bba7" + ] + }, + "57ffa9f4245977728561e844": { + "mod_foregrip": [ + "5cf4fb76d7f00c065703d3ac", + "619386379fb0c665d5490dbe" + ], + "mod_tactical_000": [ + "57d17e212459775a1179a0f5" + ] + }, + "57ffb0062459777a045af529": { + "mod_scope": [ + "57ae0171245977343c27bfcf", + "584984812459776a704a82a6", + "570fd721d2720bc5458b4596" + ] + }, + "58272b392459774b4c7b3ccd": { + "mod_scope": [ + "570fd721d2720bc5458b4596", + "570fd79bd2720bc7458b4583" + ], + "mod_tactical_002": [ + "57d17e212459775a1179a0f5" + ] + }, + "591c4efa86f7741030027726": { + "mod_tactical": [ + "591c4e1186f77410354b316e" + ] + }, + "59c6633186f7740cf0493bb9": { + "mod_handguard": [ + "5cbda9f4ae9215000e5b9bfc", + "59e6284f86f77440d569536f", + "5648b0744bdc2d363b8b4578", + "5d2c829448f0353a5c7d6674", + "59d64f2f86f77417193ef8b3", + "59e898ee86f77427614bd225", + "5648b1504bdc2d9d488b4584", + "5cbda392ae92155f3c17c39f", + "5648b4534bdc2d3d1c8b4580", + "5648ae314bdc2d3d1c8b457f" + ] + }, + "59d36a0086f7747e673f3946": { + "mod_handguard": [ + "5d15ce51d7ad1a1eff619092", + "57dc32dc245977596d4ef3d3", + "57ffa9f4245977728561e844" + ] + }, + "59d6088586f774275f37482f": { + "mod_gas_block": [ + "59d64ec286f774171d1e0a42" + ], + "mod_magazine": [ + "5b1fd4e35acfc40018633c39", + "5a01c29586f77474660c694c", + "59d625f086f774661516605d", + "59e5d83b86f7745aed03d262", + "5cbdc23eae9215001136a407" + ], + "mod_pistol_grip": [ + "5a0071d486f77404e23a12b2", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "57e3dba62459770f0c32322b", + "59e6318286f77444dd62c4cc", + "5998517986f7746017232f7e", + "59e62cc886f77440d40b52a1", + "5649ade84bdc2d1b2b8b4587", + "5649ae4a4bdc2d1b2b8b4588" + ], + "mod_reciever": [ + "5d2c76ed48f03532f2136169" + ], + "mod_sight_rear": [ + "59d650cf86f7741b846413a4" + ], + "mod_stock": [ + "59e89d0986f77427600d226e", + "5cbdb1b0ae9215000d50e105", + "59d6514b86f774171a068a08", + "5b222d335acfc4771e1be099", + "59e6227d86f77440d64f5dc2", + "5649b1c04bdc2d16268b457c", + "5649b0fc4bdc2d17108b4588", + "5649b2314bdc2d79388b4576", + "5cf518cfd7f00c065b422214" + ], + "patron_in_weapon": [ + "59e4d3d286f774176a36250a", + "64b7af5a8532cf95ee0a0dbd", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "64b7af734b75259c590fa895" + ] + }, + "59d64ec286f774171d1e0a42": { + "mod_handguard": [ + "5648b0744bdc2d363b8b4578", + "5cbda9f4ae9215000e5b9bfc", + "5cbda392ae92155f3c17c39f", + "59e6284f86f77440d569536f", + "59e898ee86f77427614bd225", + "59d64f2f86f77417193ef8b3", + "5648b1504bdc2d9d488b4584", + "5d2c829448f0353a5c7d6674", + "5648ae314bdc2d3d1c8b457f" + ] + }, + "59d650cf86f7741b846413a4": { + "mod_sight_rear": [ + "5a0ed824fcdbcb0176308b0d" + ] + }, + "59d6514b86f774171a068a08": { + "mod_stock": [ + "5a0c59791526d8dba737bba7" + ] + }, + "59e6227d86f77440d64f5dc2": { + "mod_stock": [ + "5a0c59791526d8dba737bba7" + ] + }, + "59e89d0986f77427600d226e": { + "mod_stock": [ + "5a0c59791526d8dba737bba7" + ] + }, + "59ecc28286f7746d7a68aa8c": { + "mod_stock": [ + "5b222d405acfc400153af4fe" + ] + }, + "5a7c4850e899ef00150be885": { + "Helmet_back": [ + "657bab6ec6f689d3a205b85f" + ], + "Helmet_ears": [ + "657babc6f58ba5a6250107a2" + ], + "Helmet_top": [ + "657baaf0b7e9ca9a02045c02" + ] + }, + "5ab626e4d8ce87272e4c6e43": { + "mod_stock": [ + "5a0c59791526d8dba737bba7" + ] + }, + "5ac733a45acfc400192630e2": { + "mod_sight_rear": [ + "5a0ed824fcdbcb0176308b0d" + ] + }, + "5b222d335acfc4771e1be099": { + "mod_stock": [ + "5b222d405acfc400153af4fe" + ] + }, + "5c0e51be86f774598e797894": { + "Back_plate": [ + "656efd66034e8e01c407f35c" + ], + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Front_plate": [ + "656f603f94b480b8a500c0d6" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "Soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "Soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "Soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0faeddd174af02a962601f": { + "mod_stock_000": [ + "5bfe86df0db834001b734685", + "5beec8c20db834001d2c465c", + "628a85ee6b1d481ff772e9d5" + ] + }, + "5cbdb1b0ae9215000d50e105": { + "mod_stock": [ + "5a0c59791526d8dba737bba7" + ] + }, + "5cf518cfd7f00c065b422214": { + "mod_stock": [ + "5beec8c20db834001d2c465c", + "628a85ee6b1d481ff772e9d5", + "5bfe86df0db834001b734685" + ] + }, + "5d15ce51d7ad1a1eff619092": { + "mod_foregrip": [ + "58c157c886f774032749fb06", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6" + ], + "mod_tactical_001": [ + "57d17e212459775a1179a0f5" + ] + }, + "5d2c76ed48f03532f2136169": { + "mod_scope": [ + "5c0505e00db834001b735073", + "570fd79bd2720bc7458b4583", + "5b30b0dc5acfc400153b7124", + "591c4efa86f7741030027726", + "570fd721d2720bc5458b4596" + ] + }, + "5d2c772c48f0355d95672c25": { + "mod_scope": [ + "584984812459776a704a82a6", + "57ae0171245977343c27bfcf", + "591c4efa86f7741030027726", + "570fd721d2720bc5458b4596" + ] + }, + "602e3f1254072b51b239f713": { + "mod_stock_000": [ + "5beec8c20db834001d2c465c", + "628a85ee6b1d481ff772e9d5" + ] + }, + "64be79c487d1510151095552": { + "Soft_armor_back": [ + "657049d23425b19bbc0502f0" + ], + "Soft_armor_front": [ + "6570495b45d573133d0d6adb" + ] + }, + "64be79e2bf8412471d0d9bcc": { + "Soft_armor_back": [ + "657049d23425b19bbc0502f0" + ], + "Soft_armor_front": [ + "6570495b45d573133d0d6adb" + ] + }, + "65719f0775149d62ce0a670b": { + "Helmet_back": [ + "657fa168e9433140ad0baf8e" + ], + "Helmet_ears": [ + "657fa186d4caf976440afe42" + ], + "Helmet_top": [ + "657fa0fcd4caf976440afe3e" + ] + } + } + }, + "lastName": [], + "skills": { + "Common": {} } -} \ No newline at end of file +} diff --git a/Libraries/SptAssets/Assets/database/bots/types/usec.json b/Libraries/SptAssets/Assets/database/bots/types/usec.json index b97d769d..c9a9a792 100644 --- a/Libraries/SptAssets/Assets/database/bots/types/usec.json +++ b/Libraries/SptAssets/Assets/database/bots/types/usec.json @@ -149,8 +149,8 @@ "BAD_SHOOTS_MAX": 6, "BAD_SHOOTS_MIN": 2, "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MAX_ANG": 10, - "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_HIT_AFFECTION_MAX_ANG": 30, + "BASE_HIT_AFFECTION_MIN_ANG": 20, "BASE_SHIEF": 0.05, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.9, @@ -158,7 +158,7 @@ "BOT_MOVE_IF_DELTA": 3.01, "COEF_FROM_COVER": 0.45, "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 0.02, + "DAMAGE_PANIC_TIME": 15, "DAMAGE_TO_DISCARD_AIM_0_100": 86, "DANGER_UP_POINT": 1.3, "DIST_TO_SHOOT_NO_OFFSET": 3, @@ -238,14 +238,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -259,7 +259,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 5, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -301,8 +301,8 @@ "MOVE_TO_COVER_WHEN_TARGET": false, "NOT_LOOK_AT_WALL_IS_DANGER": true, "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 5, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 1, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 15, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 5, "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, "RUN_IF_FAR": 15, "RUN_IF_FAR_SQRT": 225, @@ -313,7 +313,7 @@ "SPOTTED_GRENADE_RADIUS": 16, "SPOTTED_GRENADE_TIME": 7, "STATIONARY_CAN_USE": false, - "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 1, + "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 2, "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, "STAY_IF_FAR": 25, @@ -477,7 +477,7 @@ "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 19, + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 25, "DIST_TO_ENEMY_YO_CAN_HEAL": 60, "DIST_TO_FOUND_SQRT": 400, "DIST_TO_STOP_RUN_ENEMY": 15, @@ -493,7 +493,7 @@ "FRIEND_DEAD_AGR_LOW": -0.2, "GROUP_ANY_PHRASE_DELAY": 45, "GROUP_EXACTLY_PHRASE_DELAY": 60, - "HEAL_DELAY_SEC": 1, + "HEAL_DELAY_SEC": 5, "HIT_DELAY_WHEN_HAVE_SMT": -1, "HIT_DELAY_WHEN_PEACE": -1, "HIT_POINT_DETECTION": 4, @@ -519,6 +519,7 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 20000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 9, @@ -632,6 +633,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -669,7 +671,7 @@ "BAD_SHOOTS_MAX": 1, "BAD_SHOOTS_MIN": 1, "BASE_HIT_AFFECTION_DELAY_SEC": 0.1, - "BASE_HIT_AFFECTION_MAX_ANG": 4, + "BASE_HIT_AFFECTION_MAX_ANG": 10, "BASE_HIT_AFFECTION_MIN_ANG": 2, "BASE_SHIEF": 0.03, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, @@ -758,14 +760,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -779,7 +781,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.05, + "GainSightCoef": 10, "HearingSense": 1.25, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -803,7 +805,7 @@ "DIST_CANT_CHANGE_WAY_SQR": 25, "DIST_CHECK_SFETY": 15, "DOG_FIGHT_AFTER_LEAVE": 3, - "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 5, + "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 15, "ENEMY_DIST_TO_GO_OUT": 6, "GOOD_DIST_TO_POINT_COEF": 9999, "HIDE_TO_COVER_TIME": 5, @@ -833,7 +835,7 @@ "SPOTTED_GRENADE_RADIUS": 16, "SPOTTED_GRENADE_TIME": 7, "STATIONARY_CAN_USE": false, - "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 1, + "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 2, "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, "STATIONARY_WEAPON_NO_ENEMY_GETUP": 5, "STAY_IF_FAR": 25, @@ -948,6 +950,7 @@ "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 993, "LightOnVisionDistance": 45, "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_DISTANCE_VISIBILITY_CHANGE_SPEED_K": 0.3, "MAX_VISION_GRASS_METERS": 0.8, "MAX_VISION_GRASS_METERS_FLARE": 8, "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, @@ -989,14 +992,14 @@ "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 10, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 100, "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 30, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, "DAMAGE_REDUCTION_TIME_SEC": 20, "DANGER_POINT_CHOOSE_COEF": 1, "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 10, + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 25, "DIST_TO_ENEMY_YO_CAN_HEAL": 60, "DIST_TO_FOUND_SQRT": 400, "DIST_TO_STOP_RUN_ENEMY": 15, @@ -1038,6 +1041,7 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 20000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 9, @@ -1151,6 +1155,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1277,14 +1282,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1298,7 +1303,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.02, + "GainSightCoef": 15, "HearingSense": 1.25, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1322,7 +1327,7 @@ "DIST_CANT_CHANGE_WAY_SQR": 25, "DIST_CHECK_SFETY": 15, "DOG_FIGHT_AFTER_LEAVE": 1, - "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 5, + "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 15, "ENEMY_DIST_TO_GO_OUT": 5, "GOOD_DIST_TO_POINT_COEF": 9999, "HIDE_TO_COVER_TIME": 5, @@ -1352,7 +1357,7 @@ "SPOTTED_GRENADE_RADIUS": 23, "SPOTTED_GRENADE_TIME": 7, "STATIONARY_CAN_USE": false, - "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 1, + "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 2, "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, "STATIONARY_WEAPON_NO_ENEMY_GETUP": 5, "STAY_IF_FAR": 25, @@ -1508,14 +1513,14 @@ "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 10, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 100, "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 30, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, "DAMAGE_REDUCTION_TIME_SEC": 20, "DANGER_POINT_CHOOSE_COEF": 1, "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 10, + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 25, "DIST_TO_ENEMY_YO_CAN_HEAL": 60, "DIST_TO_FOUND_SQRT": 400, "DIST_TO_STOP_RUN_ENEMY": 15, @@ -1557,6 +1562,7 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 20000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 0.5, @@ -1668,6 +1674,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -1705,8 +1712,8 @@ "BAD_SHOOTS_MAX": 3, "BAD_SHOOTS_MIN": 1, "BASE_HIT_AFFECTION_DELAY_SEC": 0.3, - "BASE_HIT_AFFECTION_MAX_ANG": 7, - "BASE_HIT_AFFECTION_MIN_ANG": 2, + "BASE_HIT_AFFECTION_MAX_ANG": 14, + "BASE_HIT_AFFECTION_MIN_ANG": 28, "BASE_SHIEF": 0.04, "BASE_SHIEF_STATIONARY_GRENADE": 1.1, "BETTER_PRECICING_COEF": 0.9, @@ -1794,14 +1801,14 @@ }, "Change": { "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, + "FLASH_GAIN_SIGHT": 0.555, "FLASH_HEARING": 1, "FLASH_LAY_CHANCE": 1, "FLASH_PRECICING": 1.6, "FLASH_SCATTERING": 1.6, "FLASH_VISION_DIST": 0.05, "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_GAIN_SIGHT": 0.625, "SMOKE_HEARING": 1, "SMOKE_LAY_CHANCE": 1.6, "SMOKE_PRECICING": 1.6, @@ -1815,7 +1822,7 @@ "CanGrenade": true, "CanRun": true, "DamageCoeff": 1, - "GainSightCoef": 0.1, + "GainSightCoef": 7, "HearingSense": 2.9, "PistolFireDistancePref": 35, "RifleFireDistancePref": 100, @@ -1839,7 +1846,7 @@ "DIST_CANT_CHANGE_WAY_SQR": 25, "DIST_CHECK_SFETY": 10, "DOG_FIGHT_AFTER_LEAVE": 4, - "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 5, + "END_HOLD_IF_ENEMY_CLOSE_AND_VISIBLE": 15, "ENEMY_DIST_TO_GO_OUT": 3, "GOOD_DIST_TO_POINT_COEF": 9999, "HIDE_TO_COVER_TIME": 5, @@ -1869,7 +1876,7 @@ "SPOTTED_GRENADE_RADIUS": 16, "SPOTTED_GRENADE_TIME": 7, "STATIONARY_CAN_USE": false, - "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 1, + "STATIONARY_SPOTTED_TIMES_TO_LEAVE": 2, "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, "STAY_IF_FAR": 25, @@ -2026,15 +2033,15 @@ "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 10, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 100, "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 30, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, "DAMAGE_REDUCTION_TIME_SEC": 20, "DANGER_POINT_CHOOSE_COEF": 1, "DEFAULT_BEAR_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_SAVAGE_BEHAVIOUR": "AlwaysEnemies", "DEFAULT_USEC_BEHAVIOUR": "AlwaysEnemies", - "DIST_TO_ENEMY_SPOTTED_ON_HIT": 10, - "DIST_TO_ENEMY_YO_CAN_HEAL": 40, + "DIST_TO_ENEMY_SPOTTED_ON_HIT": 25, + "DIST_TO_ENEMY_YO_CAN_HEAL": 50, "DIST_TO_FOUND_SQRT": 400, "DIST_TO_STOP_RUN_ENEMY": 15, "DOG_FIGHT_IN": 3, @@ -2075,6 +2082,7 @@ "gifter" ], "REVENGE_FOR_SAVAGE_PLAYERS": false, + "SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 20000, "SEARCH_TARGET": true, "SEC_TO_MORE_DIST_TO_RUN": 10, "SHOOT_INSTEAD_DOG_FIGHT": 5, @@ -2188,6 +2196,7 @@ "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DITANCE_TO_OFF_AUTO_FIRE": 95, "FAR_DIST_ENEMY": 20, "FAR_DIST_ENEMY_SQR": 400, "FAR_DIST_TO_CHANGE_WEAPON": 30, @@ -2818,10 +2827,10 @@ "5efb0d4f4bc50b58e81710f3": 9, "5efb0fc6aeb21837e749c801": 9 }, - "Caliber127x33": { - "668fe62ac62660a5d8071446": 2, - "66a0d1e0ed648d72fe064d06": 5 - }, + "Caliber127x33": { + "668fe62ac62660a5d8071446": 2, + "66a0d1e0ed648d72fe064d06": 5 + }, "Caliber127x55": { "5cadf6ddae9215051e1c23b2": 8, "5cadf6e5ae921500113bb973": 4, @@ -2958,8 +2967,8 @@ "5e023e6e34d52a55c3304f71": 10, "5e023e88277cce2b522ff2b1": 5, "5efb0c1bd79ff02a1f5e68d9": 3, - "6769b8e3c1a1466c850658a8": 3, - "6768c25aa7b238f14a08d3f6": 2 + "6768c25aa7b238f14a08d3f6": 2, + "6769b8e3c1a1466c850658a8": 3 }, "Caliber762x54R": { "560d61e84bdc2da74d8b4571": 90, diff --git a/Libraries/SptAssets/Assets/database/globals.json b/Libraries/SptAssets/Assets/database/globals.json index 3ce0f019..6f937ec2 100644 --- a/Libraries/SptAssets/Assets/database/globals.json +++ b/Libraries/SptAssets/Assets/database/globals.json @@ -27170,6 +27170,11 @@ } ] }, + "HeadphonesSettings": { + "FadeDuration": 0.7, + "FadeIn": "InverseExponential", + "FadeOut": "EaseIn" + }, "MetaXRAudioPluginSettings": { "EnabledPluginErrorChecker": true, "OutputVolumeCheckCooldown": 0.3 diff --git a/Libraries/SptAssets/Assets/database/hideout/production.json b/Libraries/SptAssets/Assets/database/hideout/production.json index 8a18a950..ed49e953 100644 --- a/Libraries/SptAssets/Assets/database/hideout/production.json +++ b/Libraries/SptAssets/Assets/database/hideout/production.json @@ -5,50 +5,6 @@ } ], "recipes": [ - { - "_id": "61c77c830f3639492721e99c", - "areaType": 8, - "continuous": false, - "count": 3, - "endProduct": "5c0fa877d174af02a012e1cf", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 17500, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - }, - { - "templateId": "590c595c86f7747884343ad7", - "type": "Tool" - }, - { - "templateId": "5d1b385e86f774252167b98a", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a043cf4a99369e2624a5", - "type": "Item" - } - ] - }, { "_id": "5dd1126571e3fd3f634b1c8b", "areaType": 10, @@ -106,45 +62,45 @@ ] }, { - "_id": "61c4f862324588369162ac8c", - "areaType": 21, + "_id": "61c77c830f3639492721e99c", + "areaType": 8, "continuous": false, - "count": 1, - "endProduct": "590a3efd86f77437d351a25b", + "count": 3, + "endProduct": "5c0fa877d174af02a012e1cf", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 11500, + "productionTime": 17500, "requirements": [ { - "areaType": 21, - "requiredLevel": 1, + "areaType": 8, + "requiredLevel": 2, "type": "Area" }, { - "count": 1, + "count": 5, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", + "templateId": "5448fee04bdc2dbc018b4567", "type": "Item" }, + { + "templateId": "590c595c86f7747884343ad7", + "type": "Tool" + }, + { + "templateId": "5d1b385e86f774252167b98a", + "type": "Tool" + }, { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", + "templateId": "62a0a043cf4a99369e2624a5", "type": "Item" } ] @@ -218,20 +174,92 @@ ] }, { - "_id": "661e6c26750e453380391f55", - "areaType": 11, + "_id": "5d8a1a7d7a3dfe597c2e459e", + "areaType": 7, "continuous": false, "count": 1, - "endProduct": "660bc341c38b837877075e4c", - "isCodeProduction": true, + "endProduct": "544fb45d4bdc2dee738b4568", + "isCodeProduction": false, "isEncoded": false, - "locked": true, + "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 600, + "productionTime": 2350, "requirements": [ { - "areaType": 11, + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c661e86f7741e566b646a", + "type": "Item" + }, + { + "areaType": 7, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e831507ea0a7c419c2f9bd9", + "type": "Item" + } + ] + }, + { + "_id": "5ede07163c345121732a10e9", + "areaType": 2, + "continuous": false, + "count": 10, + "endProduct": "5751a25924597722c463c472", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1000, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "544fb25a4bdc2dfb738b4567", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d40407c86f774318526545a", + "type": "Item" + } + ] + }, + { + "_id": "603ce7c5fd70f047f93bee2a", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5aa7cfc0e5b5b00015693143", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2890, + "requirements": [ + { + "areaType": 2, "requiredLevel": 1, "type": "Area" }, @@ -240,26 +268,227 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "660bbc47c38b837877075e47", + "templateId": "5ea05cf85ad9772e6624305d", "type": "Item" }, { - "type": "QuestComplete" + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347c1124597737fb1379e3", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4d286f7746d4159f07a", + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" } ] }, { - "_id": "655b58a49db22d43ab42b709", - "areaType": 10, + "_id": "5d8a13564ac882218d2085b0", + "areaType": 8, "continuous": false, - "count": 60, - "endProduct": "5d6e68c4a4b9361b93413f79", + "count": 3, + "endProduct": "5734773724597737fd047c14", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 4200, + "productionTime": 4900, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e3577886f774176a362503", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "575146b724597720a27126d5", + "type": "Item" + }, + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + } + ] + }, + { + "_id": "655b63ac9db22d43ab42b70a", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5d5d87f786f77427997cfaef", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 9000, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af41e86f774755a234b67", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4d286f7746d4159f07a", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4a786f7746d3f3c3400", + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "questId": "5b47876e86f7744d1c353205", + "type": "QuestComplete" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "656f9fa0498d1b7e3e071d98", + "type": "Item" + } + ] + }, + { + "_id": "5e6cfc53a3e6886b9e6c39a8", + "areaType": 7, + "continuous": false, + "count": 5, + "endProduct": "5c0e531286f7747fa54205c2", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4990, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 7, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b3a5d86f774252167ba22", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e3606886f77417674759a5", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c0e530286f7747fa1419862", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "544fb3f34bdc2d03748b456a", + "type": "Item" + } + ] + }, + { + "_id": "600aa0d1090cb6338027028c", + "areaType": 2, + "continuous": false, + "count": 2, + "endProduct": "5af0454c86f7746bf20992e8", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 3200, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5ab8e4ed86f7742d8e50c7fa", + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ] + }, + { + "_id": "655b457c9db22d43ab42b706", + "areaType": 10, + "continuous": false, + "count": 120, + "endProduct": "619636be6db0f2477964e710", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 6800, "requirements": [ { "areaType": 10, @@ -267,11 +496,11 @@ "type": "Area" }, { - "count": 60, + "count": 120, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "560d5e524bdc2d25448b4571", + "templateId": "59e68f6f86f7746c9f75e846", "type": "Item" }, { @@ -279,20 +508,84 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", + "templateId": "590a373286f774287540368b", "type": "Item" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5bbd86f774785762df04", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", + "templateId": "5e2af37686f774755a234b65", "type": "Tool" + }, + { + "questId": "5a27bb8386f7741c770d2d0a", + "type": "QuestComplete" + } + ] + }, + { + "_id": "655b6b641273611d2462ab78", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "56e335e4d2720b6c058b456d", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1200, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af41e86f774755a234b67", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5734795124597738002c6176", + "type": "Item" + } + ] + }, + { + "_id": "62a115db5c6bbf22c15ac19d", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "5d1b31ce86f7742523398394", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 900, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c2b4386f77425357b6123", + "type": "Item" } ] }, @@ -341,257 +634,17 @@ ] }, { - "_id": "655b34dc1273611d2462ab74", - "areaType": 10, - "continuous": false, - "count": 180, - "endProduct": "5c0d5ae286f7741e46554302", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2770, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 180, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e6927d86f77411da468256", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c31c586f774245e3141b2", - "type": "Item" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - } - ] - }, - { - "_id": "655b5dc8065b076eb02c4b48", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5c0e5edb86f77461f55ed1f7", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656f57dc27aed95beb08f628", - "type": "Item" - } - ] - }, - { - "_id": "655b48fe065b076eb02c4b46", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "5656d7c34bdc2d9d198b4587", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 15480, - "requirements": [ - { - "count": 120, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b7af5a8532cf95ee0a0dbd", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a09ee4cf4a99369e262453", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "5ede0502879619077751d00a", - "areaType": 7, - "continuous": false, - "count": 2, - "endProduct": "5c0e531d86f7747fa23f4d42", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5100, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c0e531286f7747fa54205c2", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3606886f77417674759a5", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a043cf4a99369e2624a5", - "type": "Item" - } - ] - }, - { - "_id": "5ed9ff023a68ec264e5233c2", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c05308086f7746b2101e90b", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 135399, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0376a486f7747d8050965c", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "573477e124597737dd42e191", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "templateId": "6389c92d52123d5dd17f8876", - "type": "Tool" - }, - { - "questId": "63966faeea19ac7ed845db2c", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5e075ac73c392e0367260489", + "_id": "61c4f862324588369162ac8c", "areaType": 21, "continuous": false, "count": 1, - "endProduct": "67600929bd0a0549d70993f6", + "endProduct": "590a3efd86f77437d351a25b", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 17510, + "productionTime": 11500, "requirements": [ { "areaType": 21, @@ -599,15 +652,15 @@ "type": "Area" }, { - "count": 13, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", + "templateId": "5df8a6a186f77412640e2e80", "type": "Item" }, { - "count": 20, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, @@ -615,15 +668,46 @@ "type": "Item" }, { - "count": 2, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "67586c61a0c49554ed0bb4a8", + "templateId": "5df8a77486f77412672a1e3f", "type": "Item" } ] }, + { + "_id": "661e6c26750e453380391f55", + "areaType": 11, + "continuous": false, + "count": 1, + "endProduct": "660bc341c38b837877075e4c", + "isCodeProduction": true, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 600, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "660bbc47c38b837877075e47", + "type": "Item" + }, + { + "type": "QuestComplete" + } + ] + }, { "_id": "5d5c1f25d582a5479d4ec458", "areaType": 10, @@ -1261,593 +1345,17 @@ ] }, { - "_id": "5d8a13fc2d9612419804003c", - "areaType": 8, - "continuous": false, - "count": 2, - "endProduct": "590c5d4b86f774784e1b9c45", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2900, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448ff904bdc2d6f028b456e", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d7224597744596b4e72", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d8724597744596b4e76", - "type": "Item" - }, - { - "areaType": 8, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "655b505c32b0b1645e6f54c5", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "5737218f245977612125ba51", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 150, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "573720e02459776143012541", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - } - ] - }, - { - "_id": "655b4e591fe356507267b2f5", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "59e77a2386f7742ee578960a", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "619cbfccbedcde2f5b3f7bdd", - "type": "Tool" - } - ] - }, - { - "_id": "670932d7b564327a0e023fcb", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "6707d13e4e617ec94f0e5631", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 900, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c621186f774138d11ea29", - "type": "Item" - }, - { - "questId": "67040c22cc1f3752720376e9", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5eda007f658fac5b8c3862a6", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "5c052f6886f7746b1e3db148", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 140000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c1265fc86f7743f896a21c2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0376a486f7747d8050965c", - "type": "Item" - }, - { - "templateId": "590c639286f774151567fa95", - "type": "Tool" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c7750ef44505c87f5996", - "type": "Item" - }, - { - "templateId": "6389c92d52123d5dd17f8876", - "type": "Tool" - }, - { - "questId": "63966fbeea19ac7ed845db2e", - "type": "QuestComplete" - } - ] - }, - { - "_id": "6589756f5c4f0642a502d54d", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "6176aca650224f204c1da3fb", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5950, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - } - ] - }, - { - "_id": "5ffcab66fd851f4b000d61ef", + "_id": "655b5dc8065b076eb02c4b48", "areaType": 2, "continuous": false, "count": 1, - "endProduct": "5e2af55f86f7746d4159f07c", + "endProduct": "5c0e5edb86f77461f55ed1f7", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 30000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b36a186f7742523398433", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c77245977448d35f6e2", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c5b245977448d35f6e1", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "600a9bd0189b226f40059751", - "areaType": 10, - "continuous": false, - "count": 7, - "endProduct": "5e85a9f4add9fe03027d9bf1", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 16500, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af37686f774755a234b65", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5a0c27731526d80618476ac4", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "5e0755b97f8ea74cc332bf78", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "6680304edadb7aa61d00cef0", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5210, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - } - ] - }, - { - "_id": "5ede01e062155304b6512067", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5b4335ba86f7744d2837a264", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1670, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b39a386f774252339976f", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3f2d86f774253763b735", - "type": "Item" - } - ] - }, - { - "_id": "5d78d81757c9b8484a2bcb99", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "60194943740c5d77f6705eea", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6250, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - } - ] - }, - { - "_id": "5ee49f2c6abbcb7ba704abc2", - "areaType": 10, - "continuous": false, - "count": 200, - "endProduct": "573719df2459775a626ccbc2", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 200, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5737201124597760fc4431f1", - "type": "Item" - } - ] - }, - { - "_id": "5d8a1a7d7a3dfe597c2e459e", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "544fb45d4bdc2dee738b4568", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2350, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c661e86f7741e566b646a", - "type": "Item" - }, - { - "areaType": 7, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e831507ea0a7c419c2f9bd9", - "type": "Item" - } - ] - }, - { - "_id": "5ede07163c345121732a10e9", - "areaType": 2, - "continuous": false, - "count": 10, - "endProduct": "5751a25924597722c463c472", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb25a4bdc2dfb738b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40407c86f774318526545a", - "type": "Item" - } - ] - }, - { - "_id": "603ce7c5fd70f047f93bee2a", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5aa7cfc0e5b5b00015693143", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2890, + "productionTime": 4000, "requirements": [ { "areaType": 2, @@ -1859,98 +1367,6 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5ea05cf85ad9772e6624305d", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c1124597737fb1379e3", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "5d8a13564ac882218d2085b0", - "areaType": 8, - "continuous": false, - "count": 3, - "endProduct": "5734773724597737fd047c14", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4900, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3577886f774176a362503", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "575146b724597720a27126d5", - "type": "Item" - }, - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - } - ] - }, - { - "_id": "655b63ac9db22d43ab42b70a", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d5d87f786f77427997cfaef", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, "templateId": "5e2af4d286f7746d4159f07a", "type": "Item" }, @@ -1963,47 +1379,91 @@ "type": "Item" }, { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "questId": "5b47876e86f7744d1c353205", - "type": "QuestComplete" - }, - { - "count": 2, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "656f9fa0498d1b7e3e071d98", + "templateId": "656f57dc27aed95beb08f628", "type": "Item" } ] }, { - "_id": "5e6cfc53a3e6886b9e6c39a8", + "_id": "655b48fe065b076eb02c4b46", + "areaType": 10, + "continuous": false, + "count": 120, + "endProduct": "5656d7c34bdc2d9d198b4587", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 15480, + "requirements": [ + { + "count": 120, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "64b7af5a8532cf95ee0a0dbd", + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "62a09ee4cf4a99369e262453", + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ] + }, + { + "_id": "5ede0502879619077751d00a", "areaType": 7, "continuous": false, - "count": 5, - "endProduct": "5c0e531286f7747fa54205c2", + "count": 2, + "endProduct": "5c0e531d86f7747fa23f4d42", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 4990, + "productionTime": 5100, "requirements": [ { "areaType": 7, - "requiredLevel": 2, + "requiredLevel": 3, "type": "Area" }, { - "count": 7, + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c0e531286f7747fa54205c2", + "type": "Item" + }, + { + "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, @@ -2011,224 +1471,111 @@ "type": "Item" }, { - "count": 2, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, "templateId": "59e3606886f77417674759a5", "type": "Item" }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c0e530286f7747fa1419862", - "type": "Item" - }, { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "544fb3f34bdc2d03748b456a", + "templateId": "62a0a043cf4a99369e2624a5", "type": "Item" } ] }, { - "_id": "600aa0d1090cb6338027028c", - "areaType": 2, + "_id": "5ed9ff023a68ec264e5233c2", + "areaType": 11, "continuous": false, - "count": 2, - "endProduct": "5af0454c86f7746bf20992e8", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3200, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ab8e4ed86f7742d8e50c7fa", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "655b457c9db22d43ab42b706", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "619636be6db0f2477964e710", + "count": 1, + "endProduct": "5c05308086f7746b2101e90b", "isCodeProduction": false, "isEncoded": false, "locked": true, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 6800, + "productionTime": 135399, "requirements": [ { - "areaType": 10, + "areaType": 11, "requiredLevel": 2, "type": "Area" }, { - "count": 120, + "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "59e68f6f86f7746c9f75e846", + "templateId": "5d0376a486f7747d8050965c", "type": "Item" }, { - "count": 1, + "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590a373286f774287540368b", + "templateId": "573477e124597737dd42e191", "type": "Item" }, { - "templateId": "5e2af37686f774755a234b65", + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c06782b86f77426df5407d2", + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", "type": "Tool" }, { - "questId": "5a27bb8386f7741c770d2d0a", + "templateId": "6389c92d52123d5dd17f8876", + "type": "Tool" + }, + { + "questId": "63966faeea19ac7ed845db2c", "type": "QuestComplete" } ] }, { - "_id": "655b6b641273611d2462ab78", - "areaType": 2, + "_id": "5e075ac73c392e0367260489", + "areaType": 21, "continuous": false, "count": 1, - "endProduct": "56e335e4d2720b6c058b456d", + "endProduct": "67600929bd0a0549d70993f6", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 1200, + "productionTime": 17510, "requirements": [ { - "areaType": 2, + "areaType": 21, "requiredLevel": 1, "type": "Area" }, { - "count": 1, + "count": 13, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", + "templateId": "5df8a77486f77412672a1e3f", "type": "Item" }, { - "count": 1, + "count": 20, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - } - ] - }, - { - "_id": "62a115db5c6bbf22c15ac19d", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5d1b31ce86f7742523398394", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 900, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2b4386f77425357b6123", - "type": "Item" - } - ] - }, - { - "_id": "5d5589c1f934db045e6c5492", - "areaType": 6, - "continuous": true, - "count": 1, - "endProduct": "5d1b33a686f7742523398398", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 1, - "productionTime": 19500, - "requirements": [ - { - "areaType": 6, - "requiredLevel": 3, - "type": "Area" - }, - { - "resource": 66, - "templateId": "5d1b385e86f774252167b98a", - "type": "Resource" - } - ] - }, - { - "_id": "600ab8e3e4022c380a726088", - "areaType": 8, - "continuous": false, - "count": 3, - "endProduct": "5d403f9186f7743cac3f229b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6400, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", + "templateId": "5df8a72c86f77412640e2e83", "type": "Item" }, { @@ -2236,68 +1583,8 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d40407c86f774318526545a", + "templateId": "67586c61a0c49554ed0bb4a8", "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57505f6224597709a92585a9", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5bc9be8fd4351e00334cae6e", - "type": "Item" - }, - { - "templateId": "5d1b385e86f774252167b98a", - "type": "Tool" - } - ] - }, - { - "_id": "603cf3094bb658618458e010", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "56742c324bdc2d150f8b456d", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c1265fc86f7743f896a21c2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b309586f77425227d1676", - "type": "Item" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" } ] }, @@ -2829,565 +2116,6 @@ } ] }, - { - "_id": "629e1b3a0694b45420210cad", - "areaType": 8, - "continuous": false, - "count": 2, - "endProduct": "5af0484c86f7740f02001f7f", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2700, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e54f6af86f7742199090bf3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - } - ] - }, - { - "_id": "5d5c1fd4d582a500650132f0", - "areaType": 19, - "continuous": false, - "count": 1, - "endProduct": "5d1b376e86f774252519444e", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 11000, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3577886f774176a362503", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b33a686f7742523398398", - "type": "Item" - } - ] - }, - { - "_id": "600aa209f64dfd63ec1293d6", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5648a69d4bdc2ded0b8b457b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3600, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e4abfed86f77406a2713cf7", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "6399c421d65735732c6ba765", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "62e910aaf957f2915e0a5e36", - "isCodeProduction": false, - "isEncoded": true, - "locked": true, - "needFuelForAllProductionTime": true, - "productionLimitCount": 0, - "productionTime": 43200, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62e910aaf957f2915e0a5e36", - "type": "Item" - }, - { - "templateId": "6331bb0d1aa9f42b804997a6", - "type": "Tool" - }, - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "questId": "625d700cc48e6c62a440fab5", - "type": "QuestComplete" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c70ca33d8c4cdf4932c6", - "type": "Item" - } - ] - }, - { - "_id": "655b60774343a16d2e04766b", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5ab8dced86f774646209ec87", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 7000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3556c86f7741776641ac2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59faf98186f774067b6be103", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656fa25e94b480b8a500c0e0", - "type": "Item" - } - ] - }, - { - "_id": "61b9da6a66f37641c8240014", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "5ed5160a87bb8443d10680b5", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 8400, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - } - ] - }, - { - "_id": "5e13301cc7049d4d9738e1a7", - "areaType": 7, - "continuous": false, - "count": 3, - "endProduct": "5d1b3a5d86f774252167ba22", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2880, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5755356824597772cb798962", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb25a4bdc2dfb738b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c695186f7741e566b64a2", - "type": "Item" - } - ] - }, - { - "_id": "62a11354b552772a0c4ba09e", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "60391a8b3364dc22b04d0ce5", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5780cf722459777a5108b9a1", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "63a571802116d261d2336cd1", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "63a0b2eabea67a6d93009e52", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c70ca33d8c4cdf4932c6", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c052f6886f7746b1e3db148", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a3efd86f77437d351a25b", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56742c324bdc2d150f8b456d", - "type": "Item" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "questId": "625d6ffaf7308432be1d44c5", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5de021b30f6d581e965bcde7", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "5d1c819a86f774771b0acd6c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4700, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": true, - "isSpawnedInSession": false, - "templateId": "59e6687d86f77411d949b251", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "5d8f5e1af3a8f83c8600afb2", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "5d40412b86f7743cb332ac3a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2100, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c13cd2486f774072c757944", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a09f32621468534a797acb", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - } - ] - }, - { - "_id": "60048c82a7903e00382d9593", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5d1b5e94d7ad1a2b865a96b0", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 32200, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b2ffd86f77425243e8d17", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0377ce86f774186372f689", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c05308086f7746b2101e90b", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c37d286f77443be3d7827", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "6389c8fb46b54c634724d847", - "type": "Tool" - }, - { - "questId": "63966ff54c3ef01b6f3ffad8", - "type": "QuestComplete" - } - ] - }, { "_id": "6617cdb6b24b0ea24505f618", "areaType": 10, @@ -3847,7 +2575,7 @@ "endProduct": "674098588466ebb03408b210", "isCodeProduction": false, "isEncoded": false, - "locked": true, + "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, "productionTime": 10, @@ -4043,421 +2771,97 @@ ] }, { - "_id": "6012ee7e44a0465ee67a58de", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5ed51652f6c34d2cc26336a1", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5500, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c0e533786f7747fa23f4d47", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb3f34bdc2d03748b456a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5751435d24597720a27126d1", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "questId": "60e71c48c1bfa3050473b8e5", - "type": "QuestComplete" - } - ] - }, - { - "_id": "600a9a34189b226f40059743", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "5d1b2ffd86f77425243e8d17", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9100, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5b4391a586f7745321235ab2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e366c186f7741778269d85", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "590c639286f774151567fa95", - "type": "Tool" - } - ] - }, - { - "_id": "5de951483c52683d810b4a10", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "590a3b0486f7743954552bdb", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1980, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734781f24597737e04bf32a", - "type": "Item" - }, - { - "templateId": "5d63d33b86f7746ea9275524", - "type": "Tool" - } - ] - }, - { - "_id": "61c226d91b8c294cd411c881", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "590a3efd86f77437d351a25b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 61300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5672cb124bdc2d1a0f8b4568", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5672cb724bdc2dc2088b456b", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a391c86f774385a33c404", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - } - ] - }, - { - "_id": "658976555aa97f488d096ca7", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "66b6296d7994640992013b17", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10400, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 8, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - } - ] - }, - { - "_id": "6002e26ac6b84d04cc62045e", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "590a391c86f774385a33c404", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2600, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a386e86f77429692b27ab", - "type": "Item" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "5de10c50c607752a1f1262c7", + "_id": "5d8a13fc2d9612419804003c", "areaType": 8, "continuous": false, - "count": 1, - "endProduct": "59e3577886f774176a362503", + "count": 2, + "endProduct": "590c5d4b86f774784e1b9c45", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 5000, + "productionTime": 2900, "requirements": [ - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, { "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "57505f6224597709a92585a9", + "templateId": "5448ff904bdc2d6f028b456e", "type": "Item" - } - ] - }, - { - "_id": "5eda0ad40699b81bb9142aae", - "areaType": 11, - "continuous": false, - "count": 2, - "endProduct": "5c05300686f7746dce784e5d", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 225000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347baf24597738002c6178", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c392f86f77444754deb29", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56742c324bdc2d150f8b456d", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "templateId": "6389c8fb46b54c634724d847", - "type": "Tool" - }, - { - "questId": "63966fe7ea74a47c2d3fc0e6", - "type": "QuestComplete" - } - ] - }, - { - "_id": "5dcfe2582f9b3d566c7af977", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "59e35cbb86f7741778269d83", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 12100, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" }, { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d1b39a386f774252339976f", + "templateId": "57347d7224597744596b4e72", "type": "Item" }, { - "count": 3, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", + "templateId": "57347d8724597744596b4e76", "type": "Item" }, { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" + "areaType": 8, + "requiredLevel": 1, + "type": "Area" } ] }, { - "_id": "63a2abbb31772a61500d5336", + "_id": "655b505c32b0b1645e6f54c5", "areaType": 10, "continuous": false, - "count": 1, - "endProduct": "59e366c186f7741778269d85", + "count": 150, + "endProduct": "5737218f245977612125ba51", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 1500, + "productionTime": 3300, "requirements": [ { "areaType": 10, "requiredLevel": 1, "type": "Area" }, + { + "count": 150, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "573720e02459776143012541", + "type": "Item" + }, { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5ac4c50d5acfc40019262e87", + "templateId": "5c06779c86f77426e00dd782", "type": "Item" } ] }, { - "_id": "5d78f27d115f693ad750d2c6", + "_id": "655b4e591fe356507267b2f5", "areaType": 10, "continuous": false, - "count": 6, - "endProduct": "5448be9a4bdc2dfd2f8b456a", + "count": 50, + "endProduct": "59e77a2386f7742ee578960a", "isCodeProduction": false, "isEncoded": false, - "locked": false, + "locked": true, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 18300, + "productionTime": 8400, "requirements": [ { "areaType": 10, @@ -4469,39 +2873,35 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "60391b0fb847c71012789415", + "templateId": "5d6fc78386f77449d825f9dc", "type": "Item" }, { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af51086f7746d3f3c3402", - "type": "Item" + "templateId": "619cbfccbedcde2f5b3f7bdd", + "type": "Tool" } ] }, { - "_id": "6002e8fb41d38607bc4198ab", + "_id": "670932d7b564327a0e023fcb", "areaType": 11, "continuous": false, "count": 1, - "endProduct": "5e42c81886f7742a01529f57", + "endProduct": "6707d13e4e617ec94f0e5631", "isCodeProduction": false, "isEncoded": false, - "locked": false, + "locked": true, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 236000, + "productionTime": 900, "requirements": [ { "areaType": 11, - "requiredLevel": 2, + "requiredLevel": 1, "type": "Area" }, { - "count": 5, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, @@ -4509,47 +2909,27 @@ "type": "Item" }, { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e42c83786f7742a021fdf3c", - "type": "Item" - }, - { - "templateId": "5c052fb986f7746b2101e909", - "type": "Tool" - }, - { - "templateId": "5c05300686f7746dce784e5d", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7c024770ee6f9c6b8b53", - "type": "Item" + "questId": "67040c22cc1f3752720376e9", + "type": "QuestComplete" } ] }, { - "_id": "61c77cc6fcc1673f08540e9b", - "areaType": 8, + "_id": "5eda007f658fac5b8c3862a6", + "areaType": 11, "continuous": false, - "count": 2, - "endProduct": "60098b1705871270cd5352a1", + "count": 1, + "endProduct": "5c052f6886f7746b1e3db148", "isCodeProduction": false, "isEncoded": false, - "locked": false, + "locked": true, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 4000, + "productionTime": 140000, "requirements": [ { - "areaType": 8, - "requiredLevel": 1, + "areaType": 11, + "requiredLevel": 2, "type": "Area" }, { @@ -4557,7 +2937,7 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", + "templateId": "5c1265fc86f7743f896a21c2", "type": "Item" }, { @@ -4565,161 +2945,49 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5e2af29386f7746d4159f077", + "templateId": "5af0561e86f7745f5f3ad6ac", "type": "Item" }, { - "templateId": "5d1b39a386f774252339976f", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d0376a486f7747d8050965c", + "type": "Item" + }, + { + "templateId": "590c639286f774151567fa95", "type": "Tool" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "6389c7750ef44505c87f5996", + "type": "Item" + }, + { + "templateId": "6389c92d52123d5dd17f8876", + "type": "Tool" + }, + { + "questId": "63966fbeea19ac7ed845db2e", + "type": "QuestComplete" } ] }, { - "_id": "5e0758f99694354c4d2bfd47", + "_id": "6589756f5c4f0642a502d54d", "areaType": 21, "continuous": false, "count": 1, - "endProduct": "651450ce0e00edc794068371", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6200, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, - { - "_id": "5dd3c5a67da3785e63275437", - "areaType": 10, - "continuous": false, - "count": 3, - "endProduct": "5d6fc87386f77449db3db94e", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6750, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d0379a886f77420407aa271", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "60391afc25aff57af81f7085", - "type": "Tool" - } - ] - }, - { - "_id": "5d8f5ee9de0799001d229ed2", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d1b371186f774253763a656", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3720, - "requirements": [ - { - "count": 10, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56742c2e4bdc2d95058b456d", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 10, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56742c284bdc2d98058b456d", - "type": "Item" - }, - { - "templateId": "5d1b39a386f774252339976f", - "type": "Tool" - } - ] - }, - { - "_id": "5df8ffcbaab5f257bd7ff3a8", - "areaType": 2, - "continuous": false, - "count": 2, - "endProduct": "590c5bbd86f774785762df04", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5c9f86f77477c91c36e7", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "658975e25c4f0642a502d54e", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "668fe5a998b5ad715703ddd6", + "endProduct": "6176aca650224f204c1da3fb", "isCodeProduction": false, "isEncoded": false, "locked": false, @@ -4732,6 +3000,1211 @@ "requiredLevel": 1, "type": "Area" }, + { + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a72c86f77412640e2e83", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a6a186f77412640e2e80", + "type": "Item" + } + ] + }, + { + "_id": "5ffcab66fd851f4b000d61ef", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5e2af55f86f7746d4159f07c", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 30000, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b36a186f7742523398433", + "type": "Item" + }, + { + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347c77245977448d35f6e2", + "type": "Item" + }, + { + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347c5b245977448d35f6e1", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "61bf7b6302b3924be92fa8c3", + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ] + }, + { + "_id": "600a9bd0189b226f40059751", + "areaType": 10, + "continuous": false, + "count": 7, + "endProduct": "5e85a9f4add9fe03027d9bf1", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 16500, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d6fc78386f77449d825f9dc", + "type": "Item" + }, + { + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af37686f774755a234b65", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5a0c27731526d80618476ac4", + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ] + }, + { + "_id": "5e0755b97f8ea74cc332bf78", + "areaType": 21, + "continuous": false, + "count": 1, + "endProduct": "6680304edadb7aa61d00cef0", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5210, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a6a186f77412640e2e80", + "type": "Item" + } + ] + }, + { + "_id": "5ede01e062155304b6512067", + "areaType": 7, + "continuous": false, + "count": 1, + "endProduct": "5b4335ba86f7744d2837a264", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1670, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b39a386f774252339976f", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b3f2d86f774253763b735", + "type": "Item" + } + ] + }, + { + "_id": "5d78d81757c9b8484a2bcb99", + "areaType": 10, + "continuous": false, + "count": 150, + "endProduct": "60194943740c5d77f6705eea", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 6250, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d6fc78386f77449d825f9dc", + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + } + ] + }, + { + "_id": "5ee49f2c6abbcb7ba704abc2", + "areaType": 10, + "continuous": false, + "count": 200, + "endProduct": "573719df2459775a626ccbc2", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5400, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "count": 200, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5737201124597760fc4431f1", + "type": "Item" + } + ] + }, + { + "_id": "5d5c1fd4d582a500650132f0", + "areaType": 19, + "continuous": false, + "count": 1, + "endProduct": "5d1b376e86f774252519444e", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 11000, + "requirements": [ + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e3577886f774176a362503", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b33a686f7742523398398", + "type": "Item" + } + ] + }, + { + "_id": "600aa209f64dfd63ec1293d6", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5648a69d4bdc2ded0b8b457b", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 3600, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e4abfed86f77406a2713cf7", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4a786f7746d3f3c3400", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af41e86f774755a234b67", + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ] + }, + { + "_id": "6399c421d65735732c6ba765", + "areaType": 11, + "continuous": false, + "count": 1, + "endProduct": "62e910aaf957f2915e0a5e36", + "isCodeProduction": false, + "isEncoded": true, + "locked": true, + "needFuelForAllProductionTime": true, + "productionLimitCount": 0, + "productionTime": 43200, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "62e910aaf957f2915e0a5e36", + "type": "Item" + }, + { + "templateId": "6331bb0d1aa9f42b804997a6", + "type": "Tool" + }, + { + "areaType": 11, + "requiredLevel": 2, + "type": "Area" + }, + { + "questId": "625d700cc48e6c62a440fab5", + "type": "QuestComplete" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "6389c70ca33d8c4cdf4932c6", + "type": "Item" + } + ] + }, + { + "_id": "655b60774343a16d2e04766b", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5ab8dced86f774646209ec87", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 7000, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4d286f7746d4159f07a", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4a786f7746d3f3c3400", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e3556c86f7741776641ac2", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59faf98186f774067b6be103", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "656fa25e94b480b8a500c0e0", + "type": "Item" + } + ] + }, + { + "_id": "61b9da6a66f37641c8240014", + "areaType": 21, + "continuous": false, + "count": 1, + "endProduct": "5ed5160a87bb8443d10680b5", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 8400, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a6a186f77412640e2e80", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a72c86f77412640e2e83", + "type": "Item" + } + ] + }, + { + "_id": "5e13301cc7049d4d9738e1a7", + "areaType": 7, + "continuous": false, + "count": 3, + "endProduct": "5d1b3a5d86f774252167ba22", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2880, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5755356824597772cb798962", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "544fb25a4bdc2dfb738b4567", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c695186f7741e566b64a2", + "type": "Item" + } + ] + }, + { + "_id": "62a11354b552772a0c4ba09e", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "60391a8b3364dc22b04d0ce5", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 10000, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5780cf722459777a5108b9a1", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "61bf7b6302b3924be92fa8c3", + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ] + }, + { + "_id": "63a571802116d261d2336cd1", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "63a0b2eabea67a6d93009e52", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5400, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "6389c70ca33d8c4cdf4932c6", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c052f6886f7746b1e3db148", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590a3efd86f77437d351a25b", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "56742c324bdc2d150f8b456d", + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "questId": "625d6ffaf7308432be1d44c5", + "type": "QuestComplete" + } + ] + }, + { + "_id": "5de021b30f6d581e965bcde7", + "areaType": 10, + "continuous": false, + "count": 2, + "endProduct": "5d1c819a86f774771b0acd6c", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4700, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": true, + "isSpawnedInSession": false, + "templateId": "59e6687d86f77411d949b251", + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ] + }, + { + "_id": "60048c82a7903e00382d9593", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "5d1b5e94d7ad1a2b865a96b0", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 32200, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b2ffd86f77425243e8d17", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d0377ce86f774186372f689", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c05308086f7746b2101e90b", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c37d286f77443be3d7827", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5af0561e86f7745f5f3ad6ac", + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "6389c8fb46b54c634724d847", + "type": "Tool" + }, + { + "questId": "63966ff54c3ef01b6f3ffad8", + "type": "QuestComplete" + } + ] + }, + { + "_id": "655b34dc1273611d2462ab74", + "areaType": 10, + "continuous": false, + "count": 180, + "endProduct": "5c0d5ae286f7741e46554302", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2770, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 180, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e6927d86f77411da468256", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c31c586f774245e3141b2", + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + } + ] + }, + { + "_id": "655b58a49db22d43ab42b709", + "areaType": 10, + "continuous": false, + "count": 60, + "endProduct": "5d6e68c4a4b9361b93413f79", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4200, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 60, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "560d5e524bdc2d25448b4571", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d6fc87386f77449db3db94e", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5bbd86f774785762df04", + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ] + }, + { + "_id": "629e1b3a0694b45420210cad", + "areaType": 8, + "continuous": false, + "count": 2, + "endProduct": "5af0484c86f7740f02001f7f", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2700, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e54f6af86f7742199090bf3", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + } + ] + }, + { + "_id": "5d5c205bd582a50d042a3c0e", + "areaType": 20, + "continuous": true, + "count": 1, + "endProduct": "59faff1d86f7746c51718c9c", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 3, + "productionTime": 145000, + "requirements": [] + }, + { + "_id": "5eeca7724a8a9b668f0d89cd", + "areaType": 10, + "continuous": false, + "count": 180, + "endProduct": "5c925fa22e221601da359b7b", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 7250, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 150, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "64b7bbb74b75259c590fa897", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ] + }, + { + "_id": "5ffcad24f3fdc212a91d5536", + "areaType": 10, + "continuous": false, + "count": 50, + "endProduct": "64b8ee384b75259c590fa89b", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5250, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b36a186f7742523398433", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ] + }, + { + "_id": "655b5fd2975a7f3c734661a8", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "61bcc89aef0f505f0c6cd0fc", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 6000, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4a786f7746d3f3c3400", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4d286f7746d4159f07a", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af41e86f774755a234b67", + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + }, + { + "questId": "5b478d0f86f7744d190d91b5", + "type": "QuestComplete" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "656fb21fa0dce000a2020f7c", + "type": "Item" + } + ] + }, + { + "_id": "655b650ab71eeb7c4168c627", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5ab8e79e86f7742d8b372e78", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 10000, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e3556c86f7741776641ac2", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4d286f7746d4159f07a", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af41e86f774755a234b67", + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + }, + { + "templateId": "591094e086f7747caa7bb2ef", + "type": "Tool" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "656f611f94b480b8a500c0db", + "type": "Item" + } + ] + }, + { + "_id": "600ab99ce4022c380a726090", + "areaType": 7, + "continuous": false, + "count": 1, + "endProduct": "5e8488fa988a8701445df1e4", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1800, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e8488fa988a8701445df1e4", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b3a5d86f774252167ba22", + "type": "Item" + } + ] + }, + { + "_id": "6666d829a8298779fc40e537", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "665732f4464c4b4ba4670fa9", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 300, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "66572b88ac60f009f270d1dc", + "type": "Item" + } + ] + }, + { + "_id": "61b9da10695bdc188002db3a", + "areaType": 21, + "continuous": false, + "count": 1, + "endProduct": "5c0e531286f7747fa54205c2", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5400, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a6a186f77412640e2e80", + "type": "Item" + }, { "count": 1, "isEncoded": false, @@ -4743,17 +4216,314 @@ ] }, { - "_id": "63a3359eaf870e651d58e61a", - "areaType": 10, + "_id": "600abc08e4022c380a7260a8", + "areaType": 7, "continuous": false, "count": 1, - "endProduct": "55d485be4bdc2d962f8b456f", + "endProduct": "5c0530ee86f774697952d952", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 1200, + "productionTime": 120000, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5af0534a86f7743b6f354284", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590a391c86f774385a33c404", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c052fb986f7746b2101e909", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5af0561e86f7745f5f3ad6ac", + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "6389c7750ef44505c87f5996", + "type": "Item" + }, + { + "templateId": "6389c8fb46b54c634724d847", + "type": "Tool" + } + ] + }, + { + "_id": "5fe338e364adb27bb90594be", + "areaType": 21, + "continuous": false, + "count": 1, + "endProduct": "5ed51652f6c34d2cc26336a1", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4600, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a72c86f77412640e2e83", + "type": "Item" + } + ] + }, + { + "_id": "677d4fdb42cdfce74006f961", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "5d1b304286f774253763a528", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1887, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b309586f77425227d1676", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c06782b86f77426df5407d2", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "6389c70ca33d8c4cdf4932c6", + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ] + }, + { + "_id": "5e58e0c286f7740ba7486ca3", + "areaType": 11, + "continuous": false, + "count": 1, + "endProduct": "5c12613b86f7743bbe2c3f76", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 114000, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "62a0a16d0b9d3c46de5b6e97", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "577e1c9d2459773cd707c525", + "type": "Item" + } + ] + }, + { + "_id": "600ab8e3e4022c380a726088", + "areaType": 8, + "continuous": false, + "count": 3, + "endProduct": "5d403f9186f7743cac3f229b", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 6400, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5448fee04bdc2dbc018b4567", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d40407c86f774318526545a", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57505f6224597709a92585a9", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5bc9be8fd4351e00334cae6e", + "type": "Item" + }, + { + "templateId": "5d1b385e86f774252167b98a", + "type": "Tool" + } + ] + }, + { + "_id": "5d5589c1f934db045e6c5492", + "areaType": 6, + "continuous": true, + "count": 1, + "endProduct": "5d1b33a686f7742523398398", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 1, + "productionTime": 19500, + "requirements": [ + { + "areaType": 6, + "requiredLevel": 3, + "type": "Area" + }, + { + "resource": 66, + "templateId": "5d1b385e86f774252167b98a", + "type": "Resource" + } + ] + }, + { + "_id": "5d8f5e1af3a8f83c8600afb2", + "areaType": 2, + "continuous": false, + "count": 2, + "endProduct": "5d40412b86f7743cb332ac3a", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2100, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c13cd2486f774072c757944", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "62a09f32621468534a797acb", + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + } + ] + }, + { + "_id": "603cf3094bb658618458e010", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "56742c324bdc2d150f8b456d", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 6000, "requirements": [ { "areaType": 10, @@ -4761,36 +4531,24 @@ "type": "Area" }, { - "templateId": "62a0a0bb621468534a797ad5", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c1265fc86f7743f896a21c2", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b309586f77425227d1676", + "type": "Item" + }, + { + "templateId": "5d4042a986f7743185265463", "type": "Tool" - }, - { - "templateId": "590c2b4386f77425357b6123", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ea034f65aad6446a939737e", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448c12b4bdc2d02308b456f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af22086f7746d3f3c33fa", - "type": "Item" } ] }, @@ -5547,20 +5305,424 @@ ] }, { - "_id": "5e58e0c286f7740ba7486ca3", - "areaType": 11, + "_id": "6012ee7e44a0465ee67a58de", + "areaType": 7, "continuous": false, "count": 1, - "endProduct": "5c12613b86f7743bbe2c3f76", + "endProduct": "5ed51652f6c34d2cc26336a1", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5500, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c0e533786f7747fa23f4d47", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "544fb3f34bdc2d03748b456a", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5751435d24597720a27126d1", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b3a5d86f774252167ba22", + "type": "Item" + }, + { + "questId": "60e71c48c1bfa3050473b8e5", + "type": "QuestComplete" + } + ] + }, + { + "_id": "600a9a34189b226f40059743", + "areaType": 10, + "continuous": false, + "count": 2, + "endProduct": "5d1b2ffd86f77425243e8d17", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 114000, + "productionTime": 9100, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5b4391a586f7745321235ab2", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e366c186f7741778269d85", + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "590c639286f774151567fa95", + "type": "Tool" + } + ] + }, + { + "_id": "5de951483c52683d810b4a10", + "areaType": 10, + "continuous": false, + "count": 2, + "endProduct": "590a3b0486f7743954552bdb", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1980, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5734781f24597737e04bf32a", + "type": "Item" + }, + { + "templateId": "5d63d33b86f7746ea9275524", + "type": "Tool" + } + ] + }, + { + "_id": "61c226d91b8c294cd411c881", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "590a3efd86f77437d351a25b", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 61300, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5672cb124bdc2d1a0f8b4568", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5672cb724bdc2dc2088b456b", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590a391c86f774385a33c404", + "type": "Item" + }, + { + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c06779c86f77426e00dd782", + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + } + ] + }, + { + "_id": "658976555aa97f488d096ca7", + "areaType": 21, + "continuous": false, + "count": 1, + "endProduct": "66b6296d7994640992013b17", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 10400, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 8, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a72c86f77412640e2e83", + "type": "Item" + } + ] + }, + { + "_id": "6002e26ac6b84d04cc62045e", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "590a391c86f774385a33c404", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2600, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590a386e86f77429692b27ab", + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ] + }, + { + "_id": "5de10c50c607752a1f1262c7", + "areaType": 8, + "continuous": false, + "count": 1, + "endProduct": "59e3577886f774176a362503", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5000, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57505f6224597709a92585a9", + "type": "Item" + } + ] + }, + { + "_id": "5eda0ad40699b81bb9142aae", + "areaType": 11, + "continuous": false, + "count": 2, + "endProduct": "5c05300686f7746dce784e5d", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 225000, "requirements": [ { "areaType": 11, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347baf24597738002c6178", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c392f86f77444754deb29", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "56742c324bdc2d150f8b456d", + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "templateId": "6389c8fb46b54c634724d847", + "type": "Tool" + }, + { + "questId": "63966fe7ea74a47c2d3fc0e6", + "type": "QuestComplete" + } + ] + }, + { + "_id": "5dcfe2582f9b3d566c7af977", + "areaType": 2, + "continuous": false, + "count": 2, + "endProduct": "59e35cbb86f7741778269d83", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 12100, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b39a386f774252339976f", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c06779c86f77426e00dd782", + "type": "Item" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5734795124597738002c6176", + "type": "Item" + } + ] + }, + { + "_id": "63a2abbb31772a61500d5336", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "59e366c186f7741778269d85", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1500, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5ac4c50d5acfc40019262e87", + "type": "Item" + } + ] + }, + { + "_id": "5d78f27d115f693ad750d2c6", + "areaType": 10, + "continuous": false, + "count": 6, + "endProduct": "5448be9a4bdc2dfd2f8b456a", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 18300, + "requirements": [ + { + "areaType": 10, "requiredLevel": 3, "type": "Area" }, @@ -5569,43 +5731,43 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "62a0a16d0b9d3c46de5b6e97", + "templateId": "60391b0fb847c71012789415", "type": "Item" }, { - "count": 1, + "count": 3, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "577e1c9d2459773cd707c525", + "templateId": "5e2af51086f7746d3f3c3402", "type": "Item" } ] }, { - "_id": "6002e55595c402039a2747f4", + "_id": "6002e8fb41d38607bc4198ab", "areaType": 11, "continuous": false, "count": 1, - "endProduct": "5c1e495a86f7743109743dfb", + "endProduct": "5e42c81886f7742a01529f57", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 476000, + "productionTime": 236000, "requirements": [ { "areaType": 11, - "requiredLevel": 3, + "requiredLevel": 2, "type": "Area" }, { - "count": 10, + "count": 5, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c94bbff86f7747ee735c08f", + "templateId": "590c621186f774138d11ea29", "type": "Item" }, { @@ -5613,16 +5775,16 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c1d0d6d86f7744bb2683e1f", + "templateId": "5e42c83786f7742a021fdf3c", "type": "Item" }, { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c12613b86f7743bbe2c3f76", - "type": "Item" + "templateId": "5c052fb986f7746b2101e909", + "type": "Tool" + }, + { + "templateId": "5c05300686f7746dce784e5d", + "type": "Tool" }, { "count": 1, @@ -5631,197 +5793,61 @@ "isSpawnedInSession": false, "templateId": "61bf7c024770ee6f9c6b8b53", "type": "Item" + } + ] + }, + { + "_id": "61c77cc6fcc1673f08540e9b", + "areaType": 8, + "continuous": false, + "count": 2, + "endProduct": "60098b1705871270cd5352a1", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4000, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 1, + "type": "Area" }, { - "templateId": "5c052fb986f7746b2101e909", + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5448fee04bdc2dbc018b4567", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af29386f7746d4159f077", + "type": "Item" + }, + { + "templateId": "5d1b39a386f774252339976f", "type": "Tool" } ] }, { - "_id": "5d558968f934db006d2d5b32", - "areaType": 10, + "_id": "5e0758f99694354c4d2bfd47", + "areaType": 21, "continuous": false, - "count": 140, - "endProduct": "57371aab2459775a77142f22", + "count": 1, + "endProduct": "651450ce0e00edc794068371", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, "productionTime": 6200, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "6558d7894626375d6735670c", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "5fc275cf85fd526b824a571a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 15000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 50, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5fc382c1016cce60e8341b20", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "5d93ba4486f77454bd61d2a9", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d1b2f3f86f774252167a52c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9400, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c595c86f7747884343ad7", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b385e86f774252167b98a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "templateId": "5d40425986f7743185265461", - "type": "Tool" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "655b4f57769de97e1d62d116", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "5e023d34e8a400319a28ed44", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 9500, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 50, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e77a2386f7742ee578960a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60391a8b3364dc22b04d0ce5", - "type": "Item" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "questId": "5bc4856986f77454c317bea7", - "type": "QuestComplete" - } - ] - }, - { - "_id": "61b9d9deef9a1b5d6a798986", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "5d403f9186f7743cac3f229b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5200, "requirements": [ { "areaType": 21, @@ -5829,7 +5855,7 @@ "type": "Area" }, { - "count": 2, + "count": 3, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, @@ -5839,17 +5865,485 @@ ] }, { - "_id": "660c2dbaa2a92e70cc074863", - "areaType": 11, + "_id": "5dd3c5a67da3785e63275437", + "areaType": 10, + "continuous": false, + "count": 3, + "endProduct": "5d6fc87386f77449db3db94e", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 6750, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d0379a886f77420407aa271", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "60391afc25aff57af81f7085", + "type": "Tool" + } + ] + }, + { + "_id": "5d8f5ee9de0799001d229ed2", + "areaType": 2, "continuous": false, "count": 1, - "endProduct": "660bbc98c38b837877075e4a", + "endProduct": "5d1b371186f774253763a656", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 3720, + "requirements": [ + { + "count": 10, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "56742c2e4bdc2d95058b456d", + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 10, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "56742c284bdc2d98058b456d", + "type": "Item" + }, + { + "templateId": "5d1b39a386f774252339976f", + "type": "Tool" + } + ] + }, + { + "_id": "5df8ffcbaab5f257bd7ff3a8", + "areaType": 2, + "continuous": false, + "count": 2, + "endProduct": "590c5bbd86f774785762df04", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 9000, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5c9f86f77477c91c36e7", + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ] + }, + { + "_id": "658975e25c4f0642a502d54e", + "areaType": 21, + "continuous": false, + "count": 1, + "endProduct": "668fe5a998b5ad715703ddd6", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5950, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a77486f77412672a1e3f", + "type": "Item" + } + ] + }, + { + "_id": "63a3359eaf870e651d58e61a", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "55d485be4bdc2d962f8b456f", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1200, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "templateId": "590c2b4386f77425357b6123", + "type": "Tool" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5ea034f65aad6446a939737e", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5448c12b4bdc2d02308b456f", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af22086f7746d3f3c33fa", + "type": "Item" + } + ] + }, + { + "_id": "5dea63e21ecdbf7668030f24", + "areaType": 10, + "continuous": false, + "count": 5, + "endProduct": "5733279d245977289b77ec24", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 10000, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d03794386f77420415576f5", + "type": "Item" + }, + { + "templateId": "619cbfccbedcde2f5b3f7bdd", + "type": "Tool" + } + ] + }, + { + "_id": "63baedefe6ebc10fe0201083", + "areaType": 10, + "continuous": false, + "count": 120, + "endProduct": "5ba26835d4351e0035628ff5", "isCodeProduction": false, "isEncoded": false, "locked": true, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 900, + "productionTime": 12400, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 120, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5ba2678ad4351e44f824b344", + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "templateId": "590a3d9c86f774385926e510", + "type": "Tool" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c06782b86f77426df5407d2", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "61bf7b6302b3924be92fa8c3", + "type": "Item" + }, + { + "questId": "5c0d4e61d09282029f53920e", + "type": "QuestComplete" + } + ] + }, + { + "_id": "5de950a845b5d67bad6e9ef7", + "areaType": 10, + "continuous": false, + "count": 2, + "endProduct": "59e36c6f86f774176c10a2a7", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2100, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347cd0245977445a2d6ff1", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c06779c86f77426e00dd782", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5734795124597738002c6176", + "type": "Item" + } + ] + }, + { + "_id": "5e0759e73c392e0367260488", + "areaType": 21, + "continuous": false, + "count": 1, + "endProduct": "674d6121c09f69dfb201a888", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5950, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a72c86f77412640e2e83", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a6a186f77412640e2e80", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a77486f77412672a1e3f", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "67586c61a0c49554ed0bb4a8", + "type": "Item" + } + ] + }, + { + "_id": "6002eec9cc73cd34ac64188a", + "areaType": 7, + "continuous": false, + "count": 1, + "endProduct": "5fca138c2a7b221b2852a5c6", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4200, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c10c8fd86f7743d7d706df3", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5755356824597772cb798962", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b3a5d86f774252167ba22", + "type": "Item" + }, + { + "questId": "60e71c11d54b755a3b53eb65", + "type": "QuestComplete" + } + ] + }, + { + "_id": "600a9955ba91d953182d69f0", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "59d6088586f774275f37482f", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5100, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": true, + "isSpawnedInSession": false, + "templateId": "59e6152586f77473dc057aa1", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59d64fc686f774171b243fe2", + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + } + ] + }, + { + "_id": "66140c4a9688754de10dac07", + "areaType": 11, + "continuous": false, + "count": 1, + "endProduct": "660bc341c38b837877075e4c", + "isCodeProduction": true, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 600, "requirements": [ { "count": 1, @@ -5870,17 +6364,17 @@ ] }, { - "_id": "5de919ec1b25d85cf30ca39a", + "_id": "655b4de41f2b6843ec751fd5", "areaType": 10, "continuous": false, - "count": 2, - "endProduct": "5d6fc78386f77449d825f9dc", + "count": 70, + "endProduct": "5887431f2459777e1612938f", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 5870, + "productionTime": 14400, "requirements": [ { "areaType": 10, @@ -5888,11 +6382,11 @@ "type": "Area" }, { - "count": 2, + "count": 70, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "58d3db5386f77426186285a0", + "templateId": "64b8f7968532cf95ee0a0dbf", "type": "Item" }, { @@ -5900,27 +6394,674 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "617aa4dd8166f034d57de9c5", + "templateId": "5d6fc87386f77449db3db94e", "type": "Item" }, { - "templateId": "590c2d8786f774245b1f03f3", + "templateId": "544fb5454bdc2df8738b456a", "type": "Tool" } ] }, { - "_id": "6002e68bca41c53bee18813b", - "areaType": 2, + "_id": "5dc1f7de6058e020335c9d88", + "areaType": 8, "continuous": false, - "count": 1, - "endProduct": "5e2af29386f7746d4159f077", + "count": 7, + "endProduct": "544fb6cc4bdc2d34748b456e", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 4800, + "productionTime": 4300, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57505f6224597709a92585a9", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347d90245977448f7b7f65", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5448ff904bdc2d6f028b456e", + "type": "Item" + } + ] + }, + { + "_id": "5ede0135f7db6021ee400dfe", + "areaType": 7, + "continuous": false, + "count": 2, + "endProduct": "5755383e24597772cb798966", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 3300, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c13cd2486f774072c757944", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d40412b86f7743cb332ac3a", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b3a5d86f774252167ba22", + "type": "Item" + } + ] + }, + { + "_id": "67092bbfc45f0546bf097a7e", + "areaType": 7, + "continuous": false, + "count": 1, + "endProduct": "6707d0804e617ec94f0e562f", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 600, + "requirements": [ + { + "questId": "67040cae4ac6d9c18c0ade2c", + "type": "QuestComplete" + }, + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5448fee04bdc2dbc018b4567", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "6389c6c7dbfd5e4b95197e68", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e3606886f77417674759a5", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5fca138c2a7b221b2852a5c6", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5ed5166ad380ab312177c100", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c10c8fd86f7743d7d706df3", + "type": "Item" + } + ] + }, + { + "_id": "67093210d514d26f8408612b", + "areaType": 7, + "continuous": false, + "count": 1, + "endProduct": "6707d0bdaab679420007e01a", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 600, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 2, + "type": "Area" + }, + { + "type": "QuestComplete" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b33a686f7742523398398", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "6707d0804e617ec94f0e562f", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c695186f7741e566b64a2", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "544fb3f34bdc2d03748b456a", + "type": "Item" + } + ] + }, + { + "_id": "655b50e7c023e22044165de5", + "areaType": 10, + "continuous": false, + "count": 180, + "endProduct": "5a3c16fe86f77452b62de32a", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5600, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 180, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "64b7bbb74b75259c590fa897", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1c774f86f7746d6620f8db", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c06779c86f77426e00dd782", + "type": "Item" + } + ] + }, + { + "_id": "5e37f15386f774299f112a2e", + "areaType": 10, + "continuous": false, + "count": 5, + "endProduct": "5a0c27731526d80618476ac4", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4670, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af51086f7746d3f3c3402", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5a2a57cfc4a2826c6e06d44a", + "type": "Item" + } + ] + }, + { + "_id": "6666d7ea0b734650a91d0a42", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "66573310a1657263d816a139", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 300, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "66572bb3ac60f009f270d1df", + "type": "Item" + } + ] + }, + { + "_id": "5d78dbfb65aebb016d20b6f3", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "5ac4cd105acfc40016339859", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 5000, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1c819a86f774771b0acd6c", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5648b1504bdc2d9d488b4584", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5ac50c185acfc400163398d4", + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + } + ] + }, + { + "_id": "5f241246232409155b66b809", + "areaType": 8, + "continuous": false, + "count": 20, + "endProduct": "5751496424597720a27126da", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 43200, + "requirements": [ + { + "areaType": 8, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b33a686f7742523398398", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e3577886f774176a362503", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5af0484c86f7740f02001f7f", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5bc9be8fd4351e00334cae6e", + "type": "Item" + }, + { + "templateId": "5d1b385e86f774252167b98a", + "type": "Tool" + }, + { + "templateId": "62a09e73af34e73a266d932a", + "type": "Tool" + } + ] + }, + { + "_id": "655b6c381fe356507267b2f6", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "59e763f286f7742ee57895da", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2500, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c2c9c86f774245b1f03f2", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5f5e45cc5021ce62144be7aa", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5734795124597738002c6176", + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ] + }, + { + "_id": "62a116282c5e0c325b62d5ec", + "areaType": 11, + "continuous": false, + "count": 1, + "endProduct": "62a0a16d0b9d3c46de5b6e97", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 36000, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5c05308086f7746b2101e90b", + "type": "Tool" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c621186f774138d11ea29", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "62a0a124de7ac81993580542", + "type": "Item" + } + ] + }, + { + "_id": "676a9fe717262755cf0ff52f", + "areaType": 21, + "continuous": false, + "count": 4, + "endProduct": "67586bee39b1b82b0d0f9d06", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 16000, + "requirements": [ + { + "count": 3, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d40407c86f774318526545a", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d403f9186f7743cac3f229b", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "67586c61a0c49554ed0bb4a8", + "type": "Item" + }, + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + } + ] + }, + { + "_id": "600a9b10adfcb94fee6d3e06", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "57347cd0245977445a2d6ff1", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 3400, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c31c586f774245e3141b2", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e36c6f86f774176c10a2a7", + "type": "Item" + } + ] + }, + { + "_id": "5eda04a30699b81bb9142aa2", + "areaType": 2, + "continuous": false, + "count": 6, + "endProduct": "544fb25a4bdc2dfb738b4567", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1900, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af47786f7746d404f3aaa", + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + } + ] + }, + { + "_id": "5dceeaf100b3815535149f5a", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5c127c4486f7745625356c13", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 12000, "requirements": [ { "areaType": 2, @@ -5932,15 +7073,55 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "57347c1124597737fb1379e3", + "templateId": "5d1b371186f774253763a656", "type": "Item" }, { - "count": 2, + "count": 4, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", + "templateId": "57347c5b245977448d35f6e1", + "type": "Item" + }, + { + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347c77245977448d35f6e2", + "type": "Item" + }, + { + "templateId": "5d40419286f774318526545f", + "type": "Tool" + } + ] + }, + { + "_id": "67449c79268737ef6908d636", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "674078c4a9c9adf0450d59f9", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 10, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "6740987b89d5e1ddc603f4f0", "type": "Item" }, { @@ -5948,11 +7129,142 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "59e358a886f7741776641ac3", + "templateId": "67449b6c89d5e1ddc603f504", "type": "Item" }, { - "templateId": "56742c284bdc2d98058b456d", + "type": "QuestComplete" + } + ] + }, + { + "_id": "655b54e7065b076eb02c4b47", + "areaType": 10, + "continuous": false, + "count": 150, + "endProduct": "5cc80f53e4a949000e1ea4f8", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 3400, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d6fc87386f77449db3db94e", + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ] + }, + { + "_id": "61b9da93e7304721fe66ab53", + "areaType": 21, + "continuous": false, + "count": 1, + "endProduct": "637b620db7afa97bfc3d7009", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 10400, + "requirements": [ + { + "areaType": 21, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a72c86f77412640e2e83", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5df8a77486f77412672a1e3f", + "type": "Item" + } + ] + }, + { + "_id": "600a9fb7ba91d953182d6a1c", + "areaType": 10, + "continuous": false, + "count": 2, + "endProduct": "5d0379a886f77420407aa271", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 39000, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d6fc87386f77449db3db94e", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d6fc78386f77449d825f9dc", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "60391b0fb847c71012789415", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "60391a8b3364dc22b04d0ce5", + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", "type": "Tool" } ] @@ -6237,1826 +7549,6 @@ } ] }, - { - "_id": "5d78d8a03fe9fc21602e16be", - "areaType": 7, - "continuous": false, - "count": 2, - "endProduct": "590c657e86f77412b013051d", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4500, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60098af40accd37ef2175f27", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0454c86f7746bf20992e8", - "type": "Item" - } - ] - }, - { - "_id": "600aa140090cb63380270290", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5e2af41e86f774755a234b67", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2900, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ab8f04f86f774585f4237d8", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "615c3d27966c85458e4c49cf", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "60098ad7c2240c0fe85c570a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3600, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c678286f77426c9660122", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5751a25924597722c463c472", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60098af40accd37ef2175f27", - "type": "Item" - } - ] - }, - { - "_id": "5ffcafd468c55773943fc71e", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5e2af47786f7746d404f3aaa", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2600, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5aa2ba46e5b5b000137b758d", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "5e1330dca0f0f8773c069c99", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "590c595c86f7747884343ad7", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 120, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60363c0c92ec1c31037959f5", - "type": "Item" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "655b68b4769de97e1d62d117", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5d5e9c74a4b9364855191c40", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4305, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c1124597737fb1379e3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - } - ] - }, - { - "_id": "6666d899eb78191c502350b2", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "665730fa4de4820934746c48", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66571bf06a723f7f005a0619", - "type": "Item" - } - ] - }, - { - "_id": "5ffcacbf24fa2e741e767234", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5672cb724bdc2dc2088b456b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5500, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590a3efd86f77437d351a25b", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5672cb124bdc2d1a0f8b4568", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "5de95c91225b0a76ca0ea0b7", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5d1b2fa286f77425227d1674", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4800, - "requirements": [ - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e35de086f7741778269d84", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - }, - { - "templateId": "5d63d33b86f7746ea9275524", - "type": "Tool" - }, - { - "templateId": "590c2d8786f774245b1f03f3", - "type": "Tool" - } - ] - }, - { - "_id": "66582be04de4820934746cea", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "66582972ac60f009f270d2aa", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5c07df7f0db834001b73588a", - "type": "Tool" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "665828c44de4820934746ce4", - "type": "Item" - } - ] - }, - { - "_id": "619e45ea98398d3b104e8419", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "619cbfeb6b8a1b37a54eebfa", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 25000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2e1186f77425357b6124", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5bbd86f774785762df04", - "type": "Item" - }, - { - "templateId": "5d40425986f7743185265461", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d4042a986f7743185265463", - "type": "Item" - } - ] - }, - { - "_id": "655b33429db22d43ab42b704", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "56dfef82d2720bbd668b4567", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 13000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 180, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "56dff3afd2720bba668b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - }, - { - "questId": "64e7b9bffd30422ed03dad38", - "type": "QuestComplete" - } - ] - }, - { - "_id": "66509e8c9398c9c9e10a31bb", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "66507eabf5ddb0818b085b68", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4800, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c10c8fd86f7743d7d706df3", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a043cf4a99369e2624a5", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "619cc01e0a7c3a1a2731940c", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3606886f77417674759a5", - "type": "Item" - }, - { - "gameVersions": [ - "edge_of_darkness", - "eod_tue_edition" - ], - "type": "GameVersion" - } - ] - }, - { - "_id": "62a1123ac30cfa1d366aeb82", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "57f4c844245977379d5c14d1", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1800, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": true, - "isSpawnedInSession": false, - "templateId": "57d14d2524597714373db789", - "type": "Item" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - } - ] - }, - { - "_id": "655b50e7c023e22044165de5", - "areaType": 10, - "continuous": false, - "count": 180, - "endProduct": "5a3c16fe86f77452b62de32a", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5600, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 180, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b7bbb74b75259c590fa897", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1c774f86f7746d6620f8db", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - } - ] - }, - { - "_id": "5dea63e21ecdbf7668030f24", - "areaType": 10, - "continuous": false, - "count": 5, - "endProduct": "5733279d245977289b77ec24", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d03794386f77420415576f5", - "type": "Item" - }, - { - "templateId": "619cbfccbedcde2f5b3f7bdd", - "type": "Tool" - } - ] - }, - { - "_id": "5e37f15386f774299f112a2e", - "areaType": 10, - "continuous": false, - "count": 5, - "endProduct": "5a0c27731526d80618476ac4", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4670, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af51086f7746d3f3c3402", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5a2a57cfc4a2826c6e06d44a", - "type": "Item" - } - ] - }, - { - "_id": "63baedefe6ebc10fe0201083", - "areaType": 10, - "continuous": false, - "count": 120, - "endProduct": "5ba26835d4351e0035628ff5", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 12400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 120, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ba2678ad4351e44f824b344", - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "templateId": "590a3d9c86f774385926e510", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06782b86f77426df5407d2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "61bf7b6302b3924be92fa8c3", - "type": "Item" - }, - { - "questId": "5c0d4e61d09282029f53920e", - "type": "QuestComplete" - } - ] - }, - { - "_id": "6666d7ea0b734650a91d0a42", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "66573310a1657263d816a139", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66572bb3ac60f009f270d1df", - "type": "Item" - } - ] - }, - { - "_id": "5eda04a30699b81bb9142aa2", - "areaType": 2, - "continuous": false, - "count": 6, - "endProduct": "544fb25a4bdc2dfb738b4567", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1900, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af47786f7746d404f3aaa", - "type": "Item" - }, - { - "areaType": 2, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "5de950a845b5d67bad6e9ef7", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "59e36c6f86f774176c10a2a7", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2100, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347cd0245977445a2d6ff1", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c06779c86f77426e00dd782", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - } - ] - }, - { - "_id": "5dceeaf100b3815535149f5a", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5c127c4486f7745625356c13", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 12000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b371186f774253763a656", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c5b245977448d35f6e1", - "type": "Item" - }, - { - "count": 4, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347c77245977448d35f6e2", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - } - ] - }, - { - "_id": "67449c79268737ef6908d636", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "674078c4a9c9adf0450d59f9", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6740987b89d5e1ddc603f4f0", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67449b6c89d5e1ddc603f504", - "type": "Item" - }, - { - "type": "QuestComplete" - } - ] - }, - { - "_id": "5e0759e73c392e0367260488", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "674d6121c09f69dfb201a888", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5950, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67586c61a0c49554ed0bb4a8", - "type": "Item" - } - ] - }, - { - "_id": "6002eec9cc73cd34ac64188a", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5fca138c2a7b221b2852a5c6", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4200, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c10c8fd86f7743d7d706df3", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5755356824597772cb798962", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - }, - { - "questId": "60e71c11d54b755a3b53eb65", - "type": "QuestComplete" - } - ] - }, - { - "_id": "655b54e7065b076eb02c4b47", - "areaType": 10, - "continuous": false, - "count": 150, - "endProduct": "5cc80f53e4a949000e1ea4f8", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3400, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "600a9955ba91d953182d69f0", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "59d6088586f774275f37482f", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5100, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": true, - "isSpawnedInSession": false, - "templateId": "59e6152586f77473dc057aa1", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59d64fc686f774171b243fe2", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "templateId": "62a0a0bb621468534a797ad5", - "type": "Tool" - } - ] - }, - { - "_id": "66140c4a9688754de10dac07", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "660bc341c38b837877075e4c", - "isCodeProduction": true, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 600, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "660bbc47c38b837877075e47", - "type": "Item" - }, - { - "areaType": 11, - "requiredLevel": 1, - "type": "Area" - }, - { - "type": "QuestComplete" - } - ] - }, - { - "_id": "655b4de41f2b6843ec751fd5", - "areaType": 10, - "continuous": false, - "count": 70, - "endProduct": "5887431f2459777e1612938f", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 14400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 70, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b8f7968532cf95ee0a0dbf", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "61b9da93e7304721fe66ab53", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "637b620db7afa97bfc3d7009", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10400, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, - { - "_id": "5dc1f7de6058e020335c9d88", - "areaType": 8, - "continuous": false, - "count": 7, - "endProduct": "544fb6cc4bdc2d34748b456e", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 4300, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57505f6224597709a92585a9", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "57347d90245977448f7b7f65", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448ff904bdc2d6f028b456e", - "type": "Item" - } - ] - }, - { - "_id": "600a9fb7ba91d953182d6a1c", - "areaType": 10, - "continuous": false, - "count": 2, - "endProduct": "5d0379a886f77420407aa271", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 39000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc87386f77449db3db94e", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d6fc78386f77449d825f9dc", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60391b0fb847c71012789415", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "60391a8b3364dc22b04d0ce5", - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - } - ] - }, - { - "_id": "5ede0135f7db6021ee400dfe", - "areaType": 7, - "continuous": false, - "count": 2, - "endProduct": "5755383e24597772cb798966", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3300, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c13cd2486f774072c757944", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40412b86f7743cb332ac3a", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - } - ] - }, - { - "_id": "67092bbfc45f0546bf097a7e", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "6707d0804e617ec94f0e562f", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 600, - "requirements": [ - { - "questId": "67040cae4ac6d9c18c0ade2c", - "type": "QuestComplete" - }, - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 5, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5448fee04bdc2dbc018b4567", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6389c6c7dbfd5e4b95197e68", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3606886f77417674759a5", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5fca138c2a7b221b2852a5c6", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ed5166ad380ab312177c100", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5c10c8fd86f7743d7d706df3", - "type": "Item" - } - ] - }, - { - "_id": "67093210d514d26f8408612b", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "6707d0bdaab679420007e01a", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 600, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 2, - "type": "Area" - }, - { - "type": "QuestComplete" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b33a686f7742523398398", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "6707d0804e617ec94f0e562f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c695186f7741e566b64a2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "544fb3f34bdc2d03748b456a", - "type": "Item" - } - ] - }, - { - "_id": "5d78dbfb65aebb016d20b6f3", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "5ac4cd105acfc40016339859", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5000, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1c819a86f774771b0acd6c", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5648b1504bdc2d9d488b4584", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5ac50c185acfc400163398d4", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "5f241246232409155b66b809", - "areaType": 8, - "continuous": false, - "count": 20, - "endProduct": "5751496424597720a27126da", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 43200, - "requirements": [ - { - "areaType": 8, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b33a686f7742523398398", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3577886f774176a362503", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5af0484c86f7740f02001f7f", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5bc9be8fd4351e00334cae6e", - "type": "Item" - }, - { - "templateId": "5d1b385e86f774252167b98a", - "type": "Tool" - }, - { - "templateId": "62a09e73af34e73a266d932a", - "type": "Tool" - } - ] - }, - { - "_id": "655b6c381fe356507267b2f6", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "59e763f286f7742ee57895da", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 2500, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c2c9c86f774245b1f03f2", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5f5e45cc5021ce62144be7aa", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5734795124597738002c6176", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - } - ] - }, - { - "_id": "62a116282c5e0c325b62d5ec", - "areaType": 11, - "continuous": false, - "count": 1, - "endProduct": "62a0a16d0b9d3c46de5b6e97", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 36000, - "requirements": [ - { - "areaType": 11, - "requiredLevel": 3, - "type": "Area" - }, - { - "templateId": "5c05308086f7746b2101e90b", - "type": "Tool" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c621186f774138d11ea29", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "62a0a124de7ac81993580542", - "type": "Item" - } - ] - }, - { - "_id": "676a9fe717262755cf0ff52f", - "areaType": 21, - "continuous": false, - "count": 4, - "endProduct": "67586bee39b1b82b0d0f9d06", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 16000, - "requirements": [ - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d40407c86f774318526545a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d403f9186f7743cac3f229b", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "67586c61a0c49554ed0bb4a8", - "type": "Item" - }, - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - } - ] - }, - { - "_id": "600a9b10adfcb94fee6d3e06", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "57347cd0245977445a2d6ff1", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 3400, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c31c586f774245e3141b2", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e36c6f86f774176c10a2a7", - "type": "Item" - } - ] - }, { "_id": "5dd3c5487058311d4b267186", "areaType": 10, @@ -8089,20 +7581,6 @@ } ] }, - { - "_id": "5d5c205bd582a50d042a3c0e", - "areaType": 20, - "continuous": true, - "count": 1, - "endProduct": "59faff1d86f7746c51718c9c", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 3, - "productionTime": 145000, - "requirements": [] - }, { "_id": "655b4bbe4343a16d2e047668", "areaType": 10, @@ -8131,210 +7609,6 @@ } ] }, - { - "_id": "5eeca7724a8a9b668f0d89cd", - "areaType": 10, - "continuous": false, - "count": 180, - "endProduct": "5c925fa22e221601da359b7b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 7250, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 150, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "64b7bbb74b75259c590fa897", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "type": "Tool" - } - ] - }, - { - "_id": "5ffcad24f3fdc212a91d5536", - "areaType": 10, - "continuous": false, - "count": 50, - "endProduct": "64b8ee384b75259c590fa89b", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5250, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b36a186f7742523398433", - "type": "Item" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "590c5a7286f7747884343aea", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - } - ] - }, - { - "_id": "655b5fd2975a7f3c734661a8", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "61bcc89aef0f505f0c6cd0fc", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 6000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 2, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4a786f7746d3f3c3400", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "templateId": "5d40419286f774318526545f", - "type": "Tool" - }, - { - "questId": "5b478d0f86f7744d190d91b5", - "type": "QuestComplete" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656fb21fa0dce000a2020f7c", - "type": "Item" - } - ] - }, - { - "_id": "655b650ab71eeb7c4168c627", - "areaType": 2, - "continuous": false, - "count": 1, - "endProduct": "5ab8e79e86f7742d8b372e78", - "isCodeProduction": false, - "isEncoded": false, - "locked": true, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 10000, - "requirements": [ - { - "areaType": 2, - "requiredLevel": 3, - "type": "Area" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "59e3556c86f7741776641ac2", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af4d286f7746d4159f07a", - "type": "Item" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e2af41e86f774755a234b67", - "type": "Item" - }, - { - "templateId": "61bf83814088ec1a363d7097", - "type": "Tool" - }, - { - "templateId": "591094e086f7747caa7bb2ef", - "type": "Tool" - }, - { - "count": 2, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "656f611f94b480b8a500c0db", - "type": "Item" - } - ] - }, { "_id": "5d8a1568df9fc649e81b8b1b", "areaType": 8, @@ -8371,42 +7645,6 @@ } ] }, - { - "_id": "600ab99ce4022c380a726090", - "areaType": 7, - "continuous": false, - "count": 1, - "endProduct": "5e8488fa988a8701445df1e4", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 1800, - "requirements": [ - { - "areaType": 7, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5e8488fa988a8701445df1e4", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b3a5d86f774252167ba22", - "type": "Item" - } - ] - }, { "_id": "629e19eddb6e1a02066676f1", "areaType": 10, @@ -8571,46 +7809,6 @@ } ] }, - { - "_id": "6666d829a8298779fc40e537", - "areaType": 10, - "continuous": false, - "count": 1, - "endProduct": "665732f4464c4b4ba4670fa9", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 300, - "requirements": [ - { - "areaType": 10, - "requiredLevel": 2, - "type": "Area" - }, - { - "templateId": "5d1b317c86f7742523398392", - "type": "Tool" - }, - { - "templateId": "5d4042a986f7743185265463", - "type": "Tool" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "type": "Tool" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "66572b88ac60f009f270d1dc", - "type": "Item" - } - ] - }, { "_id": "5dc1f4d9e078d303d91b44c7", "areaType": 8, @@ -8643,42 +7841,6 @@ } ] }, - { - "_id": "61b9da10695bdc188002db3a", - "areaType": 21, - "continuous": false, - "count": 1, - "endProduct": "5c0e531286f7747fa54205c2", - "isCodeProduction": false, - "isEncoded": false, - "locked": false, - "needFuelForAllProductionTime": false, - "productionLimitCount": 0, - "productionTime": 5400, - "requirements": [ - { - "areaType": 21, - "requiredLevel": 1, - "type": "Area" - }, - { - "count": 3, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a6a186f77412640e2e80", - "type": "Item" - }, - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5df8a77486f77412672a1e3f", - "type": "Item" - } - ] - }, { "_id": "655b598db71eeb7c4168c626", "areaType": 10, @@ -8760,17 +7922,177 @@ ] }, { - "_id": "600abc08e4022c380a7260a8", - "areaType": 7, + "_id": "6002e55595c402039a2747f4", + "areaType": 11, "continuous": false, "count": 1, - "endProduct": "5c0530ee86f774697952d952", + "endProduct": "5c1e495a86f7743109743dfb", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 120000, + "productionTime": 476000, + "requirements": [ + { + "areaType": 11, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 10, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c94bbff86f7747ee735c08f", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c1d0d6d86f7744bb2683e1f", + "type": "Item" + }, + { + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c12613b86f7743bbe2c3f76", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "61bf7c024770ee6f9c6b8b53", + "type": "Item" + }, + { + "templateId": "5c052fb986f7746b2101e909", + "type": "Tool" + } + ] + }, + { + "_id": "5d78d8a03fe9fc21602e16be", + "areaType": 7, + "continuous": false, + "count": 2, + "endProduct": "590c657e86f77412b013051d", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4500, + "requirements": [ + { + "areaType": 7, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 4, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b3a5d86f774252167ba22", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "60098af40accd37ef2175f27", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5af0454c86f7746bf20992e8", + "type": "Item" + } + ] + }, + { + "_id": "5d558968f934db006d2d5b32", + "areaType": 10, + "continuous": false, + "count": 140, + "endProduct": "57371aab2459775a77142f22", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 6200, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5a7286f7747884343aea", + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + } + ] + }, + { + "_id": "600aa140090cb63380270290", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5e2af41e86f774755a234b67", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2900, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5ab8f04f86f774585f4237d8", + "type": "Item" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ] + }, + { + "_id": "615c3d27966c85458e4c49cf", + "areaType": 7, + "continuous": false, + "count": 1, + "endProduct": "60098ad7c2240c0fe85c570a", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 3600, "requirements": [ { "areaType": 7, @@ -8782,35 +8104,171 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5af0534a86f7743b6f354284", + "templateId": "590c678286f77426c9660122", "type": "Item" }, { - "count": 3, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "590a391c86f774385a33c404", + "templateId": "5751a25924597722c463c472", "type": "Item" }, { - "count": 3, + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5c052fb986f7746b2101e909", + "templateId": "60098af40accd37ef2175f27", "type": "Item" + } + ] + }, + { + "_id": "5ffcafd468c55773943fc71e", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5e2af47786f7746d404f3aaa", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 2600, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" }, { - "count": 3, + "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5af0561e86f7745f5f3ad6ac", + "templateId": "5aa2ba46e5b5b000137b758d", "type": "Item" }, { - "templateId": "590c2e1186f77425357b6124", + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + } + ] + }, + { + "_id": "5e1330dca0f0f8773c069c99", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "590c595c86f7747884343ad7", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 120, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "60363c0c92ec1c31037959f5", + "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ] + }, + { + "_id": "6558d7894626375d6735670c", + "areaType": 10, + "continuous": false, + "count": 50, + "endProduct": "5fc275cf85fd526b824a571a", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 15000, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 50, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5fc382c1016cce60e8341b20", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d6fc87386f77449db3db94e", + "type": "Item" + }, + { + "templateId": "544fb5454bdc2df8738b456a", + "type": "Tool" + } + ] + }, + { + "_id": "655b68b4769de97e1d62d117", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5d5e9c74a4b9364855191c40", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4305, + "requirements": [ + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347c1124597737fb1379e3", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5e2af4d286f7746d4159f07a", + "type": "Item" + }, + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "templateId": "61bf83814088ec1a363d7097", + "type": "Tool" + }, + { + "templateId": "62a0a0bb621468534a797ad5", "type": "Tool" }, { @@ -8818,55 +8276,167 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "6389c7750ef44505c87f5996", + "templateId": "5e2af4a786f7746d3f3c3400", + "type": "Item" + } + ] + }, + { + "_id": "5d93ba4486f77454bd61d2a9", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5d1b2f3f86f774252167a52c", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 9400, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c595c86f7747884343ad7", "type": "Item" }, { - "templateId": "6389c8fb46b54c634724d847", + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b385e86f774252167b98a", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "61bf7b6302b3924be92fa8c3", + "type": "Item" + }, + { + "templateId": "5d40425986f7743185265461", + "type": "Tool" + }, + { + "templateId": "590c2e1186f77425357b6124", "type": "Tool" } ] }, { - "_id": "5fe338e364adb27bb90594be", - "areaType": 21, + "_id": "655b4f57769de97e1d62d116", + "areaType": 10, + "continuous": false, + "count": 50, + "endProduct": "5e023d34e8a400319a28ed44", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 9500, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 3, + "type": "Area" + }, + { + "count": 50, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e77a2386f7742ee578960a", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "60391a8b3364dc22b04d0ce5", + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d6fc78386f77449d825f9dc", + "type": "Item" + }, + { + "questId": "5bc4856986f77454c317bea7", + "type": "QuestComplete" + } + ] + }, + { + "_id": "6666d899eb78191c502350b2", + "areaType": 10, "continuous": false, "count": 1, - "endProduct": "5ed51652f6c34d2cc26336a1", + "endProduct": "665730fa4de4820934746c48", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 4600, + "productionTime": 300, "requirements": [ { - "areaType": 21, - "requiredLevel": 1, + "areaType": 10, + "requiredLevel": 2, "type": "Area" }, { - "count": 3, + "templateId": "5d1b317c86f7742523398392", + "type": "Tool" + }, + { + "templateId": "5d4042a986f7743185265463", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5df8a72c86f77412640e2e83", + "templateId": "66571bf06a723f7f005a0619", "type": "Item" } ] }, { - "_id": "677d4fdb42cdfce74006f961", + "_id": "5ffcacbf24fa2e741e767234", "areaType": 10, "continuous": false, "count": 1, - "endProduct": "5d1b304286f774253763a528", + "endProduct": "5672cb724bdc2dc2088b456b", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 1887, + "productionTime": 5500, "requirements": [ { "areaType": 10, @@ -8878,7 +8448,15 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "5d1b309586f77425227d1676", + "templateId": "590a3efd86f77437d351a25b", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5c06779c86f77426e00dd782", "type": "Item" }, { @@ -8894,7 +8472,7 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "6389c70ca33d8c4cdf4932c6", + "templateId": "5672cb124bdc2d1a0f8b4568", "type": "Item" }, { @@ -8904,42 +8482,83 @@ ] }, { - "_id": "67af7686370a7e4f54000001", - "areaType": 10, + "_id": "61b9d9deef9a1b5d6a798986", + "areaType": 21, "continuous": false, "count": 1, - "endProduct": "665829424de4820934746ce6", + "endProduct": "5d403f9186f7743cac3f229b", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 300, + "productionTime": 5200, "requirements": [ { - "templateId": "5c07df7f0db834001b73588a", - "type": "Tool" + "areaType": 21, + "requiredLevel": 1, + "type": "Area" }, { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" - }, - { - "count": 1, + "count": 2, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "66582889efd94e2d665b14a2", + "templateId": "5df8a77486f77412672a1e3f", "type": "Item" } ] }, { - "_id": "67af7686370a7e4f54000002", + "_id": "5de95c91225b0a76ca0ea0b7", "areaType": 10, "continuous": false, "count": 1, - "endProduct": "6658291eefd94e2d665b14a4", + "endProduct": "5d1b2fa286f77425227d1674", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4800, + "requirements": [ + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e35de086f7741778269d84", + "type": "Item" + }, + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5734795124597738002c6176", + "type": "Item" + }, + { + "templateId": "5d63d33b86f7746ea9275524", + "type": "Tool" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" + } + ] + }, + { + "_id": "66582be04de4820934746cea", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "66582972ac60f009f270d2aa", "isCodeProduction": false, "isEncoded": false, "locked": false, @@ -8947,6 +8566,11 @@ "productionLimitCount": 0, "productionTime": 300, "requirements": [ + { + "areaType": 10, + "requiredLevel": 2, + "type": "Area" + }, { "templateId": "5c07df7f0db834001b73588a", "type": "Tool" @@ -8960,137 +8584,355 @@ "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "6658285190486915542256c4", + "templateId": "665828c44de4820934746ce4", "type": "Item" } ] }, { - "_id": "67af7686370a7e4f54000003", + "_id": "660c2dbaa2a92e70cc074863", + "areaType": 11, + "continuous": false, + "count": 1, + "endProduct": "660bbc98c38b837877075e4a", + "isCodeProduction": false, + "isEncoded": false, + "locked": true, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 900, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "660bbc47c38b837877075e47", + "type": "Item" + }, + { + "areaType": 11, + "requiredLevel": 1, + "type": "Area" + }, + { + "type": "QuestComplete" + } + ] + }, + { + "_id": "619e45ea98398d3b104e8419", "areaType": 10, "continuous": false, "count": 1, - "endProduct": "665829a6efd94e2d665b14a8", + "endProduct": "619cbfeb6b8a1b37a54eebfa", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 300, + "productionTime": 25000, "requirements": [ { - "templateId": "5c07df7f0db834001b73588a", - "type": "Tool" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" + "areaType": 10, + "requiredLevel": 2, + "type": "Area" }, { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "665828f490486915542256c6", + "templateId": "590c2e1186f77425357b6124", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "590c5bbd86f774785762df04", + "type": "Item" + }, + { + "templateId": "5d40425986f7743185265461", + "type": "Tool" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "type": "Tool" + }, + { + "count": 5, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "61bf7b6302b3924be92fa8c3", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d4042a986f7743185265463", "type": "Item" } ] }, { - "_id": "67af7686370a7e4f54000004", + "_id": "655b33429db22d43ab42b704", "areaType": 10, "continuous": false, - "count": 1, - "endProduct": "665886abdaadd1069736c539", + "count": 120, + "endProduct": "56dfef82d2720bbd668b4567", "isCodeProduction": false, "isEncoded": false, - "locked": false, + "locked": true, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 300, + "productionTime": 13000, "requirements": [ { - "templateId": "5c07df7f0db834001b73588a", - "type": "Tool" + "areaType": 10, + "requiredLevel": 3, + "type": "Area" }, { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" + "count": 180, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "56dff3afd2720bba668b4567", + "type": "Item" }, { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "66588bb047fbd536a674240e", + "templateId": "5d6fc78386f77449d825f9dc", "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "type": "Tool" + }, + { + "questId": "64e7b9bffd30422ed03dad38", + "type": "QuestComplete" } ] }, { - "_id": "67af7686370a7e4f54000005", + "_id": "5de919ec1b25d85cf30ca39a", "areaType": 10, "continuous": false, - "count": 1, - "endProduct": "6658876e146af22739040fad", + "count": 2, + "endProduct": "5d6fc78386f77449d825f9dc", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 300, + "productionTime": 5870, "requirements": [ { - "templateId": "5c07df7f0db834001b73588a", - "type": "Tool" + "areaType": 10, + "requiredLevel": 2, + "type": "Area" }, { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "58d3db5386f77426186285a0", + "type": "Item" }, { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "66588b514de4820934746dc6", + "templateId": "617aa4dd8166f034d57de9c5", "type": "Item" + }, + { + "templateId": "590c2d8786f774245b1f03f3", + "type": "Tool" } ] }, { - "_id": "67af7686370a7e4f54000006", - "areaType": 10, + "_id": "66509e8c9398c9c9e10a31bb", + "areaType": 7, "continuous": false, "count": 1, - "endProduct": "6658892e6e007c6f33662002", + "endProduct": "66507eabf5ddb0818b085b68", "isCodeProduction": false, "isEncoded": false, "locked": false, "needFuelForAllProductionTime": false, "productionLimitCount": 0, - "productionTime": 300, + "productionTime": 4800, "requirements": [ { - "templateId": "5c07df7f0db834001b73588a", - "type": "Tool" - }, - { - "templateId": "544fb5454bdc2df8738b456a", - "type": "Tool" + "areaType": 7, + "requiredLevel": 2, + "type": "Area" }, { "count": 1, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, - "templateId": "66588ba291f6e93c4c06efef", + "templateId": "5c10c8fd86f7743d7d706df3", "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "62a0a043cf4a99369e2624a5", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "619cc01e0a7c3a1a2731940c", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e3606886f77417674759a5", + "type": "Item" + }, + { + "gameVersions": [ + "edge_of_darkness", + "eod_tue_edition" + ], + "type": "GameVersion" + } + ] + }, + { + "_id": "62a1123ac30cfa1d366aeb82", + "areaType": 10, + "continuous": false, + "count": 1, + "endProduct": "57f4c844245977379d5c14d1", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 1800, + "requirements": [ + { + "areaType": 10, + "requiredLevel": 1, + "type": "Area" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": true, + "isSpawnedInSession": false, + "templateId": "57d14d2524597714373db789", + "type": "Item" + }, + { + "templateId": "62a0a0bb621468534a797ad5", + "type": "Tool" + } + ] + }, + { + "_id": "6002e68bca41c53bee18813b", + "areaType": 2, + "continuous": false, + "count": 1, + "endProduct": "5e2af29386f7746d4159f077", + "isCodeProduction": false, + "isEncoded": false, + "locked": false, + "needFuelForAllProductionTime": false, + "productionLimitCount": 0, + "productionTime": 4800, + "requirements": [ + { + "areaType": 2, + "requiredLevel": 2, + "type": "Area" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "57347c1124597737fb1379e3", + "type": "Item" + }, + { + "count": 2, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5734795124597738002c6176", + "type": "Item" + }, + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "59e358a886f7741776641ac3", + "type": "Item" + }, + { + "templateId": "56742c284bdc2d98058b456d", + "type": "Tool" } ] } ], "scavRecipes": [ + { + "_id": "62710974e71632321e5afd5f", + "endProducts": { + "Common": { + "max": 2, + "min": 1 + }, + "Rare": { + "max": 1, + "min": 0 + }, + "Superrare": { + "max": 0, + "min": 0 + } + }, + "productionTime": 2500, + "requirements": [ + { + "count": 2500, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5449016a4bdc2d6f028b456f", + "type": "Item" + } + ] + }, { "_id": "62710a0e436dcc0b9c55f4ec", "endProducts": { @@ -9120,25 +8962,53 @@ ] }, { - "_id": "62710974e71632321e5afd5f", + "_id": "6271093e621b0a76055cd61e", "endProducts": { "Common": { - "max": 2, - "min": 1 + "max": 0, + "min": 0 }, "Rare": { "max": 1, - "min": 0 + "min": 1 + }, + "Superrare": { + "max": 5, + "min": 3 + } + }, + "productionTime": 16800, + "requirements": [ + { + "count": 1, + "isEncoded": false, + "isFunctional": false, + "isSpawnedInSession": false, + "templateId": "5d1b376e86f774252519444e", + "type": "Item" + } + ] + }, + { + "_id": "62710a8c403346379e3de9be", + "endProducts": { + "Common": { + "max": 1, + "min": 1 + }, + "Rare": { + "max": 3, + "min": 1 }, "Superrare": { "max": 0, "min": 0 } }, - "productionTime": 2500, + "productionTime": 7700, "requirements": [ { - "count": 2500, + "count": 15000, "isEncoded": false, "isFunctional": false, "isSpawnedInSession": false, @@ -9174,62 +9044,6 @@ "type": "Item" } ] - }, - { - "_id": "62710a8c403346379e3de9be", - "endProducts": { - "Common": { - "max": 1, - "min": 1 - }, - "Rare": { - "max": 3, - "min": 1 - }, - "Superrare": { - "max": 0, - "min": 0 - } - }, - "productionTime": 7700, - "requirements": [ - { - "count": 15000, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5449016a4bdc2d6f028b456f", - "type": "Item" - } - ] - }, - { - "_id": "6271093e621b0a76055cd61e", - "endProducts": { - "Common": { - "max": 0, - "min": 0 - }, - "Rare": { - "max": 1, - "min": 1 - }, - "Superrare": { - "max": 5, - "min": 3 - } - }, - "productionTime": 16800, - "requirements": [ - { - "count": 1, - "isEncoded": false, - "isFunctional": false, - "isSpawnedInSession": false, - "templateId": "5d1b376e86f774252519444e", - "type": "Item" - } - ] } ] } diff --git a/Libraries/SptAssets/Assets/database/locales/global/ch.json b/Libraries/SptAssets/Assets/database/locales/global/ch.json index 7e6791de..0acc0f48 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/ch.json +++ b/Libraries/SptAssets/Assets/database/locales/global/ch.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "将容器藏匿在工厂3号门旁边的二层休息室内", "5968929e86f7740d121082d3": "在位于海关关口的Tarcone公司主管办公室内找到一个保险盒", "5977784486f774285402cf52": "以幸存状态撤离工厂", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "确实让人印象深刻!这简直是核密码箱!想把这玩意翻出来的人全被他做掉真是一点也不奇怪。", "5968981986f7740d1648df42": "在海关宿舍203房间取得高价值物品", "5968988286f7740d14064724": "上交高价值物品", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "设法进入宿舍214房间", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "我打心底里地感谢你,对你的感激之情简直无以言表。在相同的处境下,大多数人只会想自己藏着,但是你却无私地分享给有需要的人。再次谢谢你!", "5969f98286f774576d4c9542": "在战局中找到吗啡注射器", "5969f99286f77456630ea442": "上交注射器", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "在战局中找到火花塞", "596b470c86f77457ca18618a": "上交汽车蓄电池", "596b472686f77457c7006f8a": "上交火花塞", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "你可是说那里面什么都没有的!当然,那玩意儿里面确实可能什么都没有。我得检查一下。不管怎么说,我来把账结了吧。", "5979ee2986f7743ec214c7a4": "在战局中找到加密U盘", "5979ee4586f7743ec214c7a5": "上交加密U盘", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "在海关使用MS2000指示器标记第三辆油罐车", "59c128f386f774189b3c84bb": "在海关使用MS2000指示器标记第四辆油罐车", "5c92184386f7746afa2e7840": "以幸存状态撤离该区域", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "干得好!来,奖励拿上。接下来,我会把这个U盘交给我的专家来解密。", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "把狙击步枪藏匿在船上", "5a27d85286f77448d82084e7": "把多功能工具藏匿在船上", "5a3ba11786f7742c9d4f5d29": "在海岸线找到防波堤旁边的船只", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "以幸存状态撤离该区域", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "干的漂亮,从现在开始你就是我罩的了。", "5a56489d86f7740cfe70eba2": "上交美元", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "你拿到了?放在角落里吧,谢谢你。真漂亮啊,是吧?总之,我这会儿有点忙,没空一直跟你聊。", "5accd5e386f77463027e9397": "按照要求改装MP-133", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "你看,这把武器只要在合适的人手里,就能推翻统治,发动革命。", "5accd9b686f774112d7173d1": "按照要求改装AKS-74U", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "很适合拿来CQB和干一些偷鸡摸狗的事儿......", "5accde3686f7740cea1b7ec2": "按照要求改装MP5", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "谢谢,我会把它交给Dim..... 神枪手先生", "5acce08b86f7745f8521fa64": "按照要求改装DVL-10", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "哈哈,你可没办法躲过这样的玩意儿。我喜欢7.62,很棒的口径。谢谢你。明天应该还会有下一单。", "5acce11786f77411ed6fa6eb": "按照要求改装R11 RSASS", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "把武器交给我,让我们看看你的作品。民主的武器……谢谢你。", "5accdfdb86f77412265cbfc9": "按照要求改装M4A1", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "在工厂使用一套工具修复第一块控制板", "5ac7a51a86f774738a4ffc96": "在工厂使用一套工具修复第二块控制板", "5ac7a5d586f774383111ee63": "以幸存状态撤离该区域", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "上交T形插座", "5ac5061386f77417e429ce7a": "在战局中找到印制电路板", "5ac5062586f774587c327395": "上交印制电路板", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "在海关找到罚没品仓库", "5ac6248586f77416781dd3a3": "取得装有显卡的包裹", "5ac624b286f77416781dd3ac": "上交显卡包裹", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "上交显示卡", "5ac5083d86f7740be2744eed": "在战局中找到CPU风扇", "5ac5084d86f7740bde1b0031": "上交CPU风扇", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "找到第一个信号源", "5ac5e13586f7746074388f93": "找到第二个信号源", "5ac5e18c86f7743ebd6c9575": "以幸存状态撤离该区域", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "上交可充电电池", "5ac5e98886f77479bc6ca201": "上交印制电路板", "5ac5ea0586f774609f36280c": "上交损坏的GPhone", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "在战局中找到电脑CPU", "5cb6f88d86f7747d215f09c1": "在战局中找到可充电电池", "5cb6f8de86f7740e9d452685": "在战局中找到印制电路板", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "圆周率的小数点后第七位是什么数?IIO?好的,我一会儿会再联系你。", "5ac5eb3286f7746e7a509a09": "达到指定的专注技能等级", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "上交无彩香烟", "5ac5ef9886f7746e7a509a2d": "在战局中找到云尔斯顿香烟", "5ac5eff886f7740f43322559": "上交云尔斯顿香烟", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "找到第二个工厂撤离点", "5ac61adf86f774741c1bf096": "找到第三个工厂撤离点", "5ac61b1486f7743a8f30fc84": "以幸存状态撤离该区域", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "找到第四个工厂撤离点", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "我不喜欢装模做样,虽然我们所有人都这样做。有时是为了生存,有的时候只是因为我们害怕。你知道,我根本不是个健谈的人,特别是在面对陌生人的时候,不过你看起来还像是个好人。我认为,如果你能赢得我的信任,那你在谁那里都能聊得开。毕竟,要生存下来,能依靠的就只有人际关系了。说到 Pavel Yegorovich,如果你能赢得他的信任,我也许能为你提供一些火药。", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich是少数几个留下来的人。我想知道这是因为他是军人,还是因为他来不及离开。", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Prapor信任度达到3级", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "好枪,配得不错。没有新的订单了,明天再来看看吧。", "5ae34b8b86f7741e5b1e5d48": "按照要求改装雷明顿 Model 870", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "真是一把好使的武器,做得很好,谢谢你。我会通知客户的。暂时没有新单子了,但是你明天可以来看看。", "5ae3550b86f7741cf44fc799": "按照要求改装AKM", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "那把Zenit AK你准备好了?很好,放在那个箱子上吧,谢谢你。如果你还想接单子,明天就再来一趟。", "5ae3570b86f7746efa6b4494": "按照要求改装AKS-74N", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "看起来我已经找到了培养AI的正确方法!啊,AK,可以的。把它放在角落里吧,我等会儿再看看。", "5ae445f386f7744e87761331": "按照要求改装AK-105", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "处理好那把枪了?很好,给我吧。拿上这把钥匙吧,它在立交桥会很有用处的哟。它能打开KIBA,也就是Ultra枪店的钥匙。那里有很多高级的武器配件,对你以后改枪很有用。", "5ae4479686f7744f6c79b7b3": "按照要求改装AS VAL", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "欢迎加入,老兄。准备好做生意了吗?", "5ae44c6886f7744f1a7eb2b8": "Ragman信任度达到2级", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Ragman信任度达到2级", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "你就像个专业狙击手一样。我的伙计们说,立交桥现在是Scav尸体的海洋,Ultra终于安静下来了。这是给你的报酬。", "5ae44ecd86f77414a13c970e": "在立交桥击杀Scav", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "检查DINO CLOTHES商店", "5ae4511d86f7740ffc31ccb5": "检查TOP BRAND商店", "5ae4514986f7740e915d218c": "以幸存状态撤离该区域", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "标记第二辆油罐车", "5ae452fa86f774336a39758e": "标记第三辆油罐车", "5ae4531986f774177033c3e6": "以幸存状态撤离该区域", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "正如人们所说,美可以拯救世界。谢谢你,老兄,你可是真的帮了我一把。这些帽子不要一天就能卖光,相信我。拿着,就把这当成奖励吧。", "5ae4543686f7742dc043c903": "上交苏联毛帽", "5ae454a086f7742be909a81a": "上交牛仔帽", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "在战局中找到苏联毛帽", "5fd89799c54dc00f463272d3": "在战局中找到牛仔帽", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "上交OLI货物清单", "5ae9b3b186f7745bbc722762": "在立交桥取得IDEA货物清单", "5ae9b3c986f77432c81e2ce6": "上交IDEA货物清单", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "即使办公室上了锁,它们也很可能还是完好无损的。", "5ae9b5bd86f774307c29df37": "在立交桥取得OLI货运路线文件", "5ae9b63286f774229110402d": "上交文件", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "上交滑雪头套", "5ae455fb86f7744dd8242380": "在战局中找到Pilgrim旅行包", "5ae4562086f774498b05e0dc": "上交Pilgrim旅行包", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "上交耐久度介于0-50%的BNTI Gzhel-K护甲", "5ae9b91386f77415a869b3f3": "取得耐久度介于50-100%的BNTI Gzhel-K护甲", "5ae9b93b86f7746e0026221a": "上交耐久度介于50-100%的BNTI Gzhel-K护甲", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "上交Wartech胸挂(TV-109,TV-106)", "5af079e486f77434693ad7f8": "在战局中找到BlackRock胸挂", "5af07a0286f7747dba10d8ac": "上交BlackRock胸挂", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "上交服装设计手册(一)", "5ae9c0e186f7746419683c5e": "在立交桥取得服装设计手册(二)", "5ae9c10686f774703201f146": "上交服装设计手册(一)", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "哇哦,嘿,冷静点,我可是你这边的,兄弟!抱歉,我只是在到处转转。我看你已经精通了魅力,挺好的。让我们谈点生意吧。", "5ae9c29386f77427153c7fb0": "达到指定的魅力技能等级", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "看来一切顺利,谢了。", "5ae9c38e86f7743515398707": "达到Therapist 3级信任度", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "把提花头巾藏匿在指定地点", "5ae9e2a286f7740de4152a0a": "把雷硼太阳镜藏匿在指定地点", "5ae9e2e386f7740de4152a0d": "把圆框太阳镜藏匿在指定地点", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "你曾经在Ultra商场里把Scav吓尿过,还记得么,老兄?现在,他们说情况越来越糟糕了。据说那里到处都是那帮人渣。给你安排个任务:去检查一下立交桥的状况,至少去转一圈。找一条安全的路径。我需要事情一切顺利,明白吗?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "哇哦,你真的像个幽灵或隐形人什么的。等一下,我拿个地图出来。所以,最安全的路径是这个,还有这个,对吧?很好,我会通知伙计们的。谢谢你,朋友,你可帮了我个大忙。", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "以幸存状态撤离立交桥", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "这才是真正的高加索勇士!", "5ae9e55886f77445315f662a": "取得Goshan收银机钥匙", "5ae9e58886f77423572433f5": "上交Goshan收银机钥匙", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "做的好,把它放在箱子上吧。", "5b47796686f774374f4a8bb1": "按照要求改装AK-102", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "拿给我吧,我得尽快把它交付给客户。希望你没有把这把MPX的用途告诉别人。总之,祝他好运。", "5b477b3b86f77401da02e6c4": "按照要求改装SIG MPX", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "多谢。我现在有点忙,回头见。", "5b477f1486f7743009493232": "按照要求改装AKMN", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "很好。顺便说下关于Sni......Dima,不要跟别人提起一个字,但我想你应该已经明白了。", "5b47824386f7744d190d8dd1": "按照要求改装M1A", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "我真想把它放在玻璃橱窗里展览。说真的,这是个杰作。", "5b4783ba86f7744d1c353185": "按照要求改装M4A1", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "太好了,快给我吧。Mechanic刚催过,我今天就送给他。谢谢你,真的帮了个大忙。", "5b47884886f7744d1c35327d": "在战局中找到燃油添加剂", "5b47886986f7744d1a393e65": "上交燃油添加剂", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "上交猫雕像", "5b478a6c86f7744d190d8f4d": "在战局中找到劳力土潜水金腕表", "5b478a8486f7744d1c35328b": "上交劳力土潜水金腕表", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "在战局中找到金蛋", "62a70058ec21e50cad3b6709": "上交金蛋", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "将Peltor ComTac 2藏到指定地点", "5b478c7386f7744d1a393fb1": "将6B47头盔藏到指定地点", "5b478cb586f7744d1a393fb5": "将BNTI Gzhel-K护甲藏到指定地点", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "在立交桥找到第二辆微型客车,并使用MS2000指示器标记", "5b478dca86f7744d190d91c2": "在立交桥找到第三辆微型客车,并使用MS2000指示器标记", "5b478de086f7744d1c3533a1": "以幸存状态撤离该区域", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "取得第三个化学品容器", "5b4c832686f77419603eb8f0": "上交第二个化学品容器", "5b4c836486f77417063a09dc": "上交第三个化学品容器", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "很好,够准时!希望我的人能康复,看上去这些血会给他们带来很多的基因污染,但是,也没有别的选择了,真见鬼。", "5b47905886f7746807461fe2": "上交防毒面具", "5b4790a886f774563c7a489f": "上交医用输血工具", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "在战局中找到防毒面具", "5ec1388d83b69d213d3c2ee0": "在战局中找到医用输血工具", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "在森林安装无线摄像头以监视伐木场码头", "5b47936686f77427fd044025": "在海关安装无线摄像头以监视通往港口的路", "5b47938086f7747ccc057c22": "在立交桥安装无线摄像头以监视Kiba武器商店大门", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "上交第三个控制器", "5b4c7aec86f77459732b4b08": "上交第二个单轴光纤陀螺仪", "5b4c8e6586f77474396a5400": "在海岸线找到第二个单轴光纤陀螺仪", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtain the first motor controller on Woods", "66d07de6c7ef9040fff0b789": "Hand over the first controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "在立交桥的Generic商店将金项链藏到BTR-82A装甲车旁边的床垫下", "5b4796c086f7745877352c2c": "在海关将金项链藏到宿舍楼三楼的微波炉里", "5b47971086f774587877ad34": "在森林将将金项链藏到伐木场宿舍区的中间小屋内", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "于22:00-10:00期间在立交桥击杀PMC", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "所以,你觉得是不是已经有Zaitsev内味了?神枪手先生对首次测验的结果很满意,他已经准备好了下一个任务。", "5bc850d186f7747213700892": "使用栓动式步枪在40米开外通过机械瞄具击杀Scav", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "不错,针不戳。就连我都没法射得这么准了,我已经老了。神枪手先生给你准备了一个新的任务。", "5bd983d886f7747ba73fc246": "使用栓动式步枪在40米开外击中腿部", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "使用栓动式步枪在40米开外击中头部", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "就像我之前承诺的那样,帽子是你的了。", "5bc47e3e86f7741e6b2f3332": "使用栓动式步枪在近距离(25米以内)击杀PMC", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "现在让我们开始工作吧。", "5bc4813886f774226045cb9a": "使用栓动式步枪在80米开外击杀PMC", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "使用栓动式步枪在80米开外击杀PMC", "657b0567ec71635f16471dd2": "使用栓动式步枪在80米开外击杀PMC", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "希望死的都是坏人。", "5bc84f7a86f774294c2f6862": "在海关的21:00-05:00期间使用栓动式步枪击杀Scav", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "在狙击手的对决中没有什么鬼把戏这一说。干得好。", "5bc483ba86f77415034ba8d0": "使用栓动式步枪击杀狙击Scav", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "敌人们肯定倍感无助,毕竟他们都不知道打他们的人在哪里。你做得很好,神枪手。", "5bc485b586f774726473a858": "使用装有消音器的栓动式步枪在45米开外击杀PMC", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "这可不是什么容易事儿。再来一次吧。", "5bc4893c86f774626f5ebf3e successMessageText": "看起来有时候光是脑袋聪明还不足以让表现也机智。嗯,7.62的老家伙可以帮到你。", "5bc48aed86f77452c947ce67": "使用栓动式步枪一命爆头击杀PMC人员", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "在完成任务之前,你不能阵亡或是离开战局(状态:阵亡、匆匆逃离、失踪)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "将劳力土潜水金腕表藏匿在宿舍三楼楼梯对面的垃圾堆里", "5c12320586f77437e44bcb15": "将假U盘藏匿在宿舍三楼楼梯对面的垃圾堆里", "5c1233ac86f77406fa13baea": "完成任务前,你不能在海关击杀任何Scav", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "在海关取得假U盘", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "你干的很好,我对你刮目相看啊!如果我有什么美差,第一时间会想到你的。", "5c0bc95086f7746e784f39ec": "使用消音12铅径霰弹枪击杀Scav", "5c0bcc9c86f7746fe16dbba9": "使用消音12铅径霰弹枪击杀PMC", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "干得漂亮,我的朋友!我的事情很顺利。", "5c1242fa86f7742aa04fed52": "Eliminate PMC operatives in the time period of 21:00-06:00 (excluding Factory and The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "你觉得这都是些什么?一些严肃的玩具,对吧?哈哈哈,先把它给我吧。给你,这是你应得的报酬。咱们保持联系,我过会儿可能需要你帮忙测试一些东西。", "5c1b765d86f77413193fa4f2": "使用装有Hybrid 46消音器和REAP-IR瞄准镜的M1A步枪从60米开外击杀PMC干员", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "就是这样!现在我很确信你不会在什么大便击中风扇时就吓得屁滚尿流了。", "5c0bdbb586f774166e38eed5": "达到指定的抗压技能等级", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "在储备站使用栓动式步枪爆头击杀PMC人员", "5c137ef386f7747ae10a821e": "在海岸线使用栓动式步枪爆头击杀PMC人员", "5c137f5286f7747ae267d8a3": "在海关使用栓动式步枪爆头击杀PMC人员", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "在灯塔使用栓动式步枪爆头击杀PMC人员", "63aec6f256503c322a190374": "在塔科夫街区使用栓动式步枪爆头击杀PMC人员", "64b694c8a857ea477002a408": "在立交桥使用栓动式步枪爆头击杀PMC人员", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "真正老练的狙击手从来不会就这样放弃。屏住呼吸,再试一次吧。", "5c0be13186f7746f016734aa successMessageText": "说实话,我当时以为你办不成这件事。但是事实说明,你不是一般人。", "5c0be2b486f7747bcb347d58": "达到指定的拴动式步枪操作技能等级", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "使用栓动式步枪一命击杀PMC人员", "64b67fcd3e349c7dbd06bd16": "任务进行过程中,你不可以死亡或以其它状态离开战局(包括:阵亡,擅离,失踪) ", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "你把它们带回来了?很好,放在那边的角落里吧。小心点!这些设备非常的脆弱易损。即使整个诊所计划失败了,我也知道某些人也会对这些设备感兴趣的。当然了这只是你我之间的秘密,我们何必浪费这么昂贵的硬件设备呢?", "5c0be66c86f7744523489ab2": "上交检眼镜", "5c0be69086f7743c9c1ecf43": "上交LEDX皮肤透照仪", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "在战局中找到检眼镜", "5fd8935b7dd32f724e0fe7ee": "在战局中找到LEDX皮肤透照仪", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "实际上,我从未怀疑过你是一个值得信任的人,不仅仅是在工作中。", "5c0d0dfd86f7747f482a89a5": "达到指定的健康技能等级", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "很好,很好!客户们会对你很满意的,雇佣兵。这是给你的奖励。", "5c138c4486f7743b056e2943": "上交Virtex可编程处理器", "5c138d4286f774276a6504aa": "上交军用COFDM无线信号发射器", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "在战局中找到Virtex可编程处理器", "5ec13da983b69d213d3c2ee4": "在战局中找到军用COFDM无线信号发射器", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "干得漂亮。嗯......五肢也还健全。你能很处置这种情况呀,战士。这是给你的奖励。", "5c1b760686f77412780211a3": "使用手榴弹击杀PMC", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "已经办妥了?你懂的,这确实很有效,他们的头儿说话的方式都变了。别怪我,在这个世界上,即使是人渣,有时你也不得不跟他们文绉绉地谈判。给你的奖励。", "5c1b778286f774294438b536": "在立交桥穿戴指定装备,近距离(60米内)击杀Scav", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "在立交桥穿戴UN制式装备(UN头盔、MF-UNTAR防弹背心和M4A1步枪)击杀Scav", "5c1b713f86f774719c22e8a0": "在海岸线穿戴UN制式装备(UN头盔、MF-UNTAR防弹背心和M4A1步枪)击杀Scav", "5c1fd66286f7743c7b261f7b": "在森林穿戴UN制式装备(UN头盔、MF-UNTAR防弹背心和M4A1步枪)击杀Scav", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "在塔科夫街区穿戴UN制式装备(UN头盔、MF-UNTAR防弹背心和M4A1步枪)击杀Scav", "65e08aa9f5879b2586d5fd4c": "在中心区穿戴UN制式装备(UN头盔、MF-UNTAR防弹背心和M4A1步枪)击杀Scav", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "以“幸存”状态撤离海岸线", "5c13989886f7747878361a50": "以“幸存”状态撤离工厂", "5c1931e686f7747ce71bcbea": "以“幸存”状态撤离实验室", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "以“幸存”状态撤离储备站", "629f08e7d285f377953b2af1": "以“幸存”状态撤离灯塔", "63aec66556503c322a190372": "以“幸存”状态撤离塔科夫街区", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "在森林找到第二个燃料堆,并使用MS2000指示器标记", "5c10f94386f774227172c576": "在森林找到第三个燃料堆,并使用MS2000指示器标记", "5c10f94386f774227172c577": "以幸存状态撤离该区域", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "这才像话嘛!现在我就去搞把电烙铁开始工作了。事先再跟你说一声,市场也稳定下来了。", "5c1129ed86f7746569440e88": "上交电线", "5c112a1b86f774656777d1ae": "上交电容", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "在战局中找到电线", "5ca71a1e86f7740f5a5b88a2": "在战局中找到电容", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "现在我相信你绝对能在战局中平安归来,还能带上一背包的好东西。干得好,老兄!", "5c112dc486f77465686bff38": "达到指定的搜索技能等级", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "你弄到货了?漂亮。我很好奇下次他会要什么稀奇玩意儿,一个钻石马桶?不过,只要他开口要,你肯定会去找的。谢谢你的帮助,老兄。", "5c11427386f77430ff393793": "上交古董茶壶", "5c122c5f86f77437e44bcb0e": "上交古董花瓶", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "在战局中找到古董茶壶", "5ca7258986f7740d424a2044": "在战局中找到古董花瓶", "62a700893e015d7ce1151d90": "在战局中找到Axel鹦鹉雕像", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "我的人跟我说,现在的海关打得热火朝天,简直就像第三次世界大战爆发了。BEAR和USEC们正在猛烈攻击SCAV!干得漂亮。这是给你的奖励,我们说好的。", "5c1fa9c986f7740de474cb3d": "在海关穿戴指定装备击杀PMC", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Peacekeeper信任度达到4级", "5c12489886f77452db1d2b05": "Prapor信任度达到4级", "5c1248ef86f77428266184c2": "Therapist信任度达到4级", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Jaeger信任度达到4级", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "东西带来了,是吧?吾心甚慰啊!我得凑近了好好看看这些货。", "5c139eb686f7747878361a72": "上交UHF RFID固定式读取器", "5c139eb686f7747878361a73": "上交VPX闪存模块", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "在战局中找到UHF RFID固定式读取器", "5ec14080c9ffe55cca300867": "在战局中找到VPX闪存模块", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "啊,是你啊,本地的麻烦克星?是的,我了解你。但是你最好明白一件事,你可不是什么万里挑一,比你更专业的家伙大有人在。他们四处游荡,还一边打着他们的小算盘,偶尔会落下些小东西,而那些东西正是我需要的。不要问为什么,行吗?我知道这很难找,但是报酬绝对不会让你失望。只有一个要求:你需要亲自找到所有的东西,不能从别人那里买。相信我,我能看出来谁在撒谎的。", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "你都搞到我要的东西了?很好。雇佣兵,你用行动证明了自己的价值。这是你用血汗挣来的奖励,我可不会背信弃义。", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "上交破旧的古董书", "5c51bf8786f77416a11e5cb2": "上交#FireKlean牌枪润滑油", "5c51bf9a86f77478bf5632aa": "上交金公鸡", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "上交鲱鱼罐头", "5c51c24c86f77416a11e5cb7": "上交假胡子", "5c51c25c86f77478bf5632af": "上交Kotton无檐小便帽", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "上交古董火镰", "5c52da5886f7747364267a14": "上交古董斧头", "5cb5ddd386f7746ef72a7e73": "在战局中找到古董火镰", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "在战局中找到鲱鱼罐头", "5cb5df7186f7747d215eca08": "在战局中找到假胡子", "5cb5df8486f7746ef82c17ea": "在战局中找到Kotton无檐小便帽", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "在战局中找到乌鸦雕像", "5ec7998dc1683c0db84484e7": "上交乌鸦雕像", "5ec79aaac1683c0db84484e8": "在战局中找到 Pestily 瘟疫面具", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "上交WZ钱包", "60d0748820a6283a506aebb1": "在战局中找到LVNDMARK的老鼠药", "60d074ef401d874962160aee": "上交LVNDMARK的老鼠药", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": " 在战局中找到Smoke巴拉克拉瓦头套", "60e827faf09904268a4dbc40": "上交Smoke巴拉克拉瓦头套", "62a6ff004de19a4c3422ea5d": "上交战局中找到的物品:Missam叉车钥匙", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "你弄到它了?干得漂亮。好了,现在我认为你有资格去和Jaeger碰个头了。他应该会有很多活儿交给你做。", "5d249a6e86f774791546e952": "取得Jaeger的加密留言", "5d249aa286f77475e8376399": "上交留言", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "在森林找到Jaeger的营地", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "上交在战局中找到的Iskra个人配给口粮", "5d24bb4886f77439c92d6bad": "上交在战局中找到的方便面", "5d24bb7286f7741f7956be74": "上交在战局中找到的大牛肉罐头", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "就像某个名人所说,“飞舞则如蝶,蛰刺则如蜂”。这是非常好的想法,你最好能记住。", "5d25af3c86f77443ff46b9e7": "在森林不穿戴任何防弹衣击杀Scav", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "在森林的ZB-016地堡里藏匿瓶装水", "5d2deedc86f77459121c3118": "在森林的ZB-014地堡里藏匿Iskra个人配给口粮", "5d2defc586f774591510e6b9": "在森林的ZB-014地堡里藏匿瓶装水", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "不可能!这么久?真是令我印象深刻。拿着这个走吧,喝完之后你会神清气爽。", "5d25c5a186f77443fe457661": "在完全脱水的状态下存活五分钟(工厂除外)", "5d9f035086f7741cac4a9713": "以幸存状态撤离该区域", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "办妥了?干得漂亮。如果我们继续保持这种节奏,我想我们就能比计划中更早的恢复这座城市的秩序。", "5d25c8c986f77443e47ad47a": "在疼痛状态下击杀Scav", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "解决了?太棒了!多流汗少流血。别放松,你要干的事儿还多着呢。", "5d25d09286f77444001e284c": "在森林单局内不使用医疗物品的情况下击杀Scav", "5d25d0d186f7740a22515975": "完成任务前,你不能使用任何医疗物品", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "你能控制住?好啊!说老实话,我当时没想过你能成功,毕竟这次任务不简单。", "5d25d4e786f77442734d335d": "在颤栗效果下命中头部击杀PMC", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "你竟然活下来了?真令人难以置信。", "5d25dc2286f77443e7549028": "在闪光弹致盲状态下击杀PMC", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "你说他们有多少人来着?甚至打 的时候都没戴“设备”?那结果明了了,我们的暗夜猎手已经横空出世。", "5d25fd8386f77443fe457cae": "不装备任何夜视仪或热成像瞄具,在21:00-04:00期间击杀Scav (工厂除外)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "苏沃洛夫元帅怎么说的来着?什么是训练困难但实战容易的?这个技能将来会很有用的。这次就相信我吧。", "5d2605ef86f77469ef0f7622": "达到指定的活力技能等级", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "干得好!肯定还会有其他的人来侵犯这里,但是他们绝对不会再像之前一样随心所欲的破坏这里的一切了。", "5d26143c86f77469ef0f894c": "在工厂办公区(任意楼层)击杀PMC", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "找到并消灭Reshala", "5d2710e686f7742e9019a6b2": "上交Reshala的黄金TT手枪", "5d66741c86f7744a2e70f039": "在战局中找到Reshala的黄金TT", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "当他们踏上这条路时,他们就做出了自己的选择。你做了一件正确的事儿,谢谢你,猎人。", "5d2701b586f77469f1599fe2": "在塔科夫任意区域内击杀Scav", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "学到了?很好。你看,你已经有一百种方法置敌人于死地了。", "5d307fc886f77447f15f5b23": "击杀被闪光弹致盲的PMC", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "找到并消灭Killa", "5d271a3486f774483c7bdb12": "上交Killa的头盔 ", "5d667a8e86f774131e206b46": "在战局中找到Killa的头盔", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "找到并消灭Shturman", "5d272a0b86f7745ba2701532": "上交Shturman的宝箱钥匙", "5d2f464e498f71c8886f7656": "在战局中找到Shturman的宝箱钥匙", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "捍卫制服的荣誉?好吧,好吧,去他们的吧,没有什么比喊着口号打着幌子地犯罪更狗屎的了。", "5d272bd386f77446085fa4f9": "击杀穿着警服的Scav(Reshala的保镖)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "你做的事我已经听说了。看起来现在外面平静多了。抢劫犯少了很多。", "5d2733c586f7741dea4f3072": "在海关宿舍楼区域击杀PMC", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "终于,这个混蛋把他的大锅弄进了地狱。干得漂亮。", "5d27369586f774457411b264": "找到并消灭Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "所以说,他们一直在实验室和军事设施附近活跃...我希望他们不会挑起新的战争,这次的都还没完呢。总之,老兄,我们没必要亲自收拾这个烂摊子,至少现在不用。", "5d273a4d86f774457411b266": "击杀掠夺者", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "搞到了?太好了,希望我不用再眼睁睁地看着人们无助地死去。", "5d27446f86f77475a86565a3": "上交便携式除颤器", "5d7782c686f7742fa732bf07": "上交CMS手术包", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "在战局中找到便携式除颤器", "5ec1538a92e95f77ac7a2529": "在战局中找到CMS手术包", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "在海岸线的废弃村庄里找到地方主席的房子", "5d357b9586f7745b422d653f": "在海岸线的废弃村庄里找到渔夫的房子", "5d357bb786f774588d4d7e27": "在海岸线的废弃村庄里找到牧师的房子", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "以“幸存”状态撤离海岸线", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "搞到了?让我们看看他在干嘛。我和Mechanic会检查这个U盘的,等会儿再来一趟,我们会告诉你其中的内容。", "5d27491686f77475aa5cf5b9": "上交加密U盘", "5d6949e786f774238a38d9e0": "在战局中找到加密U盘", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "上交相册", "5d357e0e86f7745b3f307c56": "在疗养院找到Jaeger的海景房间", "5d357e8786f7745b5e66a51a": "取得Jaeger的相册", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "啊,这就是那些钥匙卡!谢谢你,战士。现在我们只用想办法找到实验室就行了。我会自己处理这事儿的,你不用操心。", "5d2f375186f7745916404955": "在战局中找到TerraGroup实验室访问钥匙卡", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "上交访问钥匙卡", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "进来吧,来点茶吗?嗯,随便了。听我说,事情是这样的。不久之后我要招待我的几个朋友,我想和他们一起去打猎,但那几支MP霰弹枪可上不了台面。我要你给我们搞来几支好枪,在打猎之后还能把它们作为我的个人珍藏的那种。你一定喜欢远距离射击,但首先,你得保证步枪归零是准确的,我们这正好有个能“帮”你校准归零的“客户”。他叫Shturman,总是潜伏在森林的伐木厂周围,是个讨厌的混蛋。别担心报酬,不会让你失望的。所以,用我的试验品(雷明顿 M700,装上March Tactical 3-24x42 FFP瞄准镜)测试测试。这个瞄准镜的倍率很高,连脸上的毛都能数清楚,所以你最好离远点瞄准。别担心,我会给你丰厚的报酬,老兄。", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "那步枪真他娘的正啊!干得好!我想是时候让我也加入枪匠行列了!", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "使用装有指定瞄具的M700狙击步枪从75米开外爆头击杀Shturman", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "看看谁来了,你好啊!我听到一些传言,说是在旧的军事基地仓库里还有很多食物。据传在军队离开后,强盗们开始在那里游荡。帮我个忙,找到他们的踪迹以及仓库所在的位置。你得注意安全,那里真的有很多混蛋游荡。", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "东西都被他们一扫而空了?妈的,我们得赶快了。", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "在储备站找到食品储存区域", "629f1259422dff20ff234b4d": "以幸存状态撤离该区域", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "上交6-Sten-140-M军用电池", "5d4c020a86f77449c463ced6": "在战局中找到OFZ 30x165毫米炮弹", "5d4c028c86f774389001e027": "上交OFZ 30x60毫米炮弹", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "嗯,你决定了?不过打几针而已。这儿,还有这儿。保持冷静,至少要几天时间,这段日子多休息,多补充维生素。", "5d6fb8a886f77449db3db8b6": "上交卢布", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "嗯,你真的去了?以你的资质,我敢打赌你会学得很快。", "5d6fbf0f86f77449d97f738e": "上交欧元", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "完成了吗?干得好!等一下,我需要记下尺寸,并搞明白这件衣服的缝纫技术。但是嘿,你自己应该知道,现在的材料可不便宜,做好心理准备!这可是一件三条纹的衣服,你懂的,时尚的标志。", "5dc53fd386f77469c87589a3": "找到并消灭Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "上交布料", "5e38356d86f7742993306cac": "上交布料", "5e3835e886f77429910d4465": "上交尼龙绳索", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "上交布料", "5e383a6386f77465910ce1f8": "在战局中找到尼龙绳索", "5e383a6386f77465910ce1f9": "上交尼龙绳索", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "上交面料", "5e4d4ac186f774264f75833b": "在战局中找到KEKTAPE管道胶带", "5e4d4ac186f774264f75833c": "上交管道胶带", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "上交面料", "5e4d515e86f77438b2195249": "在战局中找到KEKTAPE管道胶带", "5e4d515e86f77438b219524a": "上交KEKTAPE管道胶带", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "哦,真巧。也许你已经听说有个新医生出现了?但这个人并不是一个好东西,他靠麻醉治疗一些人,并把其他人搞残废。他们说他直接在大街上卖毒品和做手术。他们管他叫 Sanitar,不是吗?他在海岸线定居下来,有趣的是,当地的小混混们对他很满意,很明显他给他们修的很舒服,甚至还推销各种各样的毒品和急救箱。这意味着他的库存显然已经满了。查清这个 Sanitar 的底细,但现在先悄悄地,找出这个人渣在哪里闲逛。我认为他在同一个地方同时贩卖和治疗。这个工作你干不干? ", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "你的意思是,那里有一大堆货物?很明显,他给自己买了一个新仓库,现在正在大卖特卖。我希望我能找到那个仓库....但这已经不是你的问题了。谢谢您!", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "用MS2000指示器标记海岸线的第一个交易站 ", "5eda1da9a58a4c49c74165ee": "用MS2000指示器标记海岸线的第二个交易站", "5eda1dd3317f6066993c1744": "用MS2000指示器标记海岸线的第三个交易站", "5f0389268580cc37797e0026": "以幸存状态撤离该区域", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "所以你相信了那个女人?你没发现她只是在利用你吗?你认为因为 Sanitar 治疗过某些人,他就不会去杀死其他人吗?你在你的战争中完全疯了,你都分不清黑白。我不想看见你了,我想一个人呆着。", "5edab4b1218d181e29451435 successMessageText": "你做了正确的事,虽然别人说 Sanitar 做了一些好事,但他带来了更大的邪恶。不要听信别人的谎言。我以前见过他这样的人,一旦他们疯狂起来,就没有回头路了。你只能像射杀疯狗一样射杀他们。", "5edab5a6cecc0069284c0ec2": "找到并消灭Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "找到被派往海岸线疗养院的小组", "5edab8890880da21347b3826": "找到被派往海岸线码头的小组", "5edab8e216d985118871ba18": "找到被派往海岸线别墅的小组", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "以幸存状态撤离该区域", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "我在海岸线上失去了人手,这无疑是一件非常不愉快的事情,但新的医药来源更为重要。我们只需要一个不同的方法来处理这个事情。我的助手设法从海岸线贿赂了一个当地人告诉我们我们要找的医生。他有一个小秘密,海岸线上的几个地点。但他很奇怪,直接在大街上做手术,经常把工具藏在这些地方附近的建筑物里。把这些工具拿来。如果他意识到我们可以随时阻止他的贸易并控制他的领地,他会更加合作。", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "你把工具带来啦?把它们放进盒子里,我需要对这些东西进行适当的处理,真不知道这些东西都在哪里用过。你立刻就能看出他的条件有多艰苦,到处都沾满了血迹,环境肮脏不堪。行吧,现在这是我的事了。我会把这些工具带上那封写有我们给他好处的信一起送过去。这样这个 Sanitar 就会明白我们想让他做什么。", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "在海岸线找到Sanitar带有蓝色记号的手术套装", "5edabb950c502106f869bc04": "上交Sanitar的手术套装", "5edabbff0880da21347b382b": "在海岸线找到Sanitar的检眼镜", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "嘿你!硬汉!快过来,这里有个活正适合你。我听说 Parpor 派你去一些医生那里去弄药。别先急着表态!我对那些药品不感兴趣,让 Prapor 去收集起来放在他屁股上吧。他拿到东西就能给你好处,不是吗?你只需要把这些有意思的东西放在 Sanitar 藏起来的容器里。Prapor 不会听到任何风声,这是几分钟的自由交易,但利润不错。动作要快,在他们转运货物之前就要办好。", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "棒呀,棒呀,棒呀!最后,Prapor 会暴露他自己的仓库,那里可能有堆成山的物资。枪,弹药,食物,药品。真他妈的棒!但这件事我们自己来做,不需要你帮忙,无意冒犯,谢谢。", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "以幸存状态撤离该区域", "5f071a9727cec53d5d24fe3b": "将MS200指示器放在海岸线疗养院的医疗物资箱上", "5f071ae396d1ae55e476abc4": "将MS200指示器放在海岸线别墅的医疗物资箱上", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "年轻人,等等。我知道Jaeger会让你杀了那个Sanitar,但你不一定非得这么做。我明白这听起来不太好,用Jaeger的话来说,它就是一团有血有肉的怪物,但它不是。我相信Sanitar只是想帮助当地人。考虑到目前的情况,他做了最复杂的手术,结果往往很糟糕也就不足为奇了。他是一位拥有最宝贵知识的医生,那可以挽救更多的生命。一个能进入对我们极其重要的药品仓库的医生。他已经和我进行了谈判,并将很快开始合作。但为了这个,我需要一些他感兴趣的东西,我想我意识到他的兴趣是一个实验室。访问钥匙卡和军用兴奋剂的样本,我认为它们是他进行实验的基础。你能帮我找到它们吗?钥匙卡你可以想各种办法搞到,但是注射器必须是密封好的,你得自己去找。", "5edac34d0bb72a50635c2bfa failMessageText": "很遗憾你听了这个Jaeger 的话,却没有听理性的声音。这位Sanitar用他的知识和药物可以在很多方面帮助我们。他不是位圣人,但每个人都应该有机会赎罪不是吗吗?但你剥夺了他的权利,我对你非常不满。", "5edac34d0bb72a50635c2bfa successMessageText": "谢谢。我就知道你会明白现在Sanitar和他的药品有多重要。他已经对钥匙卡和兴奋剂表现出极大的兴趣,并寄了第一批货物。给,这是你的一份。", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "不要杀死Sanitar", "5f04935cde3b9e0ecf03d864": "上交访问钥匙卡", "5f04944b69ef785df740a8c9": "上交钥匙卡", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "祝你有个好日子。因为今日真的很棒。我是对的,新的兴奋剂与 Terra集团 有关。Mechanic 发现了一点关于 Sanitar 的信息,对我们来说有点贵,但总比什么都没有好。Sanitar 曾为 TerraGroup 工作,他可不是普通员工,接受过医学教育,是个传染病专家,离过婚......就是这样。再给我弄点信息,我的朋友,我很感兴趣他从哪里得到这些资源。找到他的工作场所,再挖点信息出来。", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "我们解码了这个U盘驱动器。那里有很多重要的信息,但我不能什么都告诉你。私下里,我可以告诉你关于 Sanitar 的事,他是个科学家。他研究药物,制造药物,然后在人身上进行试验。非常......大胆的实验,而且其中一些明显是违背伦理的研究。", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "上交带有蓝色胶带标记的U盘", "5eec9d054110547f1f545c99": "找到 Sanitar 在实验室的工作间", "5eff5674befb6436ce3bbaf7": "取得有关Sanitar工作的信息", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "勇士你好啊,这里有个活。小小鸟告诉我,那些看守储备站基地的前军人挖了一些通往地堡的通道。当然,他们不是自己动手挖的,他们强迫 Scav 来做这件事。而且似乎没有哪个可怜的混蛋成功溜出来过。不管怎样,我不知道那是什么样的地堡。我有消息说这可能是指挥地堡,但我不确定这就是那种地堡,或者只是基地人员的防空洞。现在派一个救援小组去救他们是没用的,他们会死在那些袭击者的手里。去看看那个地牢,告诉我是否值得派一个小组去那里。报酬很不错。愿意试一试吗?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "所以你说这是个指挥所?谣言没说谎,是吧?该死的!我马上派我的人去。给,拿着这个。跟我承诺的一样。", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "以幸存状态撤离该区域", "5ee8eea538ca5b3b4f3c4647": "找到地堡", "5ee8eecc0b4ef7326256c660": "找到地堡控制室", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "雇佣兵,你来得正是时候,你正是我需要的人。你还记得你在储备站基地下发现的那个该死的指挥地堡吗?长话短说,我的人去了那里,之后那里就变得一团糟。建筑的防护等级很高:过滤器,发电机,所有的通道都被超强加固的密闭门堵住了——就是个地下堡垒。但是掠夺者打开了那玩意,像阿拉巴马州的虱子一样挖了进去。所以,我的人遇到了棘手的麻烦,只有不到一半的人逃了出来。但你知道,因为这该死的原因,那地方更加神秘了。所以,因为这个问题,我的人不会再去那里了,但是如果你能找到一条安全的路线。。。你是个有经验的人,所以我需要你慢慢地,用你柔软的爪子,找出所有的入口在哪里。幸存者说那里有非常坚固的密闭门。所以成功与否取决于你能不能侦测到入口。", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "欢迎回来,请讲,我听着呢。啊哈,有了,把它画在我的计划上面。这个地堡几乎连接了基地的所有设施吗?妈的,多方便啊,你可以在每个人的眼皮底下逛半个基地。现在就明白为什么掠夺者在那里了,整个基地都在控制之中。谢谢你,勇士!这是给你的奖励。", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "以幸存状态撤离该区域", "5ee8ec5ed72d953f5d2aabd1": "找到通往医院的密闭门(白主教)", "5ee8ecd75eb3205dae135d17": "找到通往学院大楼的两扇密闭门中的一个(黑主教)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "就是它,就在一楼?我的人去过那里不少次,却什么都没发现。谢谢你。你有进去那个房间吗,有没有找到什么有意思的玩意儿?啊,没关系,我会派伙计们去搜索的。这是给你的奖励,谢谢你。", "5f0488c590eea473df674002": "在疗养院找到Sanitar的办公室", "5f04983ffbed7a08077b4367": "以幸存状态撤离该区域", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "欢迎,士兵,我这里有份工作给你。长话短说,一段时间之前,我和我的一伙人失去了联系。当那狗屎灾难发生的时候,我派他们去森林捡货去了,恐怕他们遭遇了埋伏。我和他们最后一次通话的时候,他们报告说有一伙USEC接近了他们。去查查看,还有没有人活着。他们有辆BRDM,是Bukhanka或者类似的卡车,但我记不清具体是那种的了。我想USEC肯定也在附近的某个地方扎营了,所以小心行动。", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "这意思是我的人完蛋了,货还被抢了...你说附近还有个USEC营地?真是恶心。但是还是得谢谢你啊。", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "在森林找到Prapor的失踪车队", "5fd9fad9c1ce6b1a3b486d05": "找到USEC临时营地", "5fd9fad9c1ce6b1a3b486d0d": "以幸存状态撤离该区域", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "当然,我已经感觉到了森林的动荡气氛,Shturman得到了他应有的下场。别光站在那啊,你现在可以买我的新步枪了。", "600303250b79c6604058ce30": "找到并消灭Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "在储备站找到并检查第二辆LAV-III步战车", "608925d455f4ac386d7e7fc4": "标记第一辆LAV-III步战车", "608930aa1124f748c94b801e": "在储备站找到并检查T-90坦克", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "棒极了!拿走这些报酬吧!你可别把这桩事儿说出去,就这个要求。", "60929ad46342771d851b827a": "在储备站找到装有T-90M控制面板的包裹", "60929afc35915c62b44fd05c": "上交包裹", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "在储备站取得第三份加密文件", "60ae0f0586046842a754e21e": "上交第二份文件", "60ae0f17b809a4748759078c": "上交第三份文件", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "干得不错。我希望那些人明白这是怎么回事儿了,他们可不能就这样杀了我的人。这是你的报酬。", "608bffeee0cc9c2d4d2ccb29": "消灭储备站地堡控制室中的掠夺者", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "上交第一份报告", "60ae12ffb809a474875907aa": "在储备站取得第二份医学报告", "60ae134cabb9675f0062cf6e": "上交第二份报告", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "原来这玩意儿长这样!棒。谢谢你,过段时间我会好好地研究它。这是给你的奖励,君子一言驷马难追。", "6092942fb0f07c6ea1246e3a": "在储备站取得MBT综合导航模块", "6092947635915c62b44fd05b": "上交导航模块", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "真的有秘密出口?太好了。我还没准备好给你的报酬呢,要不先告诉我怎么开启地堡逃生门。", "608a94101a66564e74191fc3": "在储备站找到未供电的秘密出口", "608a94ae1a66564e74191fc6": "从那个出口成功撤离", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "干得漂亮,我的人毫发无伤地回来了。这是你的奖励!", "608ab22755f4ac386d7e7fdc": "消灭储备站地下仓库里的Scav", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "检查储备站北边军营的第二个军械库", "608bd2465e0ef91ab810f98a": "检查储备站西边军营的值班室", "608c187853b9dd01a116f480": "以幸存状态撤离该区域", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "以幸存状态撤离该区域", "60a4dc7e4e734e57d07fb335": "在储备站使用MS2000指示器标记第一组油罐", "60b90232ec7c6f5eb510c195": "在储备站使用MS2000指示器标记第二组油罐", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "完事儿了?感觉空气都更加清新了呢。我们也是别无选择,真可惜。", "608a8356fa70fc097863b8f8": "消灭储备站营区里的Scav", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "真是个好消息。世界又清净了一点。你没被那个混蛋的大锤伤到吧?", "60c0d187938d68438757cda2": "找到并消灭Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "在战局中找到BOSS鸭舌帽", "60cfa5a85f9e6175514de2e3": "上交BOSS鸭舌帽", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "在立交桥击杀PMC", "60ec0b1871035f300c301acd": "在实验室击杀PMC", "60ec2b04bc9a8b34cd453b81": "任务进行过程中,你不可以死亡或以其它状态离开战局(包括:阵亡,擅离,失踪,匆匆逃离)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "在中心区击杀PMC", "65e19abadf39d26751b3bb1e": "在中心区击杀PMC", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "在海关的Scav营地击杀PMC", "60ec1e72d7b7cb55e94c1764": "在森林的Scav营地击杀PMC", "60ec2229fd1bf4491c4e4552": "在海岸线的疗养院区域击杀PMC人员", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "对了嘛,这就好多了。谢谢你,战士。兄弟们说到处都变得安静了,看来蠢货们已经明白你的意思了。", "60e8650e5d67b234af3d3926": "命中头部击杀Scav", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "我的天哪...你靠自己全部找到了?你真是个勇士。这些疯子有点不对劲,让我跟你说说...", "60e82c12fd1bf4491c4e4547": "在战局中找到不寻常的匕首", "60e82c5926b88043510e0ad7": "上交匕首", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "上交LEDX", "60f028ca86abc00cdc03ab89": "在战局中找到一堆药", "60f028f85caf08029e0d6277": "上交一堆药", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "在战局中找到OLOLO瓶装复合维生素", "62a70168eb3cb46d9a0bba7a": "上交瓶装维生素", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "雇佣兵,你真伟大。现在我的人可以放开手行动了!感谢你的努力。", "60e745d6479eef59b01b0bdc": "在储备站击杀掠夺者", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "很好,非常好!客户们已经准备了给你的奖——不对,已经对任务的成功表示了感谢。干得好,雇佣兵。", "60e8174d0367e10a450f7818": "在战局中找到50级以上BEAR PMC狗牌并上交", "60e81795479eef59b01b0bdf": "在战局中找到50级以上USEC PMC狗牌并上交", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "在战局中找到军用COFDM无线信号发射器", "60e7449875131b4e61703b7e": "上交Virtex可编程处理器", "60e744c9d1a062318d3d2262": "上交无线信号发射器", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "在战局中找到军用闪存装置", "62a7019ea9a0ea77981b57da": "上交闪存", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "很棒,这些正是我需要的所有数据,把记事本交给我吧。谢谢你,雇佣兵。", "60e740b8b567ff641b129573": "从100米开外击杀PMC", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "很好,谢谢你,我的朋友。客户说已经收到包裹了。我相信这不是他们最后一次下单,所以以后就靠你了。", "60e84ba726b88043510e0ad8": "在海关建筑工地的黄色吊车下方藏匿Trijicon REAP-IR瞄准镜", "60e85b2a26b88043510e0ada": "在海关“新加油站”的垃圾箱后面藏匿Trijicon REAP-IR瞄准镜 ", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "老兄,你真是帮了我个大忙,献上我的敬意!如果你在Ultra还看到了危险任务,一定要让我知道。我可能还会需要你去对付他们。", "60e73ee8b567ff641b129570": "在立交桥ULTRA商场内击杀PMC", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "上交威士忌", "60f028268b669d08a35bfad8": "在战局中找到纯净水", "60f0284e8b669d08a35bfada": "上交纯净水", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "在战局中找到\"Pevko Light\"瓶装啤酒", "62a70110eb3cb46d9a0bba78": "上交啤酒", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "找到并消灭Shturman", "60e7261eb567ff641b129557": "找到并消灭Glukhar", "60e72629465ea8368012cc47": "找到并消灭Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "快枪手,这是给你的奖励。你让那个老头很高兴,希望你自己也推出了结论。你自己就是武器和护甲,你身上的钢铁反倒不是了。", "60e729cf5698ee7b0505743c": "在森林不穿戴任何防弹护甲或头盔击杀PMC", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "勇敢的选择,雇佣兵。", "60effdac12fec20321367038": "上交Epsilon安全箱", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "听好了,老兄,你能帮我从一个人身上找到正确的情报吗?那个人已经离开城市了。为什么我不自己去找他?因为他操蛋的名字叫做伊万诺夫。真的,我没骗你。这个国家有整整二十万人叫这名字。如果我们可以找到他在塔科夫用过的地址,就有可能在数据库里找到他。让我看看,我能从他身上找到什么。我记得他以前开了一间酒吧,叫什么名字我忘了...听好了,我也不知道你要怎么确定,哪间酒吧是他的。哦对了,我想起来了,他喜欢芭蕾舞。没骗你,他每个季节都会去一次马林斯基歌剧院。他甚至想过在我们本地的剧院办点什么,但是人们对这些东西并不感兴趣。还要更多细节?老兄,我已经说得够详细了!我相信你,发挥你的第六感吧。", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "酒吧和他的地址都找到了?这,在这里写下来。你比那些在电视上寻人的家伙还厉害。一切结束以后,想当个侦探吗,老兄?我会给你订做一顶侦探帽的,我发誓会的。", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "在塔科夫街区找到芭蕾舞演员的公寓", "63a7daae04d3dc28a52a2109": "以幸存状态撤离该区域", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "过来,我亲爱的伙计。城里一切都还好吧?我有几个小队失踪了。最开始我在想,谁这么大胆子,敢对我的生意动手动脚?除非他们在骗我。我猜这最开始都是灯塔的人干的。但是之后我收到了Seva Shket的消息。信里他说,那些人被囚禁在一所秘密监狱里了。你有听说过吗?据说它就藏在那些旧的建筑里面。要真是出了这种问题,我巴不得把他们给宰了,说真的。但是看起来有些人还是打算把他们囚禁起来。现在是这么个情况:Shket是唯一逃出来的小队,但是他现在已经跑路了,自从发来消息之后就再也没有和我们联系了。他甚至没告诉我,要去哪里找其他的人,真是个贱人。这些人被抓起来,本来就该挨骂,现在还把事情越弄越糟糕了。不管怎么说,有人想要搞我事儿,这是无法忍受的。总之,我受够了。去看看我的人被关在哪里了。", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "操他妈的。怎么会有人把他们关在那里?要是他们发个消息给我,让我交钱赎人,不然绑票,我还能理解。这是连环杀手吗?总之,过段时间再来一趟,我会弄清楚的。", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "以幸存状态撤离该区域", "63a7d767f32fa1316250c3da": "在塔科夫街区找到失踪小队被关押的位置", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "同样的情节又一次发生了,一段新的录像,这次里面有一个奇怪的符号。到底发生了什么?人们就这白白死掉了。这是做给谁看的?为什么这么多问题都无法得到答案。我一直以为我们每次看到的都是最糟糕的,但是下一次我又知道我错了。我们已经击败了图财害命的那些人,还有那些只杀人的家伙。不过,最起码我已经理解他们的动机了,这个野兽击溃了人类的灵魂。但是人们是出于什么目的才会这样做呢...这就我不能理解了。所以,大兵,我会在森林里寻找他们,你去街区里做同样的事情。他们的藏身处一定就在某个地方。去找相同的符号,我相信我们会在哪里找到的。", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "你找到了?在哪?那里有人吗?那个符号是什么意思?看来问题还变多了...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "以幸存状态撤离该区域", "63a7d6d61f06d111271f5aeb": "在塔科夫街区找到邪教徒的聚集处", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "你好!我们就要开始了,你有感觉到激动吗?这次的任务有些特殊,我们需要测试这些俄式玩具在近距离战斗时的表现,所以情况会很接近实战。我的一些客户不相信这玩意儿的效果...你能让他们改变想法吗?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "怎么样?一切都顺利吧?很适合城市近距离作战对吗?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "在塔科夫街区使用装有消音器和KP-SR2反射式瞄具的SR-2M \"Veresk\" 消灭PMC行动人员", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "还有些完好无损的,太好了。让我们去试试。这是给你的报酬。", "6572e876dc0d635f633a5718": "在塔科夫街区的Klimov大街找到第一批ATM机", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "搜索Pinewood酒店的Sparja(Спаржа)商店", "6572e876dc0d635f633a571e": "搜索Concordia区的Goshan商店", "6572e876dc0d635f633a5720": "上交在战局中找到的咸狗牛肉肠", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Atm №11", "65733403eefc2c312a759df2": "Atm №12", "65733403eefc2c312a759df4": "Atm №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Atm №15", "65733403eefc2c312a759dfa": "Atm №16", "65801ad655315fdce2096bec": "解开公司获得成功的秘密", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "你找到了吗?干得好,把东西都带来吧!顺便带走你的报酬。", "6573397ef3f8344c4575cd88": "在塔科夫街区找到不动产管理处", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "找到并获取塔科夫地区的不动产交易记录", "658167a0e53c40116f8632fa": "上交找到的信息", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "太好了,我已经听到消息了。马上大家就都看不顺眼那群家伙了。这是给你的报酬。", "65734c186dc1e402c80dc1a2": "在塔科夫街区佩戴Bomber 无檐小便帽和Raybench Hipster Reserve太阳镜消灭任意敌人", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "在塔科夫街区的理发店里藏匿Bomber 无檐小便帽", "657356d0a95a1e7e1a8d8d99": "在塔科夫街区的理发店里藏匿Raybench Hipster Reserve太阳镜", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "陷进沼泽里了?怪不得这么便宜。把它拉出来清理干净都得花更多钱了!行吧,给你,帮我做事总有报酬的。", "65802b627b44fa5e1463889a": "在海岸线找到Ragman的SUV", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "以幸存状态撤离该区域", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Locate and obtain the “Bison VS Undertaker” poster at the USEC camp on Woods", "664bbb5f217c767c35ae3d51": "Locate and obtain the “Killa and Tagilla” poster at the USEC camp on Woods", "664bbb73c71d456fd03714ca": "Locate and obtain the “Easy Money” poster at the USEC camp on Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm, looking for the one who ordered the hit. They'll get over it and realize they're crossing the line. Here, this is your reward.", "660d5effb318c171fb1ca234": "Eliminate Kaban's guards on Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminate Kollontay's guards on Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Win 6 matches out of 10 in ranked mode in Arena", "662bb24b3d34cd5e19206e63": "Failure condition: Lose 5 matches", "6633a85e347a2a2b4051a26b": "Hand over Roubles from the EFT balance", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Failure Condition: Lose 5 matches", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.", "66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.", "66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Locate and obtain the compromising information on Ref", "664fd7f0837ee02ad4c8e658": "Hand over the found info", "66563f0a2684eee09e8dcd86": "Locate the old champion's hideout", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "I think I'm beginning to understand why people watch these \"live streams\". It's addictive!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Install a WI-FI Camera on the mountain ledge on Woods", "667bf840981b1c594af358ce": "Install a WI-FI Camera at the pier tower on Shoreline", "667bf845dc371ee9869f185e": "Install a WI-FI Camera at the office corridor on Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Well done! They say that even the outside world found out about our little move, haha!", "667442da875be5fb415df535": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Shoreline", "66828746efaecf435dde20ca": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", "66d080533a3c33d823a3477d": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "你好啊,朋友。最近的事情有点棘手。我今天起需要临时对商品涨价,直到一些情况得到解决。我的一位雇佣兵朋友打算组织一个突袭实验室的队伍,他需要可靠的武器。你能帮我吗?我知道你和我一样精通AR系统,这件事情非你莫属了。我需要一把后坐力之和不超过300的M4A1,人机功效也不能低于70。我知道这不容易。对了,还要有EOTech XPS 3-0全系瞄具,我的这位客户不接受任何其他的瞄具。", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "谢谢。这一单够我维持一阵了。", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "按照要求改装M4A1", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "确认一下,你路上没有搞丢什么东西吧?行,现在是时候让工程师们启程了。我们就要知道,工厂的墙后到底藏着什么玩意儿了。感谢你的帮助,我的朋友。", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory (In one raid)", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory (In one raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "在海关的实验室找到并获取精密工具", "66ab97d56cb6e3bfd7c79fbc": "在工厂的实验室储藏间藏匿精密工具", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "看起来你找到那条通道了。干得漂亮!情况如何,是安全的吧?你是说,它处于年久失修的状态?这样的话,看来这个机遇不会一直存在了。我会尽快派手下出发。", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov (In one raid)", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab (In one raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab (In one raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab (In one raid)", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab (In one raid)", "66b10eef0951e90ec383850b": "Scout the control room in The Lab (In one raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "买家说全部都送达了。你已经获得了报酬,我的人现在会在这些新路线上帮你转移。", "66abb32aeb102b9bcd088d62": "使用中心区至塔科夫街区的移动功能", "66abb39bf1d97b9b55390a79": "使用塔科夫街区至立交桥的移动功能", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "使用立交桥至海关的移动功能", "66abb3ac416b26ade4a1446c": "使用海关至工厂的移动功能", "66abb3bf228ace5ca9f3d745": "使用工厂至森林的移动功能", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "在海岸线燃烧车辆里的小熊身边安装WI-FI摄像头", "66debf2e1e254957b82711ff": "在海岸线的反转椅子处安装WI-FI摄像头", "66debf30802386a45d0adb60": "在海岸线的公共浴室安装WI-FI摄像头", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "幸运的士兵迎来了他的新任务!传言说塔科夫现在愈加危险了。有人开始用迫击炮瞄准某些地方了。\n\n你最好去看看,到底发生了什么。没错,我的意思就是冲进轰炸区的中心。我们在自然保护区、军事基地、海关办公区和海岸线都观测到了轰炸事件。路上小心。", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "活着回来了,挺好。让我们看看究竟发生了什么。有群人偷走了一批迫击炮,然后趁空投来临之前狂轰滥炸。\n\n太可疑了。那些本地人根本没有和外界安全通信的途径,这怎么可能呢?不管怎么说,我们现在也只能坐观其变了。", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "进入正在遭受轰炸的区域(海岸线、森林、储备站、海关)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "我得知了一件很烦人的事情。和你没有什么关系,这不重要。那群污水处理厂的混蛋截获了物资箱,并且搞到了电子战报装置。\n\n现在这些装置没什么作用,但是我可不能容忍他们像这样窃取政府财产。\n\n对于像你这样的勇士而言,这件委托不是难事儿。去污水处理厂把东西夺回来。没错,人也要教训教训。\n\n那些装置很有可能已经被上交给老大们了,所以你一定可以从头目们那里拿到东西。当然,我假设的前提是你活着回来。", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "太好了,东西已经到位了。我的手下们肯定会爱死这些玩意儿。接下来的几天你要随时做好准备,有备无患嘛。", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "上交在战局中找到的物品:GARY ZONT “保护伞”便携式电子战报装置", "66e19f359fee1e54e0e01f7c": "击杀游荡者", "66e19f7d534a8ff2bb7e9f89": "找到并消灭Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "关于那位商人的事情,现在对我很有利,不是吗?要我说,如果我没有这份机敏,也许早就死翘翘了。总之,我后面再处理这些报告内容。\n\n现在,我需要帮一帮外出作战的小弟们。把你找到的新款装备带给他们。不不不,你们不需要碰面。把东西藏在约定的地方就行了。", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "很好,现在他们可以免受无人机的威胁了,一定可以按预定计划完成作战任务。", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "在海岸线将GARY ZONT “保护伞”便携式电子战报装置藏匿在沉陷的教堂中", "66e071c8a9e80c3f25bb1bad": "在森林将雷达站备用零件藏匿在旧锯木厂的厂房里", "66e0735089627301d900ef1d": "在海岸线将雷达站备用零件藏匿在气象站的塔内", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "我听见了黑暗之声", "6514134eec10ff011f17cc26 description": "作为PMC,击杀Knight 15次", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "中门对狙", "651413e9c31fcb0e163577c9 description": "作为PMC,击杀Zryachiy 15次", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/cz.json b/Libraries/SptAssets/Assets/database/locales/global/cz.json index f14c0bcc..580aa17f 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/cz.json +++ b/Libraries/SptAssets/Assets/database/locales/global/cz.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Skrýt pouzdro v odpočívárně, která se nachází ve 2. patře u Brány 3 ve Factory", "5968929e86f7740d121082d3": "Získat zabezpečené pouzdro v kanceláři ředitele Tarcone na překladišti v Customs", "5977784486f774285402cf52": "Přežít a odejít z Factory", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Vskutku působivé! To je snad nukleární kufřík! Není se čemu divit, že se ho nikdo nepokusil odnést.", "5968981986f7740d1648df42": "Získat cenný předmět v pokoji 203 ubytovny na Customs", "5968988286f7740d14064724": "Předat cenný předmět", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Získat na ubytovně přístup do pokoje 214", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Děkuji Vám z celého srdce. Nelze ani říci jak moc - a zároveň málo to je vzhledem k našim podmínkám. Většina lidí by si je nechala pro sebe, ale Vy se o ně podělíte s ostatními. Děkuji.", "5969f98286f774576d4c9542": "Najít během raidu Injektory s morfiem", "5969f99286f77456630ea442": "Předat injektory", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Najít během raidu Zapalovací svíčky", "596b470c86f77457ca18618a": "Předat baterie", "596b472686f77457c7006f8a": "Předat zapalovací svíčky", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "A říkal jsi, že tam nic není! Přestože by mohly být prázdné. Je třeba to zkontrolovat. V každém případě dostaneš svůj podíl.", "5979ee2986f7743ec214c7a4": "Najít během raidu Zabezpečené flash disky", "5979ee4586f7743ec214c7a5": "Předat flash disky", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Označit na Customs třetí cisternu pomocí značkovače MS2000", "59c128f386f774189b3c84bb": "Označit na Customs čtvrtou cisternu pomocí značkovače MS2000", "5c92184386f7746afa2e7840": "Přežít a opustit lokaci", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Skvělé! Tady, je odměna. Já mezitím předám ten flash disk mým specialistům na rozšifrování.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Skrýt odstřelovací pušku SV-98 do lodi", "5a27d85286f77448d82084e7": "Skrýt multifunkční nářadí do lodi", "5a3ba11786f7742c9d4f5d29": "Najít ukrytou loď u vlnolamu na Shoreline", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Přežít a opustit lokaci", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Skvělé, od teď se na mě můžeš vždy spolehnout.", "5a56489d86f7740cfe70eba2": "Předat USD", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Máš to? Nech to v rohu, děkuji. Krásná věc, že? Každopádně mám teď trochu napilno, nemůžu mluvit dlouho.", "5accd5e386f77463027e9397": "Upravit MP-133 dle požadované specifikace", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Ve schopných rukou může tato zbraň svrhnout režimy a vyvolat revoluce. Nech to v koutě, zkontroluju to později.", "5accd9b686f774112d7173d1": "Upravit AKS-74U dle požadované specifikace", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Šikovná pro CQB a tichá... Dobrá úprava, zákazník bude spokojen.", "5accde3686f7740cea1b7ec2": "Upravit MP5 dle požadované specifikace", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Děkuji, nechte pušku na stole, předám ji Di... ehm, Sniperovi.", "5acce08b86f7745f8521fa64": "Upravit DVL-10 dle požadované specifikace", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Jo, před něčím takovým se neschováš. Miluju 7.62, je to dobrá ráže. Díky za tvou práci. Další objednávka by měla být zítra.", "5acce11786f77411ed6fa6eb": "Upravit R11 RSASS dle požadované specifikace", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Dejte mi to, podíváme se na to vaše sestavení. Jo, zbraň demokracie... Děkuji.", "5accdfdb86f77412265cbfc9": "Upravit M4A1 dle požadované specifikace", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Opravit ve Factory první rozvaděč", "5ac7a51a86f774738a4ffc96": "Opravit ve Factory druhý rozvaděč", "5ac7a5d586f774383111ee63": "Přežít a opustit lokaci", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Předat zástrčky", "5ac5061386f77417e429ce7a": "Najít během raidu Desky plošných spojů", "5ac5062586f774587c327395": "Předat desky plošných spojů", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Najít na Customs sklad zabavených věcí", "5ac6248586f77416781dd3a3": "Získat balík s grafickými kartami", "5ac624b286f77416781dd3ac": "Předat balíček", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Předat grafiky", "5ac5083d86f7740be2744eed": "Najít během raidu Ventilátory na CPU", "5ac5084d86f7740bde1b0031": "Předat ventilátory", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Najít na Shoreline zdroj prvního signálu", "5ac5e13586f7746074388f93": "Najít zdroj druhého signálu", "5ac5e18c86f7743ebd6c9575": "Přežít a opustit lokaci", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Předat baterie", "5ac5e98886f77479bc6ca201": "Předat desky plošných spojů", "5ac5ea0586f774609f36280c": "Předat mobily", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Najít během raidu Počítačové procesory", "5cb6f88d86f7747d215f09c1": "Najít během raidu Dobíjecí baterie", "5cb6f8de86f7740e9d452685": "Najít během raidu Desky plošných spojů", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Sedmá číslice za desetinnou čárkou v pí? IIO? Dobrá, ozvu se, až přijde čas.", "5ac5eb3286f7746e7a509a09": "Dosáhnout požadované úrovně u dovednosti Pozornost", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Předat Cigarety Strike", "5ac5ef9886f7746e7a509a2d": "Najít během raidu Cigarety Wilston", "5ac5eff886f7740f43322559": "Předat Cigarety Wilston", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Najít druhý východ z Factory", "5ac61adf86f774741c1bf096": "Najít třetí východ z Factory", "5ac61b1486f7743a8f30fc84": "Přežít a opustit lokaci", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Najít čtvrtý východ z Factory", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "Nerad se přetvařuju, ačkoli to děláme všichni. Občas ve snaze přežití a někdy protože se prostě bojíme. Víš, nejsem zrovna moc výřečný, zejména když se jedná o cizí lidi, ale ty vypadáš jako fajn chlap. Když si získáš moji důvěru, myslím, že pak už dokážeš vyjít úplně s každým. Po tom všem co se tady děje, nám může pomoci přežít jenom to, že se můžeme spolehnout jeden na druhého. Mluvil jsem s Pavlem Yegorovichem, pokud ti věří, pravděpodobně mu budu moct zařídit dodávky střelného prachu.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich je jedním z mála, kteří zůstali. Zajímalo by mě, jestli je to proto, že je voják, nebo prostě neměl čas odejít. I když mám pocit, že má prostě nějaké pochybné obchody.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Dosáhnout 3. úrovně reputace u Prapora", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Dobrá zbraň, pevná konstrukce. Nové objednávky nejsou, ale zítra se můžeš znovu zastavit.", "5ae34b8b86f7741e5b1e5d48": "Upravit Remington Model 870 dle požadované specifikace", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Komfortní zbraň, mistrovsky provedená, děkuji. Dám klientovi vědět, že je zbraň připravena.", "5ae3550b86f7741cf44fc799": "Upravit AKM dle požadované specifikace", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "No, je to Zenit AK připravené? Skvěle, nech ho na té bedně, díky. Pro další objednávku si můžeš přijít zítra, jestli chceš.", "5ae3570b86f7746efa6b4494": "Upravit AKS-74N dle požadované specifikace", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "Myslím, že jsem přišel na to, jak vyzkoušet síť! Ah, ano, tohle AK bude stačit, děkuji. Nech to někde v koutě, podívám se na to později.", "5ae445f386f7744e87761331": "Upravit AK-105 dle požadované specifikace", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Dokončil jsi tu pušku? Skvěle, podej mi ji. Mám tu jeden zajímavý klíč, mohl by se ti hodit. Otevírá obchod se zbraněmi v Ultra, KIBA obchod. Je tam pár skvělých modifikací na zbraně, mohly by se nám hodit při budoucím stavění zbraní.", "5ae4479686f7744f6c79b7b3": "Upravit AS VAL dle požadované specifikace", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Vítej v partě, kámo. Tak co, jdeme na věc?", "5ae44c6886f7744f1a7eb2b8": "Získat úroveň 2 reputace u Ragmana", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Dosáhnout 2. úrovně reputace u Ragmana", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Střílíš jako sniper, dobrý. Moji chlapi říkají, že Interchange je plná mrtvol Scavů a Ultra je teď klidnější, takže tady máš odměnu, zasloužíš si ji.", "5ae44ecd86f77414a13c970e": "Eliminovat scavy na Interchange", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Zkontrolovat na Interchange obchod DINO CLOTHES", "5ae4511d86f7740ffc31ccb5": "Zkontrolovat na Interchange obchod TOP BRAND", "5ae4514986f7740e915d218c": "Přežít a opustit lokaci", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Označit na Interchange druhou cisternu pomocí značkovače MS2000", "5ae452fa86f774336a39758e": "Označit na Interchange třetí cisternu pomocí značkovače MS2000", "5ae4531986f774177033c3e6": "Přežít a opustit lokaci", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Jak se říká, krása zachrání svět. Děkuji, opravdu mi to pomohlo, bratře. Klobouky se prodají během jediného dne, věř mi. Tady, vezmi si to jako odměnu.", "5ae4543686f7742dc043c903": "Předat ušanky", "5ae454a086f7742be909a81a": "Předat klobouky", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Najít během raidu Ušanky", "5fd89799c54dc00f463272d3": "Najít během raidu Kovbojské klobouky", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Předat nákladní listy OLI", "5ae9b3b186f7745bbc722762": "Získat na Interchange nákladní listy IDEA", "5ae9b3c986f77432c81e2ce6": "Předat nákladní listy IDEA", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Našel jste ty dokumenty? Velmi děkuji. Podejte mi je, podíváme se, kam zmizel náš malý náklad.", "5ae9b5bd86f774307c29df37": "Získat na Interchange nákladní listy OLI", "5ae9b63286f774229110402d": "Předat dokumenty", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Předat lyžařskou kuklu", "5ae455fb86f7744dd8242380": "Najít během raidu Turistický batoh Pilgrim", "5ae4562086f774498b05e0dc": "Předat batoh", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Předat balistickou vestu", "5ae9b91386f77415a869b3f3": "Získat balistickou vestu BNTI Gzhel-K (životnost 50 až 100%)", "5ae9b93b86f7746e0026221a": "Předat balistickou vestu", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Předat taktické vesty", "5af079e486f77434693ad7f8": "Najít během raidu Vesty BlackRock", "5af07a0286f7747dba10d8ac": "Předat taktické vesty", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Předat první knihu", "5ae9c0e186f7746419683c5e": "Získat na Interchange druhou příručku oděvního designu", "5ae9c10686f774703201f146": "Předat druhou knihu", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Wow wow, klid, jsem na tvé straně, chlape! Promiň, jen si dělám prdel. Vidím, že jsi zvládl své charisma, to je dobře. Tak si promluvme o obchodu.", "5ae9c29386f77427153c7fb0": "Dosáhnout požadované úrovně u dovednosti Charisma", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Zdá se, že to šlo bez problémů, díky.", "5ae9c38e86f7743515398707": "Dosáhnout 3. úrovně reputace u Therapistky", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Skrýt na určeném místě Shemagh (Zelený)", "5ae9e2a286f7740de4152a0a": "Skrýt na určeném místě sluneční brýle RayBench", "5ae9e2e386f7740de4152a0d": "Skrýt na určeném místě sluneční brýle s kulatými obroučky", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Pamatuješ si, jak jsi vyděsil v ULTRA pár scavů? Teď se říká, že je to čím dál horší. Říká se, že se to tam hemží všelijakou verbeží. Mám pro tebe úkol: zkontroluj situaci na Interchange, ať se tam dá aspoň projít. Najdi nějaké bezpečné trasy. Opravdu potřebuju, aby to šlo hladce, jasný?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Jsi jako nějaký neviditelný muž nebo duch nebo tak něco. Počkej, vezmu si mapu. Takže nejbezpečnější cesty jsou tady a tady, že? Super, dám vědět svým lidem. Děkuji, příteli, opravdu jsi mi pomohl.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Přežít a odejít z Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Tak to je opravdový djigit! Připravim své kluky, přivezou tolik dobrých věcí z Goshanu! Takže k tvé odměně: podívej se na nové zásoby neprůstřelných vest, vše pro tebe.", "5ae9e55886f77445315f662a": "Získat klíč k pokladnám Goshan", "5ae9e58886f77423572433f5": "Předat klíč", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Jen nezapínej baterku, pokud nechceš být několik dní oslepený! Každopádně dobrá práce, nech to na té bedně.", "5b47796686f774374f4a8bb1": "Upravit АК-102 dle požadované specifikace", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "No tak, dej to sem, musím to předat klientovi, a to rychle. Doufám, že jsi nikomu neřekl, k čemu je tohle MPX postavený. Tak mu popřejme hodně štěstí.", "5b477b3b86f77401da02e6c4": "Upravit SIG MPX dle požadované specifikace", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Díky, nechte to někde tady. Mám teď trochu napilno, uvidíme se později.", "5b477f1486f7743009493232": "Upravit AKMN dle požadované specifikace", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "Je puška připravena? Skvěle. Myslím, že už jsi přišel na to, že Sniperovo pravé jméno je Dima, před chvílí jsem to prozradil. Nikomu o něm neříkej ani slovo, doufám, že tomu rozumíš.", "5b47824386f7744d190d8dd1": "Upravit M1A dle požadované specifikace", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Chce se mi to dát do vitríny. Mistrovská práce, opravdu se z toho vyklubalo mistrovské dílo.", "5b4783ba86f7744d1c353185": "Upravit M4A1 dle požadované specifikace", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Super, polož je sem. Říkal si o ně Mechanik, ale to ti už asi došlo. Pošlu mu je ještě dnes. Děkuju, moc mi to pomohlo.", "5b47884886f7744d1c35327d": "Najít během raidu Palivové kondicionéry", "5b47886986f7744d1a393e65": "Předat Palivové kondicionéry", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Předat Sošku kočky", "5b478a6c86f7744d190d8f4d": "Najít během raidu Zlaté náramkové hodinky Roler Submariner", "5b478a8486f7744d1c35328b": "Předat náramkové hodinky", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Najít během raidu Zlaté vejce", "62a70058ec21e50cad3b6709": "Předat Zlaté vejce", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Skrýt na určeném místě Peltor ComTac 2", "5b478c7386f7744d1a393fb1": "Skrýt na určeném místě helmu 6B47", "5b478cb586f7744d1a393fb5": "Skrýt na určeném místě balistiku BNTI Gzhel-K", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Označit na Interchange druhý minibus pomocí značkovače MS2000", "5b478dca86f7744d190d91c2": "Označit na Interchange třetí minibus pomocí značkovače MS2000", "5b478de086f7744d1c3533a1": "Přežít a opustit lokaci", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Získat na Interchange třetí chemický kontejner", "5b4c832686f77419603eb8f0": "Předat druhý kontejner", "5b4c836486f77417063a09dc": "Předat třetí kontejner", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Pěkně, dobrá práce! Doufejme, že se moji kluci uzdraví. Dostali z té nové krve docela dost genofondu, ale bohužel, nemají moc na výběr.", "5b47905886f7746807461fe2": "Předat respirátory", "5b4790a886f774563c7a489f": "Předat transfuzní soupravy", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Najít během raidu Respirátory", "5ec1388d83b69d213d3c2ee0": "Najít během raidu Infuzní soupravy", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Nainstalovat na Woods WIFI kameru pro sledování doku u pily", "5b47936686f77427fd044025": "Nainstalovat na Customs WIFI kameru pro sledování cesty do přístavu", "5b47938086f7747ccc057c22": "Nainstalovat na Interchange WIFI kameru pro sledování vchodu do obchodu Kiba Arms", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Předat třetí řídící jednotku", "5b4c7aec86f77459732b4b08": "Předat druhý gyroskop", "5b4c8e6586f77474396a5400": "Získat na Shoreline druhý jednoosý optický gyroskop", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Získat na Woods první řídící jednotku", "66d07de6c7ef9040fff0b789": "Předat první řídící jednotku", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Skrýt na Interchange zlaté řetízky pod matraci v obchodu Generic vedle BTR-82A", "5b4796c086f7745877352c2c": "Skrýt na Customs zlaté řetízky v mikrovlnné troubě ve 3. patře ubytovny", "5b47971086f774587877ad34": "Skrýt na Woods zlaté řetízky do prostřední dřevěné kabiny", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Eliminovat na Interchange PMC mezi 22:00 až 10:00", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "Tak co, už se cítíš jako Zaitsev? Sniper je s výsledky prvního testu spokojen a už připravuje další úkol.", "5bc850d186f7747213700892": "Eliminovat Scavy pomocí odstřelovací pušky s pevnými mířidly na vzdálenost alespoň 40 metrů", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Dobrý, dobrý. Ani já bych nebyl tak přesný ve střelbě, jsem už příliš starý. Zatímco jsi střílel, Sniper si pro tebe připravil další test.", "5bd983d886f7747ba73fc246": "Zasáhnout někoho do nohy pomocí odstřelovací pušky na vzdálenost alespoň 40 metrů", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Zasáhnout někoho do hlavy pomocí odstřelovací pušky na vzdálenost alespoň 40 metrů", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Máš dobré reakce, jinak bys tu už nestál. Jak jsem slíbil, vezmi si svůj nový klobouk! Běž, střelče, čekají tě nové zkoušky.", "5bc47e3e86f7741e6b2f3332": "Eliminovat PMC pomocí odstřelovací pušky na krátkou vzdálenost (méně než 25m)", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Připraven? Pak se pusť do práce. Sniper se o tebe velmi zajímal.", "5bc4813886f774226045cb9a": "Eliminovat PMC pomocí odstřelovací pušky na vzdálenost alespoň 80 metrů", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Eliminovat PMC pomocí odstřelovací pušky na vzdálenost alespoň 80m", "657b0567ec71635f16471dd2": "Eliminovat PMC pomocí odstřelovací pušky na vzdálenost alespoň 80m", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Dobrá práce, soví oči. Dostal jsi ty noční dravce.", "5bc84f7a86f774294c2f6862": "Eliminovat na Customs Scavy pomocí odstřelovací pušky během 21:00 až 5:00", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "Při odstřelovaní se nepoužívají žádné hloupé triky. Dobrá práce, chlapče.", "5bc483ba86f77415034ba8d0": "Eliminovat Scav odstřelovače pomocí odstřelovací pušky", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "Nepřítel je naprosto bezmocný, když neví, odkud se na něj střílí. Vedl sis dobře, střelče.", "5bc485b586f774726473a858": "Eliminovat PMC pomocí tlumené odstřelovací pušky na vzdálenost alespoň 45 metrů", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Není to snadný úkol. Zkus to znovu.", "5bc4893c86f774626f5ebf3e successMessageText": "Zdá se, že být chytrý někdy nestačí k tomu, aby ses i chytře choval. Sniper zatím mlčí, takže před dalšími úkoly ještě chvíli počkejme. Dám ti vědět, až pro tebe budou připraveny nové testy.", "5bc48aed86f77452c947ce67": "Eliminovat operátory PMC pomocí odstřelovací pušky do hlavy a neumřít", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "Nesmíte zemřít nebo opustit raid (Status: Zemřel, Opustil, Ztracen), dokud neodevzdáte úkol", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Skrýt zlaté hodinky Roler Submariner do odpadků naproti schodům ve 3. patře ubytovny", "5c12320586f77437e44bcb15": "Skrýt falešný flash disk do odpadků naproti schodům ve 3. patře ubytovny", "5c1233ac86f77406fa13baea": "Nezabíjet na Customs žádné scavy, dokud nebude úkol dokončen", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Získat na Customs falešný flash disk", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "Udělal jsi dobře, máš můj respekt! Budu na tebe myslet, pokud tady budu mít něco zajímavého.", "5c0bc95086f7746e784f39ec": "Eliminovat Scavy pomocí tlumené 12ga brokovnice", "5c0bcc9c86f7746fe16dbba9": "Eliminovat PMC pomocí tlumené 12ga brokovnice", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Dobrá práce, příteli! Vše šlo podle plánu.", "5c1242fa86f7742aa04fed52": "Eliminovat PMC během noci v času od 21:00 do 6:00 (nesmí být ve Factory, The Labs)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "Co si o tom myslíš? Pořádná hračka, co? Skvěle, tak mi to dej. Tady, to je za pomoc. Zůstaň v kontaktu, možná budu potřebovat další pomoc při testování dalších věcí.", "5c1b765d86f77413193fa4f2": "Eliminovat operátory PMC pomocí M1A s tlumičem Hybrid 46 a puškohledem Schmidt & Bender PM II 1-8x24 nad 60 metrů", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "Tady jsi! Teď jsem si jistý, že si nenachčiješ do kalhot, když se něco opravdu posere.", "5c0bdbb586f774166e38eed5": "Dosáhnout požadované úrovně u dovednosti Odolnost vůči stresu", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Eliminovat na Reserve operátory PMC pomocí odstřelovací pušky do hlavy", "5c137ef386f7747ae10a821e": "Eliminovat na Shoreline operátory PMC pomocí odstřelovací pušky do hlavy", "5c137f5286f7747ae267d8a3": "Eliminovat na Customs operátory PMC pomocí odstřelovací pušky do hlavy", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Eliminovat na Lighthouse operátory PMC pomocí odstřelovací pušky do hlavy", "63aec6f256503c322a190374": "Eliminovat na Streets of Tarkov operátory PMC pomocí odstřelovací pušky do hlavy", "64b694c8a857ea477002a408": "Eliminovat na Interchange operátory PMC pomocí odstřelovací pušky do hlavy", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Zkušený odstřelovač se takto neprozradí. Vydýchej se a zkus to znovu.", "5c0be13186f7746f016734aa successMessageText": "Upřímně řečeno, nebyl jsem si jistý, jestli to zvládneš. Ale určitě se zdá, že nejsi obyčejný křupan.", "5c0be2b486f7747bcb347d58": "Dosáhnout požadované úrovně u dovednosti Odstřelovacích pušek", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Eliminovat operátory PMC pomocí odstřelovací pušky a neumřít", "64b67fcd3e349c7dbd06bd16": "Během plnění úkolu nesmíte zemřít nebo opustit raid (Status: Zemřel, Opustil, Ztracen)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Přinesl jsi to? Skvěle, dej to všechno tamhle do rohu. Opatrně, to zařízení je velmi křehké. I kdyby celá ta věc s klinikou nevyšla, tak znám pár lidí, kteří by o to vybavení mohli mít zájem, ale to je jen mezi námi dvěma. Proč plýtvat tak drahým hardwarem?", "5c0be66c86f7744523489ab2": "Předat Oftalmoskop", "5c0be69086f7743c9c1ecf43": "Předat Žilní transilluminator LEDX", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Najít během raidu Oftalmoskop", "5fd8935b7dd32f724e0fe7ee": "Najít během raidu Žilní transilluminator LEDX", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "Vlastně jsem nikdy nepochybovala, že jste člověk, kterému můžu věřit a to nejen při práci.", "5c0d0dfd86f7747f482a89a5": "Dosáhnout požadované úrovně u dovednosti Zdraví", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Velmi dobré, velmi dobré! Klienti s tebou budou spokojeni, žoldáku. Tvá odměna.", "5c138c4486f7743b056e2943": "Předat procesory", "5c138d4286f774276a6504aa": "Předat vysílače", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Najít během raidu Programovatelné procesory Virtex", "5ec13da983b69d213d3c2ee4": "Najít během raidu Vojenské bezdrátové vysílače COFDM", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Dobře, končetiny stále v celku a potřebný rozruch jsi zvládl také. Budeš v těchto věcech užitečný, bojovníku. Tady je odměna, zasloužíš si ji.", "5c1b760686f77412780211a3": "Eliminovat PMC pomocí granátů", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Už hotovo? Víš, ono to tam opravdu fungovalo, ale jak říkali jejich šéfové, hodně se to tam změnilo. Neobviňuj mě, v tomhle světě budeš muset jednat i s takovouhle spodinou. Tady je tvá odměna.", "5c1b778286f774294438b536": "Eliminovat Scavy na Interchange na krátkou vzdálenost (méně než 60m), zatímco na sobě máte požadovanou výbavu", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Eliminovat Scavy na Interchange, zatímco na sobě máte uniformu UN (UN helmu, vestu MF-UNTAR a pušku M4A1)", "5c1b713f86f774719c22e8a0": "Eliminovat Scavy na Shoreline, zatímco na sobě máte uniformu UN (UN helmu, vestu MF-UNTAR a pušku M4A1)", "5c1fd66286f7743c7b261f7b": "Eliminovat Scavy na Woods, zatímco na sobě máte uniformu UN (UN helmu, vestu MF-UNTAR a pušku M4A1)", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminovat Scavy na Streets of Tarkov, zatímco na sobě máte uniformu UN (UN helmu, vestu MF-UNTAR a pušku M4A1)", "65e08aa9f5879b2586d5fd4c": "Eliminovat Scavy na Ground Zero, zatímco na sobě máte uniformu UN (UN helmu, vestu MF-UNTAR a pušku M4A1)", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Přežít a odejít ze Shoreline se statusem \"Přežil\"", "5c13989886f7747878361a50": "Přežít a odejít z Factory se statusem \"Přežil\"", "5c1931e686f7747ce71bcbea": "Přežít a odejít z The Lab se statusem \"Přežil\"", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Přežít a odejít z Reserve se statusem \"Přežil\"", "629f08e7d285f377953b2af1": "Přežít a odejít z Lighthouse se statusem \"Přežil\"", "63aec66556503c322a190372": "Přežít a odejít ze Streets of Tarkov se statusem \"Přežil\"", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Označit ve Woods druhou zásobu paliva pomocí značkovače MS2000", "5c10f94386f774227172c576": "Označit ve Woods třetí zásobu paliva pomocí značkovače MS2000", "5c10f94386f774227172c577": "Přežít a opustit lokaci", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Teď se bavíme! Vezmu pájku a pustím se do práce. Snad se trh do té doby už stabilizuje.", "5c1129ed86f7746569440e88": "Předat dráty", "5c112a1b86f774656777d1ae": "Předat kondenzátory", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Najít během raidu Dráty", "5ca71a1e86f7740f5a5b88a2": "Najít během raidu Kondenzátory", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "Tak vidíš, teď už jsem si naprosto jistý, že se můžeš vrátit z raidu a i s nějakým dobrým zbožím v batohu. Dobrá práce, bratře!", "5c112dc486f77465686bff38": "Dosáhnout požadované úrovně u dovednosti Prohledávání", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Máš to? Skvělé. Zajímalo by mě, co by chtěl příště, záchod s diamantovým povrchem? Ale hele, jestli si o to řekne, tak se po tom vlastně stejně budeš muset podívat. Díky za pomoc, bratře.", "5c11427386f77430ff393793": "Předat konvice", "5c122c5f86f77437e44bcb0e": "Předat vázy", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Najít během raidu Starožitné konvice", "5ca7258986f7740d424a2044": "Najít během raidu Starožitné vázy", "62a700893e015d7ce1151d90": "Najít během raidu Sošku Axelova papouška", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Moji lidé říkají, že Customs je teď ve třetí světové válce, BEARové a USECové házejí Scavy nalevo a napravo! Dobrý ty vole, dobrá práce. Tady je tvoje odměna, jak jsem slíbil.", "5c1fa9c986f7740de474cb3d": "Eliminovat PMC na Customs, zatímco na sobě máte požadovanou výbavu", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Dosáhnout 4. úrovně reputace u Peacekeepera", "5c12489886f77452db1d2b05": "Dosáhnout 4. úrovně reputace u Prapora", "5c1248ef86f77428266184c2": "Dosáhnout 4. úrovně reputace u Therapistky", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Dosáhnout 4. úrovně reputace u Jaegera", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "Ty jsi to skutečně přinesl! To mě těší! Podívám se na to zblízka.", "5c139eb686f7747878361a72": "Předat čtečku", "5c139eb686f7747878361a73": "Předat paměťový modul", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Najít během raidu Čtečky UHF RFID", "5ec14080c9ffe55cca300867": "Najít během raidu Paměťové moduly VPX Flash", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Ahoj, žoldáku. Sleduji tě už delší dobu a vím, že jsi schopen vyřešit úkoly, které ti někdo zadá. Nebuď teď příliš domýšlivý, nejsi jediný, kdo umí plnit rozkazy. Takových bojovníků, jako jsi ty, je víc, dokonce ještě schopnějších. Chci ti nabídnout práci, dát ti šanci stát se součástí něčeho většího, než si dokážeš představit. Pokud jsi připraven, pak je tu pro tebe úkol: Moji lidé operují po celém Tarkově a často po sobě zanechávají suvenýry. Úkolem je tyto předměty získat a doručit mi je. Na nic se neptej. Tyhle věci jsou nesmírně vzácné. Doufám, že ti nemusím připomínat, že všechny tyhle předměty musíš získat sám? Věř mi, že jako nikdo jiný poznám, když lidé lžou. O místě předání budeš informován. A ještě něco, všichni moji parťáci už dávno zvládli své dovednosti a prokázali, že jsou spolehliví, a jestli chceš být jedním z nich, tak mi dokaž, že v tréninku nejsi horší než oni. Nesnaž se mě kontaktovat, udělám to sám, až přijde čas.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Máš vše? Dobře, žoldáku. Těžce vydělaná odměna na tebe čeká na určeném místě, přesně jak bylo slíbeno. Grutuluji a vítej mezi námi.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Předat Starožitnou poškozenou knihu", "5c51bf8786f77416a11e5cb2": "Předat Lubrikant na zbraně #FireKlean", "5c51bf9a86f77478bf5632aa": "Předat Zlatého kohouta", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Předat Plechovku šprotů", "5c51c24c86f77416a11e5cb7": "Předat Falešný knír", "5c51c25c86f77478bf5632af": "Předat Kottonovu čepici", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Předat Staré křesadlo", "5c52da5886f7747364267a14": "Předat Starožitnou sekeru", "5cb5ddd386f7746ef72a7e73": "Najít během raidu Staré křesadlo", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Najít během raidu Plechovku šprotů", "5cb5df7186f7747d215eca08": "Najít během raidu Falešný knír", "5cb5df8486f7746ef82c17ea": "Najít během raidu Kottonovu čepici", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Najít během raidu Sošku havrana", "5ec7998dc1683c0db84484e7": "Předat Sošku havrana", "5ec79aaac1683c0db84484e8": "Najít během raidu Pestilyho morovou masku", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Předat Peněženku WZ", "60d0748820a6283a506aebb1": "Najít během raidu LVNDMARKův jed na krysy", "60d074ef401d874962160aee": "Předat LVNDMARKův jed na krysy", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Najít během raidu Kuklu Smoke", "60e827faf09904268a4dbc40": "Předat Kuklu Smoke", "62a6ff004de19a4c3422ea5d": "Předat předmět nalezený v raidu: Klíč k vysokozdvižnému vozíku Missam", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Máš to? Dobrá práce. No, myslím, že jsi si zasloužil, abych tě seznámil s Jaeger. Mohl by pro tebe mít spoustu práce.", "5d249a6e86f774791546e952": "Získat Jaegerovu zašifrovanou zprávu", "5d249aa286f77475e8376399": "Předat zprávu", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Najít na Woods Jaegerův tábor na určeném místě", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Předat Potravinové balíčky Iskra nalezené v raidu", "5d24bb4886f77439c92d6bad": "Předat Balení instantních nudlí nalená v raidu", "5d24bb7286f7741f7956be74": "Předat Velké plechovky dušeného hovězího masa nalezené v raidu", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Jak říkával jeden slavný člověk: \"Vznáší se jako motýl, bodá jako včela.\" Dobrá rada, raději si ji zapamatuj. Tak co, cítíš, jak snadné je pohybovat se bez všech těch plátů na sobě? Pokud se pohybuješ rychle, nepotřebuješ ani neprůstřelnou vestu, aby ses vypořádal se šmejdy.", "5d25af3c86f77443ff46b9e7": "Eliminovat Scavy na Woods, zatímco na sobě nemáte žádnou balistickou vestu", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Skrýt ve Woods láhev vody do bunkru ZB-016", "5d2deedc86f77459121c3118": "Skrýt ve Woods balíček Iskra do bunkru ZB-014", "5d2defc586f774591510e6b9": "Skrýt ve Woods láhev vody do bunkru ZB-014", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "Není možné, abys přežil tak dlouho! Působivé. Tady máš, vypij to, načerpáš sílu.", "5d25c5a186f77443fe457661": "Přežít 5 minut během kompletní dehydratace (nesmí být ve Factory)", "5d9f035086f7741cac4a9713": "Přežít a opustit lokaci", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Poradil jsis? Pěkně provedeno. Tvůj trénink je skoro u konce, příteli. Pokud to tak půjde dál, mohli bychom ve městě zajistit pořádek daleko dřív, než jsme plánovali.", "5d25c8c986f77443e47ad47a": "Eliminovat scavy, zatímco trpíte účinkem bolesti", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Uspěl jsi? Skvěle! Pot zachraňuje krev! Nebuďte teď příliš nadšený, čekají vás ještě další úkoly.", "5d25d09286f77444001e284c": "Během jednoho raidu eliminovat Scavy ve Woods bez použití léků", "5d25d0d186f7740a22515975": "Nesmíte používat žádné léky, dokud úkol nedokončíte", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "Takže zvládáš i třes rukou? Skvělé! Upřímně řečeno, nemyslel jsem si, že se ti to podaří, úkol byl velmi obtížný.", "5d25d4e786f77442734d335d": "Eliminovat PMC do hlavy, zatímco trpíte účinkem třesu", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Takže jsi přežil? Kdo by si to pomyslel.", "5d25dc2286f77443e7549028": "Eliminovat PMC, zatímco jste oslepen", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "Kolik jich podle tebe bylo, šest? A všechny jsi je dostal bez \"brýlí\"? Jsi opravdu skvělý noční lovec, chlapče.", "5d25fd8386f77443fe457cae": "Eliminovat Scavy během 21:00 až 4:00 bez použití nočního vidění nebo termálních zaměřovačů (nesmí být ve Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "Jak to lidé říkají? Co je těžké při výcviku, bude snadné v boji! Tato dovednost se ti bude hodit, věř mi. Tvůj výcvik je téměř dokončen. Vypadá to, že jsi připraven se stát Lovcem.", "5d2605ef86f77469ef0f7622": "Dosáhnout požadované úrovně u dovednosti Vitalita", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Dobrá práce! V Tarkově je dost šmejdů, určitě přijdou další. Ale aspoň si to dvakrát rozmyslí, než to tu rozbijí.", "5d26143c86f77469ef0f894c": "Eliminovat PMC v kancelářských prostorech ve Factory (jakékoliv patro)", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Eliminovat Reshalu", "5d2710e686f7742e9019a6b2": "Předat Reshalovu zlatou pistoli TT", "5d66741c86f7744a2e70f039": "Najít během raidu Reshalovu zlatou pistoli TT", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "Rozhodli se už, když vstoupili na špatnou stranu. Udělal jsi správnou věc, lovče, děkuji ti.", "5d2701b586f77469f1599fe2": "Eliminovat Scavy kdekoli v Tarkově", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Poučil jsi se? Dobře. Nepřítele můžeš odzbrojit mnoha způsoby.", "5d307fc886f77447f15f5b23": "Eliminovat PMC, zatímco jsou oslepeni", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Eliminovat Killu", "5d271a3486f774483c7bdb12": "Předat Killovu helmu", "5d667a8e86f774131e206b46": "Najít během raidu Killovu helmu \"Maska-1SCh\"", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Eliminovat Shturmana", "5d272a0b86f7745ba2701532": "Předat Shturmanův klíč", "5d2f464e498f71c8886f7656": "Najít během raidu Shturmanův klíč", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Ochránil jsi čest uniformy? To je skvělé. Ať jdou do háje, není nic horšího než složit přísahu a pak spadnout do zločinu.", "5d272bd386f77446085fa4f9": "Eliminovat scavy v policejních uniformách (Reshalovi strážci)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "Slyšel jsem, co jsi udělal. Vypadá to, že je nyní venku větší klid. Moc jich nepřežilo. Jsem ti vděčný.", "5d2733c586f7741dea4f3072": "Zabít PMC v oblasti ubytovny na Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Vítej zpět, lovče. Takže jsi se vypořádal s těmi bandity? Ani si nedokážu představit, jaká to byla fuška, odvedl jsi skvělou práci.", "5d27369586f774457411b264": "Eliminovat Glukhara", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Takže operují v blízkosti laboratoří a vojenských zařízení... Doufám, že to nevyvolá další válku, navíc k té, která už probíhá. No, chlapče, to není na nás, abychom to řešili, alespoň prozatím.", "5d273a4d86f774457411b266": "Eliminovat Raidery", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Máš to? Skvělé. Doufám, že už nebudu muset bezmocně sledovat, jak lidé umírají.", "5d27446f86f77475a86565a3": "Předat defibrilátor", "5d7782c686f7742fa732bf07": "Předat chirurgické soupravy CMS", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Najít během raidu Přenosný defibrilátor", "5ec1538a92e95f77ac7a2529": "Najít během raidu Chirurgické soupravy CMS", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Najít v opuštěné vesnici na Shoreline dům předsedy", "5d357b9586f7745b422d653f": "Najít v opuštěné vesnici na Shoreline dům rybáře", "5d357bb786f774588d4d7e27": "Najít v opuštěné vesnici na Shoreline dům kněze", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Přežít a odejít ze Shoreline se statusem \"Přežil\"", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Máš to? Dobře, tak se podíváme, co má za lubem. Vrať se za chvíli, Mechanik a já zkontrolujeme ty flash disky a pak ti dáme taky vědět.", "5d27491686f77475aa5cf5b9": "Předat flash disky", "5d6949e786f774238a38d9e0": "Najít během raidu Zabezpečené flash disky", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Předat fotoalbum", "5d357e0e86f7745b3f307c56": "Najít na Shoreline ve zdravotním středisku Jaegerův pokoj s výhledem na záliv", "5d357e8786f7745b5e66a51a": "Získat Jaegerovo fotoalbum", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "Máš je? Dobrá práce, chlapče. Teď už jen musíme přijít na to, jak najít tu laboratoř. No, já se o to postarám sám, neboj.", "5d2f375186f7745916404955": "Najít během raidu Vstupní karty TerraGroup Labs", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Předat vstupní karty", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Pojď dál. Dáš si čaj? No, to je fuk. Tak poslouchej, tady je kšeft. Brzy budu mít návštěvu několika svých přátel. Chci s nimi jít na lov, ale s těmihle MP brokovnicemi je prostě nemůžu vzít na lov, že? Mám tady pár pěkných westernových pušek, ale potřebuju je nejdřív vyladit. A na to máme právě toho klienta, jmenuje se Shturman. Takže otestuj mou sestavu (odstřelovací puška Remington M700 se zaměřovačem FullField TAC30 1-4x24) na tomhle šmejdovi. Najdi si vzdálenou pozici a vystřel přesně do hlavy, aby ten parchant neměl ani šanci. Neboj se, odměnou tě nezklamu, chlapče.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "To jsou zatraceně skvělé pušky! Dobrá práce! Víš, myslím, že bych se taky mohl pustit do stavění zbraní, ta věc se mi docela líbí. Takže k té odměně: podívej se na ty drobnosti, co jsem našel, možná je budeš potřebovat.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Eliminovat Shturmana do hlavy nad 75 metrů pomocí pušky M700 s určeným zaměřovačem", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Podívejte se, koho tu máme! Ahoj! Poslyš, víš o té vojenské základně poblíž zdravotního střediska? Nejspíše jsi tam už byl. Mám pro tebe novinky. Říká se, že v tamních starých skladech je ještě spousta jídla a že se tam začaly potulovat skupiny banditů, ale ne obyčejných scavů, jsou dobře vybavení. Chci, abys zkontroloval, jestli v těch skladech něco nezůstalo. Ale buď opatrný, je tam opravdu hodně nebezpečných lidí.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Oni to už začali všechno odnášet? Sakra, musíme jednat rychle.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Najít na Reserve sklad s potravinami", "629f1259422dff20ff234b4d": "Přežít a opustit lokaci", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Předat vojenskou baterii", "5d4c020a86f77449c463ced6": "Najít během raidu Náboje OFZ 30x165mm", "5d4c028c86f774389001e027": "Předat OFZ náboje", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "Takže, jsi se rozhodl? Jen pár injekcí. Tady a tady. Buď alespoň pár dní v klidu. Víc odpočívej a jez vitamíny.", "5d6fb8a886f77449db3db8b6": "Předat RUB", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Bylo mi řečeno, že jsi se zúčastnil výcviku. S tvými schopnostmi se to určitě rychle naučíš.", "5d6fbf0f86f77449d97f738e": "Předat EUR", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Už to máš? Dobrá práce. Počkej chvilku, musím tě změřit a zjistit jakou použít techniku šití. Jak jsem slíbil. Ale hele, musíš pochopit, že materiály dneska nejsou levné, takže se připrav na cenu. Ale má to tři pruhy, trochu stylu chápeš, ne?", "5dc53fd386f77469c87589a3": "Eliminovat Killu", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Předat tkaniny", "5e38356d86f7742993306cac": "Předat tkaniny", "5e3835e886f77429910d4465": "Předat lana", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Předat tkaniny", "5e383a6386f77465910ce1f8": "Najít během raidu Lana", "5e383a6386f77465910ce1f9": "Předat lana", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Předat tkaniny", "5e4d4ac186f774264f75833b": "Najít během raidu Lepící pásky KEKTAPE", "5e4d4ac186f774264f75833c": "Předat lepící pásky", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Předat tkaniny", "5e4d515e86f77438b2195249": "Najít během raidu Lepící pásky KEKTAPE", "5e4d515e86f77438b219524a": "Předat lepící pásky", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, právě včas. Možná už jste slyšel, že se objevil nový doktor, co? Ale tento není dobrosrdečný Asképois. Některé lidi uzdraví, jiné zmrzačí. Říká se, že prodává drogy a má ordinace přímo na ulici. Říkají mu Sanitar, dokážeš si to představit? Usadil se na Shoreline a je zajímavé, že místní pankáči jsou s ním velmi spokojení. Dává je dohromady a dokonce je zásobuje léky a lékárničkama všeho druhu. To znamená, že sklady má očividně plné. Zjistěte mi něco o tomto Sanitarovi, ale tiše, protentokrát. Chci vědět kde se ten drban poflakuje. Myslím, že kšeftuje i léčí na stejných místech. Berete to?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "Takže říkáš, že je tam docela dost zásob? Hádám, že našel čerstvý neotevřený lékařský sklad a teď z něj všechno vyprodává. Kdybych tak ten sklad našel... no, to stejně není tvůj problém. Alespoň prozatím.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Označit na Shoreline první obchodní místo pomocí značkovače MS2000 ", "5eda1da9a58a4c49c74165ee": "Označit na Shoreline druhé obchodní místo pomocí značkovače MS2000", "5eda1dd3317f6066993c1744": "Označit na Shoreline třetí obchodní místo pomocí značkovače MS2000", "5f0389268580cc37797e0026": "Přežít a opustit lokaci", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "Takže jste té ženě věřil? Uvědomuješ si, že ti jen lže ve svůj prospěch? Myslíš si, že když Sanitar léčí některé lidi, nemůže zabíjet jiné? Ty ses z té války nebo z té tvé úplně zbláznil, nedokážeš rozlišit černou od bílé. Jdi mi z očí, chci být sám.", "5edab4b1218d181e29451435 successMessageText": "Udělal jsi správnou věc. I když ostatní říkají, že Sanitar konal dobré skutky, tak přinesl mnohem více zla. Nevěř lžím těchto lidí. Už jsem viděl lidi jako Sanitar: jakmile se zblázní, není cesty zpět. Můžeš je jen zastřelit jako vzteklé psy.", "5edab5a6cecc0069284c0ec2": "Eliminovat Sanitara", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Najít skupinu, která byla poslána do zdravotního střediska na Shoreline", "5edab8890880da21347b3826": "Najít skupinu, která byla poslána na molo na Shoreline", "5edab8e216d985118871ba18": "Najít skupinu, která byla poslána do chaty na Shoreline", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Přežít a opustit lokaci", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "Ztráta mých lidí na Shoreline je opravdu velmi nepříjemná zežitost, ale nový zdroj léků je důležitější. Jen potřebujeme změnit v této věci přístup. Mému asistentovi se podařilo podplatit místní na Shoreline a oni nám o tom medikovi, kterého hledáme, něco málo řekli. Z bezpečnostních důvodů se drží určitých zvyků. Na Shoreline má několik míst, je to dost divné, ale on tam operuje přímo na ulici. Často si také ukrývá nástroje poblíž těchto míst. Třeba v budovách v okolí. Sežeňte ty nástroje. Sanitar bude pak ochotnější spolupracovat, až zjistí, že mu můžeme kdykoliv zastavit jeho kšefty a získat tak kontrolu nad územím.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Přinesl jste ty nástroje? Dejte je do té krabice, budu je muset pořádně vyčistit, nevíme, kde byly předtím. Je jasně vidět, že je v těžké situaci, všechno je od krve, zjevně nehygienické podmínky. No, ale to je teď moje věc. Vrátím Sanitarovi jeho nářadí spolu s dopisem prostřednictvím jednoho místního, kterého jsme podplatili, aby pochopil, co po něm chceme.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Získat během raidu na Shoreline Sanitarovu chirurgickou soupravu, označenou modrým symbolem", "5edabb950c502106f869bc04": "Předat Sanitarovu chirurgickou soupravu", "5edabbff0880da21347b382b": "Získat během raidu na Shoreline Sanitarův oftalmoskop", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hej ty, drsňáku! Pojď sem, mám pro tebe práci. Slyšel jsem, že tě Prapor poslal pro zásobu drog od nějakýho Sanitara. Netvař se tak! Já o ty drogy nemám zájem, ať si je Prapor sebere a strčí si je do prdele, stejně už jsi od něj zisk dostal, ne? Stačí, když tyhle chytré věcičky dáš do kontejnerů, které jsou v Sanitarových skrýších. Prapor se nic nedozví, je to práce na dvě minuty, ale zisk je z toho dobrý. Jen to musíš udělat rychle, než ty kontejnery přemístí.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Sakra jo, sakra jo! Konečně, Prapora u těch jeho skrýší načapáme, pravděpodobně tam budou celé hory věcí. Zbraně, munice, jídlo, drogy. To je sakra vynikající! Ale uděláme to sami. Bez urážky. Díky.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Přežít a opustit lokaci", "5f071a9727cec53d5d24fe3b": "Umístit značkovač MS2000 na lékařský kontejner u zdravotního střediska na Shoreline", "5f071ae396d1ae55e476abc4": "Umístit značkovač MS2000 na lékařský kontejner u chatek na Shoreline", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Mladý muži, počkejte. Vím, že vás Jaeger požádal, abyste zabil Sanitara. Ale vy to dělat nemusíte. Chápu, jak to zní. Podle Jaegera je to ďábel v lidském těle, ale to tak není. Jsem si jistá, že Sanitar se jen snaží pomoci místnímu obyvatelstvu. S ohledem na aktuální podmínky, za kterých provádí ty nejsložitější operace není divu, že to často končí špatně. On je lékař a jeho znalosti mohou zachránit mnoho životů. Lékař s přístupem do skladu léků, které jsou pro nás velmi důležité. Nedávno už se mnou začal i komunikovat, nebude trvat dlouho a začne i spolupracovat. Ale na to ještě potřebuju něco, co ho zaujme. A myslím, že jsem na to přišla. Je to laboratoř. Vstupní klíče a vzorky vojenských stimulátorů. Myslím, že ty vzorky jsou základem, pro jeho experimenty. Můžete je pro mě najít? Přístupové karty můžete získat, jak chcete, ale stimulanty musí být zapečetěné, takže je musíte najít sám.", "5edac34d0bb72a50635c2bfa failMessageText": "Je škoda, že jsi poslechl toho Jaegera a zapomněl na vlastní rozum. Sanitar nám se svými znalostmi a léky mohl v mnohém pomoci. Nebyl svatý, ale každý má jistě šanci odčinit své hříchy, ale vy jste mu tu šanci vzal. Jsem z vás velice zklamaná.", "5edac34d0bb72a50635c2bfa successMessageText": "Díky. Věděl jsem, že pochopíš, jak důležitý Sanitar a jeho léky teď jsou. Okamžitě se o ty vstupní karty a stimulanty zajímal. Řekl bych, že projevil velký zájem a hned poslal první várku zboží. Tady, to je tvůj podíl.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Sanitar nesmí zemřít", "5f04935cde3b9e0ecf03d864": "Předat karty", "5f04944b69ef785df740a8c9": "Předat kartu", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Přeji ti dobrý den, žoldáku. Protože ten den je vlastně dobrý. Měl jsem pravdu, nové stimulanty jsou napojené na TerraGroup. Mechanik našel informace o Sanitarovi. Není toho moc a bylo to pro nás hodně drahé, ale je to lepší než nic. Sanitar pracoval pro TerraGroup, a ne jako obyčejný zaměstnanec. Vystudoval medicínu, specialista na infekční choroby, rozvedený... No, to jsou všechny informace, které o něm máme. Dej mi víc, příteli, moc by mě zajímalo, kde získal přístup k takovým zdrojům. Najdi jeho pracoviště a zjisti víc.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Rozšifrovali jsme ten flash disk. Je tam spousta důležitých informací, ale nemůžu ti říct všechno. Je to tajné. Můžu ti ale říct o Sanitarovi, je to vědec. Studoval a vyvíjel léky, které pak testoval na lidech. Velmi... odvážný, nebo jak se někdy říká, neetický výzkum.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Předat flash disk s modrou páskou", "5eec9d054110547f1f545c99": "Najít v Labs Sanitarovo pracoviště", "5eff5674befb6436ce3bbaf7": "Najít informace o Sanitarovi práci", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Zdravím bojovníku. Jeden ptáček mi vyštěbetal, že ti bývalí vojáci, kteří hlídají základnu Reserve se prokopali do nějakého podzemního bunkru. Samozřejmě, že to nedělali vlastníma rukama, donutili scavy, aby tu chodbu vykopali a s největší pravděpodobností se ti chudáci už ven nepodívali. Ale o to zas tak nejde. Můj návrh je! Jelikož nemám tušení, co je to za bunkr, a to že by mohlo jít o nějaký velitelský bunkr, mám jenom z doslechu, ale s určitostí se to říct nedá, protože to může být jen obyčejný protiletecký kryt pro zaměstnance základny. Je zbytečný tam teď posílat lidi, jen tak chcípnout. Zkontroluj to podzemí a dej mi vědět, jestli stojí za to tam vyslat sběrače. Dobře ti zaplatím. Bereš to ?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "Takže říkáš, že je to velitelský úkryt? Pověsti nelžou, co... Zatraceně! Pošlu tam dnes své muže, ať to tam prohlédnou. Mohlo by tam být tolik cenných věcí! Každopádně, tady máš svou odměnu. Jak jsem slíbil.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Přežít a opustit lokaci", "5ee8eea538ca5b3b4f3c4647": "Najít na Reserve podzemní bunkr", "5ee8eecc0b4ef7326256c660": "Najít na Reserve řídicí místnost v podzemním bunkru", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Jsi tady právě včas, žoldáku. Ty jsi přesně ten, koho potřebuji. Pamatuješ si ten mizerný velitelský bunkr, co jsi našel pod tou základnou Reserve? Dlouhý příběh, zkrátím to. Moji kluci se tam šli podívat a ošklivě si naběhli. Vypadá to, že to tam postavili s důrazem na vysokou úroveň ochrany: filtry, generátory a všechny přístupy jsou blokovaný silnými hermetickými zámky - jak podzemní pevnost. Ale raiderům se povedlo ty zámky otevřít a zakopali se tam jako sysli. Moji lidé se tam dostali do vážných potíží a víc jak polovina tam zdechla. Ale víš, jak to bývá... Teď mě to do prdele ještě víc láká. Takže prostě, moji chlapi už tam nepůjdou, ale pokud bys našel bezpečnou cestu... Jsi zkušený chlapík, takže potřebuji, abys na těch svých měkkých tlapkách tiše zjistil, kde jsou všechny vchody. Kluci říkali, že vchody mají ty velké hermetické dveře. Takže je na tobě, abys našel cestu dovnitř.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Vítej zpět, poslouchám. Aha, takže takhle to je... Dveře jsou přímo tady, že? Prostě je nakresli přímo na mou mapu, neboj se. Takže tenhle bunkr spojuje téměř všechna zařízení základny? Kurva, jak pohodlný, mohl jsi procestovat půlku základny všem pod nosem. Teď už je jasné, proč tam ti raideři jsou, můžeš odtamtud ovládat celou základnu. Díky! Tady máš odměnu.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Přežít a opustit lokaci", "5ee8ec5ed72d953f5d2aabd1": "Najít hermetické dveře vedoucí do nemocnice (Bílý Střelec)", "5ee8ecd75eb3205dae135d17": "Najít jedny ze dvou hermetických dveří vedoucích do budovy akademie (Černý Střelec)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "Takže je to tak, že je to hned v prvním patře? Kolikrát tam moji lidé byli a nic nenašli. Dostal jsi se dovnitř? Našel jsi tam něco zajímavého? No, na tom nezáleží, stejně tam pošlu své hochy, aby to zkontrolovali. Tady máš odměnu, zasloužíš si ji. Děkuji.", "5f0488c590eea473df674002": "Najít Sanitarovu kancelář ve zdravotním středisku", "5f04983ffbed7a08077b4367": "Přežít a opustit lokaci", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Zdravím tě, bojovníku. Mám pro tebe úkol. Zkrátka a dobře, ztratil jsem kontakt s jednou ze svých skupin, a to už je docela dlouho. Když se to posralo, poslal jsem je na Woods pro nějaký náklad. Obávám se, že je přepadli, když jsem se s nimi naposledy spojil, hlásili, že se k nim z kopců blíží USECové. Vyšetři to, zjisti, jestli někdo přežil. Jejich konvoj měl BRDM, dodávku Bukhanka a nějaký náklaďák, už si nepamatuju jaký přesně. Myslím, že se USECové museli usadit někde poblíž, takže zůstaň ve střehu. Najdi můj konvoj a tábor těch USECů, pokud tam opravdu je. Rozchod.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Takže moji chlapci to nezvládli a transporty byly vykradeny.. Navíc říkáš, že je poblíž USEC tábor? To je na nic, ten náklad byl velmi důležitý. No, svou část dohody jsi splnil, takže tady je odměna. Můžeš si odskočit.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Najít na Woods Praporův zmizelý konvoj ", "5fd9fad9c1ce6b1a3b486d05": "Najít dočasný tábor USECů", "5fd9fad9c1ce6b1a3b486d0d": "Přežít a opustit lokaci", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "Vzduch v celém lese se chvěl od zuřivé přestřelky. Ten šmejd dostal, co si zasloužil, a to jen díky tobě. Zde je odpovídající odměna za takový čin. Nestyď se, můžeš si koupit i nové pušky.", "600303250b79c6604058ce30": "Eliminovat Shturmana", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Najít a prozkoumat na Reserve druhý IFV LAV III", "608925d455f4ac386d7e7fc4": "Označit první IFV LAV III", "608930aa1124f748c94b801e": "Najít a prozkoumat na Reserve tank T-90", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Skvěle, skvěle, skvěle! Vezmi si mé peníze! Mým jediným požadavkem je, abys o této dohodě nikomu neřekl ani slovo.", "60929ad46342771d851b827a": "Získat balíček s ovládacím panelem velitele T-90M na Reserve", "60929afc35915c62b44fd05c": "Předat balíček", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Získat v kancelářích velitelského bunkru na Reserve vojenské dokumenty №3", "60ae0f0586046842a754e21e": "Předat druhé dokumenty", "60ae0f17b809a4748759078c": "Předat třetí dokumenty", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Dobrá práce. Doufám, že dostali co si zaslouží a pochopili, že nemohou jen tak zabíjet moje lidi. Tady je tvá odměna.", "608bffeee0cc9c2d4d2ccb29": "Eliminovat Raidery ve velitelském bunkru na Reserve", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Předat první záznam", "60ae12ffb809a474875907aa": "Získat na Reserve lékařský záznam č. 2", "60ae134cabb9675f0062cf6e": "Předat druhý záznam", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "Tak to má vypadat! Skvěle. Děkuji, později si to důkladně prostuduji. Tady je vaše odměna, jak jsem slíbil.", "6092942fb0f07c6ea1246e3a": "Získat na Reserve integrovaný navigační systém MBT", "6092947635915c62b44fd05b": "Předat navigační komplex", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "Takže ten východ funguje? Vynikající. Stále tvoji odměnu připravuji, tak mi řekni něco více o otevíracím mechanismu dveří toho exitu.", "608a94101a66564e74191fc3": "Najít na Reserve tajný nenapájený východ", "608a94ae1a66564e74191fc6": "Odejít exitem", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Úžasné, moji chlapci se právě vrátili z raidu zdraví a nezranění, ani jeden škrábanec. Tady je vaše odměna!", "608ab22755f4ac386d7e7fdc": "Eliminovat Scavy v podzemním skladišti na Reserve", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Zkontrolovat druhou zbrojnici v severních kasárnách (Bílý Pěšák) na Reserve", "608bd2465e0ef91ab810f98a": "Zkontrolovat služební místnost v západních kasárnách (Černý Pěšák) na Reserve", "608c187853b9dd01a116f480": "Přežít a opustit lokaci", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Přežít a opustit lokaci", "60a4dc7e4e734e57d07fb335": "Označit na Reserve první skupinu palivových nádrží pomocí značkovače MS2000", "60b90232ec7c6f5eb510c195": "Označit na Reserve druhou skupinu palivových nádrží pomocí značkovače MS2000", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Je to hotové? Vzduch se teď zdá být svěžejší. Jen je škoda, že jsme těm grázlům nemohli vysvětlit jinak.", "608a8356fa70fc097863b8f8": "Eliminovat Scavy v oblasti kasáren na Reserve", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "To jsou dobré zprávy. Svět je hned lepší místo. Doufám, že tě ten parchant netrefil tím svým kladivem?", "60c0d187938d68438757cda2": "Eliminovat Tagillu", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Najít během raidu Tagillovu čepici BOSS", "60cfa5a85f9e6175514de2e3": "Předat Čepici BOSS", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Eliminovat PMC na Interchange", "60ec0b1871035f300c301acd": "Eliminovat operátory PMC v The Lab", "60ec2b04bc9a8b34cd453b81": "Během plnění úkolu nesmíte zemřít nebo opustit raid (Status: Zemřel, Opustil, Ztracen, Proběhl)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Eliminovat operátory PMC na Ground Zero", "65e19abadf39d26751b3bb1e": "Eliminovat operátory PMC na Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Eliminovat PMC na základně scavů na Customs", "60ec1e72d7b7cb55e94c1764": "Eliminovat PMC na základně scavů na Woods", "60ec2229fd1bf4491c4e4552": "Eliminovat operátory PMC u zdravotního střediska na Shoreline", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Nooo, to je mnohem lepší. Děkuji, bojovníku. Kluci říkají, že už se to uklidnilo, takže to vypadá, že ti pitomci tvůj vzkaz pochopili.", "60e8650e5d67b234af3d3926": "Eliminovat Scavy do hlavy", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Zatraceně... Ty jsi je dostal všechny sám? Tak to máš teda koule. Něco na těch psychouších není v pořádku, to ti povídám...", "60e82c12fd1bf4491c4e4547": "Najít během raidu neobvyklé nože", "60e82c5926b88043510e0ad7": "Předat nože", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Předat LEDX", "60f028ca86abc00cdc03ab89": "Najít během raidu Hromady léků", "60f028f85caf08029e0d6277": "Předat hromady léků", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Najít během raidu Láhve vitamínů OLOLO", "62a70168eb3cb46d9a0bba7a": "Předat vitamíny", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Úžasné, žoldáku. Teď bude pro mé lidi mnohem snazší operovat na tomto místě! Děkuji ti za odvedenou práci.", "60e745d6479eef59b01b0bdc": "Eliminovat Raidery na Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Skvělé, báječné! Klienti nám už poděkovali za úspěšnou misi. Dobrá práce, žoldáku.", "60e8174d0367e10a450f7818": "Předat předmět nalezený v raidu: Psí známka BEAR (Úroveň 50+)", "60e81795479eef59b01b0bdf": "Předat předmět nalezený v raidu: Psí známka USEC (Úroveň 50+)", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Najít během raidu Vojenské bezdrátové vysílače COFDM", "60e7449875131b4e61703b7e": "Předat programovatelné procesory", "60e744c9d1a062318d3d2262": "Předat vysílače signálu", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Najít během raidu Zabezpečené vojenské flash disky", "62a7019ea9a0ea77981b57da": "Předat flash disky", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Skvělé, to jsou výsledky, které jsem potřeboval, podejte mi notebook. Díky, žoldáku.", "60e740b8b567ff641b129573": "Eliminovat PMC na vzdálenost vyšší než 100m", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Skvělé, moc ti děkuji, příteli. Klient již ohlásil, že balíčky obdržel. Nemyslím si, že je to od nich poslední objednávka, takže s tebou počítám i příště.", "60e84ba726b88043510e0ad8": "Skrýt zaměřovač Trijicon REAP-IR pod žlutý jeřáb u staveniště na Customs", "60e85b2a26b88043510e0ada": "Skrýt zaměřovač Trijicon REAP-IR za kontejnerama na odpadky u \"nové\" benzínky na Customs", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respekt, bratře, hodně jsi mi pomohl! Kdybys viděl nějaké nebezpečné chlápky v Ultra, dej mi vědět. Možná tě budu potřebovat, aby ses s nimi znovu vypořádal.", "60e73ee8b567ff641b129570": "Eliminovat PMC uvnitř obchodního centra ULTRA na Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Předat whisky", "60f028268b669d08a35bfad8": "Najít během raidu Kanistry s vyčištěnou vodou", "60f0284e8b669d08a35bfada": "Předat Supervodu", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Najít během raidu Láhve piva Pevko Light", "62a70110eb3cb46d9a0bba78": "Předat pivo", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Eliminovat Shturmana", "60e7261eb567ff641b129557": "Eliminovat Glukhara", "60e72629465ea8368012cc47": "Eliminovat Sanitara", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Tady jsi, rychlíku. Potěšil jsi starého muže a doufám, že jsi sám vyvodil závěry. Ty sám jsi zbraň a monolit, ne množství oceli, které máš na sobě.", "60e729cf5698ee7b0505743c": "Eliminovat na Woods PMC bez použití balistické vesty nebo helmy", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Odvážné rozhodnutí, žoldáku.", "60effdac12fec20321367038": "Předat Zabezpečený kontejner Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Poslyš, bratře, můžeš mi pomoct najít správné informace o jednom chlápkovi? Už opustil město. Proč ho nemůžu najít sám? Protože se jmenuje Ivan Ivanov. Vážně, nedělám si srandu. Po celé zemi je jich dvě stě tisíc s tímhle jménem. Kdybychom našli jeho bývalou adresu v Tarkově, mohli bychom ho prověřit v databázi. Podívám se, co o něm najdu. Myslím, že kdysi vedl bar, že? Ale nevím, jak se ten bar jmenoval... Poslyš, nevím, jak zjistíš, který bar je jeho. To mi připomíná, že se věnoval baletu. To si nedělám srandu. Každou sezónu chodil do Mariinského. Dokonce se pokoušel uspořádat něco v našem místním divadle, ale lidi nebyli zrovna nadšení z holek v tutu. Konkrétněji? Brácho, já už jsem kurva konkrétní! Věřím ti, použij svou intuici.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Našel jsi bar i adresu toho chlapa? Tady, napiš mi to. Jsi lepší než ti věštci v televizi, co hledají pohřešované lidi. Chceš být detektivem, až tohle všechno skončí, brácho? Dám ti klobouk Poirota, slibuju.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Najít na Streets of Tarkov byt baletmistra", "63a7daae04d3dc28a52a2109": "Přežít a opustit lokaci", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Pojď sem, můj drahý zaměstnanče. Je ve městě všechno v pořádku? Chybí mi několik mých týmů. Nejdřív jsem si pomyslel, proč je někdo tak drzej a snaží se mi zavřít firmu? Ledaže by si se mnou zahrávali nebo tak něco. Nejdřív jsem předpokládal, že je to ten grázl z Lighthouse. Ale pak mi přišla zpráva od Seva Shkety. Psal, že je drží v nějakém soukromém vězení. Slyšel jsi o tom? Je schovaná někde ve starých činžácích. Kravaťáci tam vyhazovali svoje rivaly a kohokoli je snazší držet pod zámkem než na svobodě. Upřímně řečeno, já bych je prostě zabil, kdyby to byl takový problém. Ale vypadá to, že je někdo raději drží ve vězení, než aby ty hajzly, co je obtěžují, prostě sejmul... Jde o tohle: Shket byl jediný z té skupiny, kdo utekl, ale teď je na útěku a od té zprávy, co poslal, se neozval. Ani nám neřekl, kde ty kluky najdeme, ten krysí ksicht. Kluci si za to můžou sami, že je chytli jako nějaký svině, a já bych je za takovej průser poslal do prdele. Ale to, že se mě někdo snaží ojebat, je nehorázný. Tak jo, už dost těch keců. Zjisti, kde mají moje kluky.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Do hajzlu. Proč by je tam někdo držel? Pochopil bych, kdyby mi poslali dopis, že zabijou moje lidi, když nezaplatím a tak. Sériový vrah nebo tak něco? Každopádně se za chvíli zastav, zjistím, co se děje.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Přežít a opustit lokaci", "63a7d767f32fa1316250c3da": "Najít kde na Streets of Tarkov byla pohřešovaná skupina držena v zajetí", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "Je to opět stejný příběh, nová nahrávka, nyní s podivným symbolem. Co se to sakra děje? Obětují se lidé. Komu? Proč tolik otázek, ale žádné odpovědi. Pořád si říkám, že je to, to nejhorší čeho se dočkáme, ale pokaždé se ukáže, že se mýlím. Bojovali jsme s drancovníky, kteří mysleli jen na peníze. Vrahy, kteří chtějí střílet i nevinné. Ale tam alespoň chápu motivaci, zvíře v jejich duši porazilo člověka. Ale s jakým cílem se lidé stávají těmito... Tohle nedokážu pochopit. Takže, vojáku, já je budu hledat v lese, ty udělej totéž ve městě. Někde tam musí být jejich úkryt. Hledej stejný symbol, určitě ho ještě uvidíme.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Našel jsi to? Kde? Byl tam někdo? Co ten symbol znamená? Ještě více otázek...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Přežít a opustit lokaci", "63a7d6d61f06d111271f5aeb": "Najít na Streets of Tarkov místo setkání kultistů", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Zdravím tě! No, tak se do toho dáme, těšíš se? Úkol je zcela specifický, musíme otestovat tuhle ruskou hračku pro boj zblízka, aby podmínky odpovídaly reálnému boji v městském prostředí. Mám zákazníky, kteří nevěří v účinnost této hračky... Můžeš změnit jejich názor?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Dobrá? Funguje to dobře? Hodí se pro boj zblízka v městském prostředí?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Eliminovat na Streets of Tarkov operátory PMC pomocí SR-2M s tlumičem a kolimátorem KP-SR2", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Některé jsou stále neporušené. No, to je super, půjdeme je navštívit. Tvoje odměna.", "6572e876dc0d635f633a5718": "Najít první skupinu bankomatů na Klimovi ulici na Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Prozkoumat obchod Sparja v hotelu Pinewood", "6572e876dc0d635f633a571e": "Prozkoumat obchod Goshan v Concordii", "6572e876dc0d635f633a5720": "Předat Hovězí klobásu Salty Dog nalezenou v raidu", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Bankomat č. 11", "65733403eefc2c312a759df2": "Bankomat č. 12", "65733403eefc2c312a759df4": "Bankomat č. 14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Bankomat č. 15", "65733403eefc2c312a759dfa": "Bankomat č. 16", "65801ad655315fdce2096bec": "Odhalit tajemství úspěchu firmy", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Našel jsi to? Dobrá práce, teď to sem přines! A vezmi si odměnu, zasloužíš si ji.", "6573397ef3f8344c4575cd88": "Najít katastr nemovitostí na Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Najít a získat dokument transakcí nemovitostí Tarkova", "658167a0e53c40116f8632fa": "Předat získané informace", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Jo, už jsem ty zvěsti slyšel. Lidi ty pankáče brzy přitlučou ke zdi. Odvedl jsi skvělou práci. Tady máš odměnu.", "65734c186dc1e402c80dc1a2": "Eliminovat cokoliv na Streets of Tarkov zatímco na sobě máte čepici Bomber a RayBench Hipster Reserve brýle", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Skrýt v holičství na Streets of Tarkov čepici Bomber", "657356d0a95a1e7e1a8d8d99": "Skrýt v holičství na Streets of Tarkov brýle RayBench Hipster Reserve", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "Je to v té zasraný bažině? To vysvětluje tu zasranou cenu. Vyndat ho odtamtud a vyčistit ho by stálo víc! Dobře, tady máš, to je za pomoc.", "65802b627b44fa5e1463889a": "Najít Ragmanovo SUV na Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Přežít a opustit lokaci", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Najít a získat plakát \"Bison VS Undertaker\" v táboru USEC na Woods", "664bbb5f217c767c35ae3d51": "Najít a získat plakát \"Killa and Tagilla\" v táboru USEC na Woods", "664bbb73c71d456fd03714ca": "Najít a získat plakát \"Easy Money\" v táboru USEC na Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Dobrá práce! Kaban a Kollontay už se bouří a hledají toho, kdo nařídil vraždu. Přijdou na to a uvědomí si, že překročili hranice. Tady, tohle je tvá odměna.", "660d5effb318c171fb1ca234": "Eliminovat na Streets of Tarkov Kabanovu ochranku", "660d5f5a99b1db9725ca1543": "Eliminovat na Streets of Tarkov Kollontayovu ochranku", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Vyhrát 6 zápasů z 10 v hodnoceném režimu v Aréně", "662bb24b3d34cd5e19206e63": "Podmínka selhání: Prohrát 5 zápasů", "6633a85e347a2a2b4051a26b": "Předat rubly z EFT", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Podmínka selhání: Prohrát 5 zápasů", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "Takže jsi viděl mrtvolu. Prohledal jsi ji? Prohledal jsi okolí? Jen poukazuji na to, že jsi slepý. Pokud vím, ten šampion si vedl deník. Jo, jako nějaký puberťák, ale to vlastně hraje ve tvůj prospěch.\n\nProč se tam nejdeš podívat znovu a nepodíváš se blíž? V tom deníku musí být víc informací o Refovi, nějaká špína na něj. Udělej to, jestli nechceš být v Aréně postradatelný.\n\nA ještě něco: pokud mi přineseš nějaké informace o Refovi, které budou hodny mého času, dobře ti zaplatím.", "66058ccf06ef1d50a60c1f48 failMessageText": "Chceš zůstat pod Refovou sukní? Tak to udělej ty.", "66058ccf06ef1d50a60c1f48 successMessageText": "Dobrá práce. Jsem rád, že jsi na to měl koule.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Najít a získat kompromitující informace na Refa", "664fd7f0837ee02ad4c8e658": "Předat nalezené informace", "66563f0a2684eee09e8dcd86": "Najít úkryt starého šampiona", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "Telefon je padělek. Někdo opravdu chtěl, aby se na něj Skier a jeho muži zaměřili. Vypadá to, že hra má nového hráče. Podíváme se na to.", "660ab9c4fcef83ea40e29efe": "Předat mobil", "660ac159205fdc5a2afb1665": "Najít a získat telefon Unheardů na Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Prodat jakoukoliv zbraň Skierovi", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "Takže je to uvnitř prázdné. To je dobře: pokud tam nejsou těla, je šance, že jsou uprchlíci jsou naživu. Znáš ten princip superpozice, že?\n\nDobře, zpátky k věci. Prošel jsem ten disk. Bylo tam heslo [bmV3ZGF3bi4u] s nápisem \"důležité\". Myslím, že to dokážeš vyřešit.", "6616a9a14df4f14a474c92ba": "Najít a získat pevný disk uvnitř úkrytu v chatě na Lighthouse", "6616a9a98a97f72b921665f2": "Předat disk", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Najít a získat pevný disk uvnitř úkrytu v chatě na Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "Takže je to uvnitř prázdné. To je dobře: pokud tam nejsou těla, je šance, že jsou uprchlíci jsou naživu. Znáš ten princip superpozice, že?\n\nDobře, zpátky k věci. Prošel jsem ten disk. Bylo tam heslo [bmV3ZGF3bi4u] s nápisem \"důležité\". Myslím, že to dokážeš vyřešit.", "6616a9fdfd94e03533038dab": "Najít a získat pevný disk uvnitř úkrytu v chatě na Lighthouse", "6616a9fdfd94e03533038dac": "Předat disk", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Najít a získat pevný disk uvnitř úkrytu v chatě na Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Předat vybavení", "6669769ff0cb253ff7649f27": "Najít během raidu Nosič plátů Crye Precision AVS (Edice Tagilla)", "666976ab1a6ef5fa7b813883": "Předat vybavení", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Najít během raidu Taktickou vestu LBT-1961A (Edice Goons)", "666977849154974010adb5ec": "Předat vybavení", "666977bfe975ac480a8f914e": "Najít během raidu Nosný systém Mystery Ranch NICE COMM 3 BVS (Kojotí)", "666977ca5fa54985173f8e2c": "Předat vybavení", "666977f2dd6e511e9f33005a": "Najít během raidu Nosič plátů Crye Precision CPC (Edice Goons)", "666978023255d2720cbdf76d": "Předat vybavení", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandito! Jak jde život? Nějaký ptáček mi řekl, že v obchodním centru Ultra na Interchange je speciální časopis. Psali o naší ruské videohře, kterou uznávají po celém světě! Kluci asi opravdu přišli se skvělým konceptem!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Tohle je vítězství! Časopis vyhrál jackpot! Vypadá to jako skutečná historická sračka.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Najít a získat speciální edici herního časopisu na Interchange", "667a95972740eaeca1ecda21": "Předat nalezený předmět", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "Myslím, že začínám chápat, proč lidé sledují tyhle streamy. Je to návykový!", "6667579086472aaf0bf7bef5": "Předat předmět", "666757c530b9b77ff2d9ac58": "Najít a získat pevný disk ve starém domě na Shoreline", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Nainstalovat WI-FI kameru na okraji hory na Woods", "667bf840981b1c594af358ce": "Nainstalovat WI-FI kameru u věže přístavu na Shoreline", "667bf845dc371ee9869f185e": "Nainstalovat WI-FI kameru v koridoru kanceláří ve Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Výborně! Prý se o našem malém stěhování dozvěděl i okolní svět, haha!", "667442da875be5fb415df535": "Umístit zlatého kohouta u Praporovy WI-FI kamery na Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Umístit zlatého kohouta u Praporovy WI-FI kamery na Shoreline", "66828746efaecf435dde20ca": "Umístit zlatého kohouta u Praporovy WI-FI kamery na Factory", "66d080533a3c33d823a3477d": "Umístit zlatého kohouta u Praporovy WI-FI kamery ve Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Ahoj, příteli. V poslední době to pro mě bylo trochu náročné. Od dnešního dne do doby, než vyřeším některé naléhavé záležitosti, dočasně zvýším ceny svých produktů a služeb. Můj přítel žoldák dává dohromady tým, který se chystá na výpad do podzemní laboratoře, a potřebuje spolehlivou palebnou sílu. Můžeš pomoci? Vidím, že o AR-15 víš tolik, co já, takže jsem se rozhodl ti to svěřit. Potřebuji M4A1 s celkovým zpětným rázem do 300 a ergonomií alespoň 70. Není to snadné, to vím. A nezapomeň na EOTech XPS 3-0, protože klient odmítá použít jakýkoli jiný zaměřovač.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Mnohokrát díky. Myslím, že mě to na nějakou dobu udrží na správné cestě.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Upravit M4A1 dle požadované specifikace", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "Nic jsi během cesty neztratil, že? Dobře, teď je čas poslat inženýry, aby udělali měření. Brzy zjistíme, co ty tovární stěny skrývají. Díky za tvou pomoc, příteli.", "66aa74571e5e199ecd094f1b": "Použít přesun z Customs do Factory (v jednom raidu)", "66aa74571e5e199ecd094f1e": "Eliminovat Scavy ve Factory (v jednom raidu)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Najít a získat balíček přesných nástrojů v laboratoři na Customs", "66ab97d56cb6e3bfd7c79fbc": "Skrýt balíček v laboratorním skladu ve Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "Takže jste ji skutečně našli? Výborně! Jaký je průchod, je bezpečný? Říkáte, že je v havarijním stavu? No, zdá se, že tato příležitost nám dlouho nevydrží. Pošlu své muže, jakmile to bude možné.", "66aba85403e0ee3101042878": "Najít na Streets of Tarkov průchod do The Lab (v jednom raidu)", "66aba85403e0ee310104287a": "Použít přesun ze Streets of Tarkov do The Lab (v jednom raidu)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Najít v The Lab průchod na Streets of Tarkov (v jednom raidu)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Prozkoumat serverovnu v The Lab (v jednom raidu)", "66b0910951c5294b9d213918": "Prozkoumat nebezpečnou kopuli v The Lab (v jednom raidu)", "66b10eef0951e90ec383850b": "Prozkoumat řídící místnost v The Lab (v jednom raidu)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "Kupující mi řekl, že je vše na svém místě. Odměnu jsi si zasloužil a můžeš očekávat, že ti moji muži pomohou na nových cestách.", "66abb32aeb102b9bcd088d62": "Použít přesun z Ground Zero na Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Použít přesun ze Streets of Tarkov na Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Použít přesun z Interchange na Customs", "66abb3ac416b26ade4a1446c": "Použít přesun z Customs do Factory", "66abb3bf228ace5ca9f3d745": "Použít přesun z Factory na Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Nainstalovat WI-FI kameru u medvěda, který sedl do hořícího auta na Woods", "66debf2e1e254957b82711ff": "Nainstalovat WI-FI kameru u židle vzhůru nohama na Shoreline", "66debf30802386a45d0adb60": "Nainstalovat WI-FI kameru v nepříliš osamělé koupelně na Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "Žoldák přišel pro svůj nový úkol! Říká se, že Tarkov se stal ještě nebezpečnějším. Kdo by to byl řekl, že? Někdo začal cílit na určité oblasti pomocí minometné palby.\n\nLepší je jít se podívat, co se děje. A jo, to znamená jít přímo do těch oblastí zasažených minometem. Jo. Takže jsme si všimli bombardování v přírodní rezervaci, na vojenské základně, v celním úřadu a na pobřeží. Tak na to vyraž.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Naživu a zdráv, to je skvělé. Takže se podívejme, s čím tu pracujeme. Někdo ukradl minomety a teď zasahují různé lokace těsně před přistáním zásob.\n\nVelmi podezřelé. Tito místní pyrotechnici si jistě nemohli zajistit komunikaci s vnějším světem, že? Každopádně, zatím můžeme jen sledovat.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Navštívit oblast pod aktivním minometným útokem na jakekoliv specifikované lokaci (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Dobře, dostal jsem zprávu o velkém průseru. Možná to není tvoje chyba, ale je to vedlejší. Ti kreténi v čističce vody zachytili několik beden s přenosným EB vybavením.\n\nV tuhle chvíli jsou samozřejmě k ničemu, ale nenechám je takhle krást vládní majetek.\n\nPro bojovníka, jako jsi ty, je ten úkol splnitelný. Jdi do čističky a přines mi tyhle EB věcičky. A ano, ty krysy je třeba utratit.\n\nSamotné EB už byly pravděpodobně předány jejich velitelům, takže to vybavení od nich zaručeně dostaneš. Předpokládám, že za předpokladu, že nezemřeš.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Skvělé, nové hračičky dorazily. Moji kluci je budou milovat. V dnešní době je třeba být připraven na všechno a taková ochrana rozhodně není zbytečná.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Předat předmět nalezený v raidu: GARY ZONT přenosné elektronické bojové zařízení", "66e19f359fee1e54e0e01f7c": "Eliminovat Rogues", "66e19f7d534a8ff2bb7e9f89": "Najít a eliminovat Big Pipea", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "Celá tahle věc s obchodníkem mi jde docela dobře, nemyslíš? Kdybych neměl rozum, už dávno bych byl v téhle díře mrtvý. Každopádně se těmi zprávami budu zabývat později, ne poprvé.\n\nPrávě teď musím vybavit chlapy vyslané mimo mé území. Přineste jim to nové vybavení, které jsme našli. Část ti dám, ale zbytek si musíš obstarat sám - už víš, kde hledat. Ne, tváří v tvář se s nimi nesetkáš. Prostě ty předměty schovej na určené místo.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Dobře, teď, když jsou v bezpečí před vzdušnými hrozbami, bude jejich bojová mise bez problémů splněna.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Skrýt přenosné elektronické zařízení GARY ZONT v potopeném kostele na ostrově na Woods", "66e071c8a9e80c3f25bb1bad": "Skrýt náhradní díly pro radarové stanice v hangáru na staré pile na Woods", "66e0735089627301d900ef1d": "Skrýt na Shoreline přenosné elektronické zařízení GARY ZONT ve věži meteorologické stanice", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "Už bylo na čase, aby jsi se zastavil. Tak sis všiml těch nočních ďáblů, kteří vylézají odevšad, že? Vyzbrojují se mnohem lépe, co? Jako by s nimi někdo opravdu pracoval. Shora, víš? \n\nMěli bychom se podívat, co mají ti bastardi za lubem. Ostatně tím líp, když se podaří snížit jejich počet. Jen buď opatrný.\n\nMezi scavy se povídá, že v noci můžeš narazit na nepřemožitelnou bestii. Prý loví a požírá lidi.\n\nVzpomínám si na východní příběh o takovém démonovi, přezdívalo se mu, ehm... \"Oni\". Dřív bych tyhle příběhy nevytahoval. Ale teď se určitě něco chystá a do hlavy se mi vkrádají temné myšlenky.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "Co jsi zjistil? Ani já jsem nezahálel, když jsi byl pryč, sešel jsem se s Partyzánem. Říkal, že připravují zvláštní rituál, a proto vycházejí ze svých doupat. Všichni se zmiňují o nějaké \"Noci kultu\".\n\nNevím, o co jde, ale pro Tarkov je to rozhodně špatná zpráva. A něco mi říká, že je tu někdo, kdo to celé organizuje. Ten démon se v našich končinách neobjevil jen tak bezdůvodně.\n\nAle včera v noci jsem něco viděl i já. Jeho tvář byla rudá, jakoby hořela. Popadl jsem zbraň a zamířil, ale jen jsem zamrkal, nikdo tam nebyl. Možná halucinace starého muže...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminovat kultisty", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Dobře, mám pro tebe dobrou zprávu.\nPartyzánovi se podařilo odposlechnout rozhovor kultistů předtím, než je zabila past z nástražných drátů.\n\nHarbinger, jak mu říkají, má celou tuhle přehlídku teroru na starosti. Slíbil jim, že když udělají, co jim řekne, dostanou nový dar neslýchaného. Co to sakra je? Nemám ponětí, co to znamená. Ale jsem si jistý, že když je necháš provést ten zatracený rituál, bude mezi slušnými lidmi nespočet obětí. Lidé začali utíkat ze Streets of Tarkov, prý je tu nějaký duch loví duše.\n\nNeznáme podrobnosti této záhady, ale určitě to s celou věcí souvisí! A víme, kdo za tím stojí. Musíme zlikvidovat Harbingera, a pokud v jeho blízkosti najdeš nějaké strašidelné svinstvo, zkus ho zakopat hluboko do země. Možná to udrží kultisty na uzdě.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "O ty parchanty je postaráno? Stejně patří do pekla. Doufejme, že se zbytek kultistů stáhne a vrátí se do svých doupat.\n\nZvláštní je, že Zryachiy v poslední době taky chybí. Zajímalo by mě, jestli sestoupil z Lighthouse, aby dokončil rituál a vypustil ty démony na denní světlo.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Najít a eliminovat Oniho", "66e3eb4c4a5359f2db0be81a": "Najít a eliminovat Harbingera", "66e3eb65e385f94b38f061d7": "Najít a eliminovat Ghosta", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "Myslím, že teď, když jsi zpátky, vidíš, co se děje. Nejenže se ti surovci nerozprchnuli, ale začali ještě intenzivněji organizovat svoje přípravy!\n\nPrávě jsem dostal zprávu, že chudáka Ryzhyho zajal sám Zryachiy. Prý bude hlavní obětí. To znamená, že nám dochází čas!\n\nPartyzán je stále v lese a loví kultisty, ale ani on to sám nezvládne. Teď je na nás, abychom tu verbeš pročistili vlastníma rukama. Pokud nebude nikdo, kdo by rituál provedl, možná bude po všem.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Ani hnout, škůdče! To jsi ty. Začínají se objevovat i u nás v lesích. Pár takových návštěvníků jsem měl těsně před tebou.\n\nŘíkáš, že jsi vyčistil Tarkov od kultistů? No, s takovými ztrátami už brzy nic nezmůžou. Na Harbingera zapomenou. Nevím však, jestli budu moci nějakou dobu klidně spát.\n\nDíky za pomoc. Bez tebe bych to nezvládl.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminovat kultisty na Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminovat kultisty na Lighthouse", "66e3ecad063ef452798d369d": "Eliminovat kultisty na Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Dobře, chápu souvislost, takže jsi udělal všechno správně... Aha, jsou chráněné proti DDoS. Ale co když se k nim dostaneme odsud vy kreténi? Hm, tady přichází na řadu pan Kerman.\n\nJsi ještě tady? Omlouvám se, ale už nemám čas si povídat. Kerman právě poslal svá data, říkal, že nedovolí, aby projekty TerraGroup zničily naše město.\n\nZatímco on sejme zabezpečení, já musím naformátovat disky, abychom Terapeutce dali všechno, co se dá zjistit.", "670411a2cded018840f5b599": "Najít požadovaný počítač v kanceláři TerraGroup Cardinal na Streets of Tarkov", "670411d819aafd130ebc4bb8": "Nainstalovat flash disk do počítače a stáhnout data", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "Jak se opovažuješ! Můj kolega rozhodujícím způsobem přispěl k záchraně města a nezaslouží si takový osud! Nevím, jak ti mohu po takovém nehorázném jednání věřit.", "67040cae4ac6d9c18c0ade2c successMessageText": "Rozhodl jsi se správně. Vím, že se tě Jaeger pokusil obelstít, abys ublížil mému kolegovi.\n\nAle ujišťuji tě, že tato verze léku byla nejbezpečnějším způsobem, jak vyčistit město od viru...", "6706a4ddec997e861c3f6f04": "Rozšířit vakcínu na Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Rozšířit vakcínu na Shoreline", "6706a51fa60dfe2fb85275ed": "Rozšířit vakcínu na Woods", "6706a52083168d9e8ed303d8": "Rozšířit vakcínu na Customs", "6706a61a5fb5eedf15ec6234": "Rozšířit vakcínu na Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Rozšířit vakcínu na The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Počkej! Ty jsi taky nevěděl, že tento \"lék\" vyvinula se Sanitarem?\n\nVsadím se, že udělali zjednodušenou verzi, aby mohli všechny nemocné lidi bez mrknutí oka zabít, co? Tohle přeci nedopustím.\n\nZnám její povahu... Určitě vyvinula i méně smrtící verzi léku pro vlastní potřebu nebo na prodej.\n\nale jestli na ní pracovala s tímhle grázlem, znamená to, že si ji nechává on! Potrestej toho parchanta a získej skutečnou verzi drogy.\n\nKdyž ne samotnou drogu, tak aspoň najít recept... Odtud to nejspíš vyřešíme!", "67040ccdcc1f3752720376ef failMessageText": "Jak hloupý musíš být, abys jí věřil, i když jsem ti doslova vyklopil pravdu? Krev těch, kteří zemřou na tuto vakcínu, bude na tvých rukou, chlapče.\n\nAž k tobě přijdou ve snu, uvědomíš si, co jsi provedl.", "67040ccdcc1f3752720376ef successMessageText": "Všechno je hotovo, že? Těmto \"podnikatelům\" jsme to pořádně natřeli!\n\nTo by mělo té babě připomenout, že složila Hippokratovu přísahu.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Najít a získat pravou vakcínu v Sanitarově kanceláři na Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Najít a eliminovat Sanitara", "6719135cfab45272c32a8c01": "Předat nalezený předmět", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Tak snad už je to konečně za námi! Záleží jen na tom, že sis vybral správnou stranu a máš čisté svědomí.\n\nLék by měl určitě fungovat, když si ho vyrobili sami, jen musíme ještě chvíli počkat.", "6707e6614e617ec94f0e63e0": "Rozšířit pravou vakcínu na Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Rozšířit pravou vakcínu na Shoreline", "6707e6614e617ec94f0e63e3": "Rozšířit pravou vakcínu na Woods", "6707e6614e617ec94f0e63e4": "Rozšířit pravou vakcínu na Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Prodat jakékoliv předměty Ragmanovi", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Prodat jakékoliv předměty Praporovi", "675196dff77c0b8436ec1ef5": "Prodat jakékoliv předměty Peacekeeperovi", "673f629c5b555b53460cf827 acceptPlayerMessage": "Dobře, zkusím si s nimi promluvit.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminovat Scavy na Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Použít přesun z Reserve na Woods", "674606f1c63637e54bede3a6": "Použít přesun z Woods na Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Přežít a odejít z Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Najít a získat Praporův balíček na Woods", "6756bcb3f93f4c1fc2b2d685": "Přežít a opustit lokaci", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Slyším hlas temnoty", "6514134eec10ff011f17cc26 description": "Eliminovat 15x Knighta jako PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Dobrá trefa", "651413e9c31fcb0e163577c9 description": "Eliminovat 15x Zryachiyho jako PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/en.json b/Libraries/SptAssets/Assets/database/locales/global/en.json index d9f6edf4..e4a4af4e 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/en.json +++ b/Libraries/SptAssets/Assets/database/locales/global/en.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Stash the package in the break room on the 2nd floor near Gate 3 on Factory", "5968929e86f7740d121082d3": "Locate and obtain the valuable folder in Tarcone director's office on Customs", "5977784486f774285402cf52": "Survive and extract from Factory", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Impressive indeed! It's almost a nuclear suitcase! No surprise he spared no people trying to pull this out.", "5968981986f7740d1648df42": "Locate and obtain the valuable item in dorm room 203 on Customs", "5968988286f7740d14064724": "Hand over the valuable item", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Gain access to dorm room 214 on Customs", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "I thank you from the bottom of my heart. I won’t even explain how much and at the same time how little it is, in our conditions. Most people would keep it for themselves, but you shared it with those who needed it. Thank you.", "5969f98286f774576d4c9542": "Find Morphine injectors in raid", "5969f99286f77456630ea442": "Hand over the injectors", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Find Spark plugs in raid", "596b470c86f77457ca18618a": "Hand over the batteries", "596b472686f77457c7006f8a": "Hand over the spark plugs", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "And you said they weren't there! Although they might be empty. Need to check. In any case, here's your cut.", "5979ee2986f7743ec214c7a4": "Find Secure Flash drives in raid", "5979ee4586f7743ec214c7a5": "Hand over the Flash drives", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Locate and mark the third fuel tank with an MS2000 Marker on Customs", "59c128f386f774189b3c84bb": "Locate and mark the fourth fuel tank with an MS2000 Marker on Customs", "5c92184386f7746afa2e7840": "Survive and extract from the location", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Great! Here, take this as your reward. In the meantime, I'll hand this flash drive over to my specialists to decrypt it.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Stash an SV-98 sniper rifle in the boat", "5a27d85286f77448d82084e7": "Stash a Leatherman Multitool in the boat", "5a3ba11786f7742c9d4f5d29": "Locate the boat hidden next to the breakwater on Shoreline", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Survive and extract from the location", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Great, you can always count on me from now on.", "5a56489d86f7740cfe70eba2": "Hand over USD", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "You’ve got it? Leave it in the corner, thank you. A beautiful thing, right? Anyway, I'm a little busy right now, can't talk for long.", "5accd5e386f77463027e9397": "Modify an MP-133 to comply with the given specifications", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Well, in the capable hands this weapon can overthrow regimes and create revolutions. Leave it in the corner, I'll check it later.", "5accd9b686f774112d7173d1": "Modify an AKS-74U to comply with the given specifications", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Handy for CQB and quiet... Good modification, the client will be satisfied.", "5accde3686f7740cea1b7ec2": "Modify an MP5 to comply with the given specifications", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Thank you, leave the rifle on the table, I'll hand it over to Di— ahem, Sniper.", "5acce08b86f7745f8521fa64": "Modify a DVL-10 to comply with the given specifications", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Yeah, you can't hide from something like this. Love 7.62, a good caliber. Thanks for the work. Next order should be tomorrow.", "5acce11786f77411ed6fa6eb": "Modify an R11 RSASS to comply with the given specifications", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Hand it over, let's check out your build. Yeah, the weapon of democracy... Thank you.", "5accdfdb86f77412265cbfc9": "Modify an M4A1 to comply with the given specifications", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Fix the first control board with a Toolset on Factory", "5ac7a51a86f774738a4ffc96": "Fix the second control board with a Toolset on Factory", "5ac7a5d586f774383111ee63": "Survive and extract from the location", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Hand over the items", "5ac5061386f77417e429ce7a": "Find Printed circuit boards in raid", "5ac5062586f774587c327395": "Hand over the items", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Locate the warehouse of seized goods on Customs", "5ac6248586f77416781dd3a3": "Obtain the package of graphics cards", "5ac624b286f77416781dd3ac": "Hand over the package", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Hand over the items", "5ac5083d86f7740be2744eed": "Find CPU Fans in raid", "5ac5084d86f7740bde1b0031": "Hand over the items", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Locate the first signal source on Shoreline", "5ac5e13586f7746074388f93": "Locate the second signal source on Shoreline", "5ac5e18c86f7743ebd6c9575": "Survive and extract from the location", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Hand over the items", "5ac5e98886f77479bc6ca201": "Hand over the items", "5ac5ea0586f774609f36280c": "Hand over the items", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Find PC CPUs in raid", "5cb6f88d86f7747d215f09c1": "Find Rechargeable batteries in raid", "5cb6f8de86f7740e9d452685": "Find Printed circuit boards in raid", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Seventh digit after the decimal separator in the pi number? IIO? Okay, when the time comes, I'll contact you.", "5ac5eb3286f7746e7a509a09": "Reach the required Attention skill level", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Hand over the items", "5ac5ef9886f7746e7a509a2d": "Find Wilston cigarettes in raid", "5ac5eff886f7740f43322559": "Hand over the items", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Locate the second Factory extraction", "5ac61adf86f774741c1bf096": "Locate the third Factory extraction", "5ac61b1486f7743a8f30fc84": "Survive and extract from the location", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Locate the fourth Factory extraction", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "I don't like to pretend, although we all do. Sometimes in order to survive, and sometimes because we’re just afraid. You know, I'm not exactly much of a talker, especially with strangers, but you seem like a nice guy. If you managed to earn my trust, I think you'll come to terms with just about anyone. After all, only personal relationships will help us survive now. Speak with Pavel Yegorovich. When he starts to trust you, perhaps I will be able to set up the supply of gunpowder. I know, he's not a saint, but his gunpowder is essential for me.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich is one of the few who stayed. I wonder if it’s because he’s military or just didn't have time to leave. Although, I feel he just has some shady business going.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Reach level 3 loyalty with Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Great gun, a solid build. There are no new orders, but you can come by tomorrow.", "5ae34b8b86f7741e5b1e5d48": "Modify a Remington Model 870 to comply with the given specifications", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "A comfortable weapon, masterfully done, thank you. I'll let the client know the weapon is ready. ", "5ae3550b86f7741cf44fc799": "Modify an AKM to comply with the given specifications", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "So, is the Zenit AK ready? Great, leave it on that crate, thank you. You can come over for the next order tomorrow, if you want.", "5ae3570b86f7746efa6b4494": "Modify an AKS-74N to comply with the given specifications", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "I think i figured how to train the network! Ah, yes, this AK will do, thank you. Leave it somewhere in the corner, I'll look into it later.", "5ae445f386f7744e87761331": "Modify an AK-105 to comply with the given specifications", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Finished with the rifle? Great, hand it to me. I've got an interesting key here, might come in handy to you. It opens the gun store in Ultra, the KIBA store. It's got some great weapon mods in there, could be useful for our future gunsmithing.", "5ae4479686f7744f6c79b7b3": "Modify an AS VAL to comply with the given specifications", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Welcome to the crew, homie. So, down to business?", "5ae44c6886f7744f1a7eb2b8": "Reach level 2 loyalty with Ragman", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Reach level 2 loyalty with Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Shooting like a sniper, good shit. My guys are saying that Interchange is filled with Scav bodies and Ultra is quieter now, so here's your reward, you've earned it.", "5ae44ecd86f77414a13c970e": "Eliminate Scavs on Interchange", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Locate the DINO CLOTHES store on Interchange", "5ae4511d86f7740ffc31ccb5": "Locate the TOP BRAND store on Interchange", "5ae4514986f7740e915d218c": "Survive and extract from the location", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Locate and mark the second fuel tank with an MS2000 Marker on Interchange", "5ae452fa86f774336a39758e": "Locate and mark the third fuel tank with an MS2000 Marker on Interchange", "5ae4531986f774177033c3e6": "Survive and extract from the location", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Beauty will save the world, as they say. Thank you, really helped me out, brother. The hats are gonna be sold in just one day, trust me. Here, take this as a reward.", "5ae4543686f7742dc043c903": "Hand over the ushankas", "5ae454a086f7742be909a81a": "Hand over the hats", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Find Ushanka ear-flap hats in raid", "5fd89799c54dc00f463272d3": "Find Kinda Cowboy hats in raid", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Hand over the OLI cargo manifests", "5ae9b3b186f7745bbc722762": "Locate and obtain the IDEA cargo manifests on Interchange", "5ae9b3c986f77432c81e2ce6": "Hand over the IDEA cargo manifests", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Found the docs? Big thanks. Hand them over, let's see where our little cargo disappeared.", "5ae9b5bd86f774307c29df37": "Locate and obtain the OLI cargo route documents on Interchange", "5ae9b63286f774229110402d": "Hand over the documents", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Hand over the ski hat", "5ae455fb86f7744dd8242380": "Find a Pilgrim tourist backpack in raid", "5ae4562086f774498b05e0dc": "Hand over the backpack", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Hand over the armor", "5ae9b91386f77415a869b3f3": "Obtain BNTI Gzhel-K armor in 50-100% durability", "5ae9b93b86f7746e0026221a": "Hand over the armor", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Hand over the chest rigs", "5af079e486f77434693ad7f8": "Find BlackRock chest rigs in raid", "5af07a0286f7747dba10d8ac": "Hand over the chest rigs", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Hand over the first book", "5ae9c0e186f7746419683c5e": "Locate and obtain the second book of clothes design on Interchange", "5ae9c10686f774703201f146": "Hand over the second book", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Wow wow, easy there, I'm on your side, man! Sorry, I'm just fucking around. I see you have mastered your charisma, that's good. Let's talk about business then.", "5ae9c29386f77427153c7fb0": "Reach the required Charisma skill level", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Seems like it went without a hitch, thanks.", "5ae9c38e86f7743515398707": "Reach level 3 loyalty with Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Stash a Shemagh (Green) at the sawmill docks on Woods", "5ae9e2a286f7740de4152a0a": "Stash RayBench Hipster Reserve sunglasses at the sawmill docks on Woods", "5ae9e2e386f7740de4152a0d": "Stash Round frame sunglasses at the sawmill docks on Woods", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "You scared off some Scavs at Ultra once, remember, brother? Now people say it’s getting worse. Word is it’s crawling with all sorts of scum. Got a task for you: check out the situation on Interchange, make sure it's clear to walk around at least. Find safe paths or something. I really need it to go smoothly, okay?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "You're like some Invisible Man or a ghost or something. Hold on, lemme grab a map. So, the safest roads are here and here, right? Awesome, I'll let my guys know. Thank you, friend, really helped me out here.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Survive and extract from Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Now that’s a true djigit! I'll assemble my guys, they'll bring so much good stuff from Goshan! So, about your reward: check out the new stock of body armor, all for you.", "5ae9e55886f77445315f662a": "Obtain the Goshan cash register key", "5ae9e58886f77423572433f5": "Hand over the key", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Just don't turn on the flashlight unless you want to get blinded for days! Anyway, well done, leave it on that crate.", "5b47796686f774374f4a8bb1": "Modify an AK-102 to comply with the given specifications", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Come on, give it here, I need to hand it over to the client and fast. I hope you haven’t told anyone what this MPX is built for. Well, let's wish the guy luck.", "5b477b3b86f77401da02e6c4": "Modify a SIG MPX to comply with the given specifications", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Thanks, leave them somewhere here. I’m a bit busy right now, catch you later.", "5b477f1486f7743009493232": "Modify an AKMN to comply with the given specifications", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "The rifle is ready? Great. I guess you have already figured out that Sniper's real name is Dima, I let it slip a while ago. Not a word about him to anybody, I hope you understand.", "5b47824386f7744d190d8dd1": "Modify an M1A to comply with the given specifications", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Makes me want to put it on a showcase display. Masterful work, it truly did turn out to be a masterpiece.", "5b4783ba86f7744d1c353185": "Modify an M4A1 to comply with the given specifications", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, cool, give 'em here. Mechanic asked for it, as you've probably figured. I’ll send it to him today. Thank you, big help.", "5b47884886f7744d1c35327d": "Find Fuel conditioners in raid", "5b47886986f7744d1a393e65": "Hand over the items", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Hand over the figurine", "5b478a6c86f7744d190d8f4d": "Find a Roler Submariner gold wrist watch in raid", "5b478a8486f7744d1c35328b": "Hand over the wrist watch", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Find Golden egg in raid", "62a70058ec21e50cad3b6709": "Hand over the figurine", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Stash Peltor ComTac 2 in the specified place", "5b478c7386f7744d1a393fb1": "Stash 6B47 Helmets in the specified place", "5b478cb586f7744d1a393fb5": "Stash BNTI Gzhel-K armor in the specified place", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Locate and mark the second yellow minibus with an MS2000 Marker on Interchange", "5b478dca86f7744d190d91c2": "Locate and mark the third yellow minibus with an MS2000 Marker on Interchange", "5b478de086f7744d1c3533a1": "Survive and extract from the location", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Locate and obtain the third chemical container on Interchange", "5b4c832686f77419603eb8f0": "Hand over the second container", "5b4c836486f77417063a09dc": "Hand over the third container", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Nice, spot on! Hopefully my boys will recover, quite some gene pool they'll get from the new blood, but heck, they don't have much choice.", "5b47905886f7746807461fe2": "Hand over the respirators", "5b4790a886f774563c7a489f": "Hand over the bloodsets", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Find Respirators in raid", "5ec1388d83b69d213d3c2ee0": "Find Medical bloodsets in raid", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Install a WI-FI Camera to watch the sawmill dock on Woods", "5b47936686f77427fd044025": "Install a WI-FI Camera to watch the road to the port on Customs", "5b47938086f7747ccc057c22": "Install a WI-FI Camera to watch the Kiba Arms store entrance on Interchange", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Hand over the third controller", "5b4c7aec86f77459732b4b08": "Hand over the second gyroscope", "5b4c8e6586f77474396a5400": "Obtain the second single-axis fiber optic gyroscope on Shoreline", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtain the first motor controller on Woods", "66d07de6c7ef9040fff0b789": "Hand over the first controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Stash Golden neck chains under the mattress next to BTR-82A in Generic Store on Interchange", "5b4796c086f7745877352c2c": "Stash Golden neck chains in the microwave on the 3rd floor of the dorm on Customs", "5b47971086f774587877ad34": "Stash Golden neck chains in the middle wooden cabin at the sawmill on Woods", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Eliminate PMC operatives in the time period of 22:00-10:00 on Interchange", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "So, do you feel like Zaitsev yet? Sniper is satisfied with the first test results and has already prepared the next task.", "5bc850d186f7747213700892": "Eliminate Scavs from over 40 meters away while using a bolt-action rifle with iron sights", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Not bad, not bad. Even I wouldn't be so accurate with my shots, I'm way too old now. While you were shooting, Sniper has prepared the next test for you.", "5bd983d886f7747ba73fc246": "Shoot any target in the legs from over 40 meters away while using a bolt-action rifle", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Shoot any target in the head from over 40 meters away while using a bolt-action rifle", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "You have got a good reaction time since you're still standing here. Grab your new hat, as promised! Go on, shooter, new tests await you.", "5bc47e3e86f7741e6b2f3332": "Eliminate PMC operatives from less than 25 meters away while using a bolt-action rifle", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Ready? Then let’s get to work. Sniper took a big interest in you.", "5bc4813886f774226045cb9a": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Kill PMCs using bolt rifles from a distance of at least 80m", "657b0567ec71635f16471dd2": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Good work, owl eyes. You thinned out those night predators.", "5bc84f7a86f774294c2f6862": "Eliminate Scavs while using a bolt-action rifle in the time period of 21:00-05:00 on Customs", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "There are no foul tricks in the sniper play. Good work, kid.", "5bc483ba86f77415034ba8d0": "Eliminate Sniper Scavs while using a bolt-action rifle", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "The enemy is absolutely helpless when they don't know where they get shot from. You did well, shooter.", "5bc485b586f774726473a858": "Eliminate PMC operatives from over 45 meters away while using a suppressed bolt-action rifle", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "This is not an easy task. Try again.", "5bc4893c86f774626f5ebf3e successMessageText": "It seems that sometimes being smart isn’t enough to act smart. Well, a good old bolty can be of help with this. Sniper is silent for now, so let's wait for a little before your next tasks. I will let you know when there are new tests for you.", "5bc48aed86f77452c947ce67": "Eliminate PMC operatives with a headshot without dying while using a bolt-action rifle", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "You cannot die or leave the raid until the quest is handed over to the customer (Status: Killed, Ran through, MIA)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Stash a Roler Submariner gold wrist watch in the trash next to stairs on the 3rd floor of the dorm on Customs", "5c12320586f77437e44bcb15": "Stash the false flash drive in the trash next to stairs on the 3rd floor of the dorm on Customs", "5c1233ac86f77406fa13baea": "You must not kill any Scavs on Customs while the task is active", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Locate and obtain the false flash drive at the specified spot on Customs", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "You did good, now you got my respect! I'll keep you in mind if I have something interesting.", "5c0bc95086f7746e784f39ec": "Eliminate Scavs while using a suppressed 12ga shotgun", "5c0bcc9c86f7746fe16dbba9": "Eliminate PMC operatives while using a suppressed 12ga shotgun", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Good work, my friend! Everything went according to the plan.", "5c1242fa86f7742aa04fed52": "Eliminate PMC operatives in the time period of 21:00-06:00 (excluding Factory and The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "So, what do you think? Some serious toy, yeah? Great, hand it over then. Here, that's for the help. Keep in touch, I might need more help to test some other things.", "5c1b765d86f77413193fa4f2": "Eliminate PMC operatives from over 60 meters away while using an M1A rifle with Hybrid 46 suppressor and Schmidt & Bender PM II 1-8x24 scope", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "There you go. Now I'm certain you won't piss your pants if some shit hits the fan.", "5c0bdbb586f774166e38eed5": "Reach the required Stress Resistance skill level", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Reserve", "5c137ef386f7747ae10a821e": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Shoreline", "5c137f5286f7747ae267d8a3": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Customs", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Lighthouse ", "63aec6f256503c322a190374": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Streets of Tarkov", "64b694c8a857ea477002a408": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Interchange", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "An experienced sniper will not give himself away like that. Catch your breath and try again.", "5c0be13186f7746f016734aa successMessageText": "Frankly speaking, i wasn't sure you could do it. But it sure seems that you're no regular pleb.", "5c0be2b486f7747bcb347d58": "Reach the required Bolt-action Rifles skill level", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Eliminate PMC operatives without dying while using a bolt-action rifle", "64b67fcd3e349c7dbd06bd16": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Did you bring it? Great, put it all down there in the corner. Careful, the equipment is very fragile. Even if the whole clinic thing fails, I know some people who may be interested in this equipment, but that’s between you and me. Why waste such expensive hardware?", "5c0be66c86f7744523489ab2": "Hand over the Ophthalmoscope", "5c0be69086f7743c9c1ecf43": "Hand over the LEDX Skin Transilluminator", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Find an Ophthalmoscope in raid", "5fd8935b7dd32f724e0fe7ee": "Find a LEDX Skin Transilluminator in raid", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "To be fair, I did not doubt that you are the person I can trust, not only in work.", "5c0d0dfd86f7747f482a89a5": "Reach the required Health skill level", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Very good, very good! The clients will be happy with you, mercenary. Your reward.", "5c138c4486f7743b056e2943": "Hand over the processors", "5c138d4286f774276a6504aa": "Hand over the transmitter", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Find Virtex programmable processors in raid", "5ec13da983b69d213d3c2ee4": "Find Military COFDM Wireless Signal Transmitter in raid", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Good, limbs are still attached, and the needed noise has been made. You'll be useful in these matters then, warrior. Here's the reward, you earned it.", "5c1b760686f77412780211a3": "Eliminate PMC operatives while using hand grenades", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Done already? You know, it actually worked, the way their leaders talk has changed a lot. Do not blame me, in this world you have to negotiate even with such scum. Your reward, mercenary.", "5c1b778286f774294438b536": "Eliminate Scavs from less than 60 meters away while wearing a gas mask or respirator on Interchange", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Interchange", "5c1b713f86f774719c22e8a0": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Shoreline", "5c1fd66286f7743c7b261f7b": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Woods", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Survive and extract from Shoreline with the \"Survived\" exit status", "5c13989886f7747878361a50": "Survive and extract from Factory with the \"Survived\" exit status", "5c1931e686f7747ce71bcbea": "Survive and extract from The Lab with the \"Survived\" exit status", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Survive and extract from Reserve with the \"Survived\" exit status", "629f08e7d285f377953b2af1": "Survive and extract from Lighthouse with the \"Survived\" exit status", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Locate and mark the second fuel stash with an MS2000 Marker on Woods", "5c10f94386f774227172c576": "Locate and mark the third fuel stash with an MS2000 Marker on Woods", "5c10f94386f774227172c577": "Survive and extract from the location", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Now we’re talking! I’ll grab a soldering iron and get to work. Perhaps the market's gonna stabilize already by that time.", "5c1129ed86f7746569440e88": "Hand over the wires", "5c112a1b86f774656777d1ae": "Hand over the capacitors", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Find Bundles of wires in raid", "5ca71a1e86f7740f5a5b88a2": "Find Capacitors in raid", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "There you go, now I'm absolutely sure that you can return from a raid and with some good stuff in your backpack. Well done, brother!", "5c112dc486f77465686bff38": "Reach the required Search skill level", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Do you have it? Great. I wonder what he would ask next time, a diamond-coated toilet? But hey, if he does ask for it, you actually will have to look for it. Thanks for the help, brother.", "5c11427386f77430ff393793": "Hand over the teapots", "5c122c5f86f77437e44bcb0e": "Hand over the vases", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Find Antique teapots in raid", "5ca7258986f7740d424a2044": "Find Antique vases in raid", "62a700893e015d7ce1151d90": "Find Axel parrot figurine in raid", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "My guys are saying that Customs is at World War 3 right now, BEARs and USECs are dropping Scavs left and right! Good shit, nice work. Here's your prize, as promised.", "5c1fa9c986f7740de474cb3d": "Eliminate PMC operatives while wearing the specified gear on Customs", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Reach level 4 loyalty with Peacekeeper", "5c12489886f77452db1d2b05": "Reach level 4 loyalty with Prapor", "5c1248ef86f77428266184c2": "Reach level 4 loyalty with Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "You actually brought them! I'm pleased! Let me have a closer look at them.", "5c139eb686f7747878361a72": "Hand over the reader", "5c139eb686f7747878361a73": "Hand over the storage module", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Find UHF RFID Reader in raid", "5ec14080c9ffe55cca300867": "Find VPX Flash Storage Module in raid", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Hello, mercenary. I have been watching you for quite a while now, and I know that you are able to solve the tasks assigned to you. Don't get too cocky now, you're not the only one who knows how to follow orders. There are more fighters like you, even more competent. I want to offer you a job, to give you a chance to become a part of something bigger than you can imagine. If you are ready, then here's an assignment for you: my people operate all over Tarkov and often leave souvenirs after themselves. The mission is to obtain and deliver those items to me. No questions asked. The things are extremely rare. I hope I don't have to remind you that you have to obtain all these items by yourself? Believe me, I like no other know when people lie. You will be informed of the drop spot. And one more thing, all my partners have already mastered their skills a long time ago and proven themselves reliable, and if you want to be one of them, then prove to me that you are not inferior to them in training. Don't try to contact me, I will do it myself when the time comes.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Have you got it all? Good, mercenary. Your hard-earned reward awaits you in the specified drop-spot, just as promised. Congratulations, and welcome.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Hand over the found in raid item: Battered antique book", "5c51bf8786f77416a11e5cb2": "Hand over the found in raid item: #FireKlean gun lube", "5c51bf9a86f77478bf5632aa": "Hand over the found in raid item: Golden rooster figurine", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Hand over the found in raid item: Can of sprats", "5c51c24c86f77416a11e5cb7": "Hand over the found in raid item: Fake mustache", "5c51c25c86f77478bf5632af": "Hand over the found in raid item: Kotton beanie", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Hand over the found in raid item: Old firesteel", "5c52da5886f7747364267a14": "Hand over the found in raid item: Antique axe", "5cb5ddd386f7746ef72a7e73": "Find Old firesteel in raid", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Find Can of sprats in raid", "5cb5df7186f7747d215eca08": "Find Fake mustache in raid", "5cb5df8486f7746ef82c17ea": "Find Kotton beanie in raid", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Find Raven figurine in raid", "5ec7998dc1683c0db84484e7": "Hand over the found in raid item: Raven figurine", "5ec79aaac1683c0db84484e8": "Find Pestily plague mask in raid", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Hand over the found in raid item: WZ Wallet", "60d0748820a6283a506aebb1": "Find LVNDMARK's rat poison in raid", "60d074ef401d874962160aee": "Hand over the found in raid item: LVNDMARK's rat poison", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Find Smoke balaclava in raid", "60e827faf09904268a4dbc40": "Hand over the found in raid item: Smoke balaclava", "62a6ff004de19a4c3422ea5d": "Hand over the found in raid item: Missam forklift key", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Do you have it? Good job. Well, I think you're worthy to get in contact with Jaeger. He might have plenty of work for you.", "5d249a6e86f774791546e952": "Obtain Jaeger's encrypted message", "5d249aa286f77475e8376399": "Hand over the message", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Find Jaeger's camp at the specified spot on Woods", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Hand over the found in raid Iskra ration packs", "5d24bb4886f77439c92d6bad": "Hand over the found in raid Packs of instant noodles", "5d24bb7286f7741f7956be74": "Hand over the found in raid Cans of beef stew (Large)", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "As one famous person used to say \"Float like a butterfly, sting like a bee\". A piece of good advice, you better remember it. So, do you feel how easy it is to move without all those plates on you? If you move fast, you don't even need body armor to deal with scum.", "5d25af3c86f77443ff46b9e7": "Eliminate Scavs without wearing any body armor on Woods", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Stash a Bottle of water (0.6L) in the ZB-016 bunker on Woods", "5d2deedc86f77459121c3118": "Stash an Iskra ration pack in the ZB-014 bunker on Woods", "5d2defc586f774591510e6b9": "Stash a Bottle of water (0.6L) in the ZB-014 bunker on Woods", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "No way you can survive for so long! Impressive. Here you go, drink this, regain your strength.", "5d25c5a186f77443fe457661": "Survive for 5 minutes while suffering from complete dehydration (excluding Factory)", "5d9f035086f7741cac4a9713": "Survive and extract from the location", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Handled it? Nicely done. Your training is almost done, friend. If we keep it that way, we may start taking care of the order in the city earlier than planned.", "5d25c8c986f77443e47ad47a": "Eliminate Scavs while suffering from the pain effect", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Successful? Great! Sweat saves the blood! Don't get too ecstatic now, there are some more tasks for you.", "5d25d09286f77444001e284c": "Eliminate Scavs in a single raid without using any medicine on Woods", "5d25d0d186f7740a22515975": "You must not use any medical supplies while the task is active", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "So you can even handle tremors? Great! To be honest, I didn't think you would succeed, the task was very difficult.", "5d25d4e786f77442734d335d": "Eliminate PMC operatives with headshots while suffering from the tremor effect", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "So you survived? Who would've thought.", "5d25dc2286f77443e7549028": "Eliminate PMC operatives while suffering from the stun effect", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "How many you say there were, six? And you got them all without the \"goggles\"? Indeed, you are a great night hunter, kid.", "5d25fd8386f77443fe457cae": "Eliminate Scavs in the time period of 21:00-04:00 without using any NVGs or thermal sights (Excluding Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "How do people say? What is difficult in training will become easy in a battle! This skill will come in handy, trust me on this one. Your training is almost complete. Looks like you are ready to become the Hunter.", "5d2605ef86f77469ef0f7622": "Reach the required Vitality skill level", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Good job! Of course, there is enough scum in Tarkov, others will come for sure. But at least they will think twice before tearing the place apart.", "5d26143c86f77469ef0f894c": "Eliminate PMC operatives in the office area (any floor) on Factory", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Locate and neutralize Reshala", "5d2710e686f7742e9019a6b2": "Hand over Reshala's Golden TT pistol", "5d66741c86f7744a2e70f039": "Find Reshala's Golden TT in raid", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "They made their choice when they stepped on the wrong path. You have done the right thing, hunter, thank you.", "5d2701b586f77469f1599fe2": "Eliminate Scavs all over the Tarkov territory", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Learned the lesson? Good. See, you can disarm an enemy in many ways.", "5d307fc886f77447f15f5b23": "Eliminate PMC operatives while they are suffering from the stun effect", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Locate and neutralize Killa", "5d271a3486f774483c7bdb12": "Hand over Killa's helmet", "5d667a8e86f774131e206b46": "Find Killa's Maska-1SCh bulletproof helmet in raid", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Locate and neutralize Shturman", "5d272a0b86f7745ba2701532": "Hand over Shturman's stash key", "5d2f464e498f71c8886f7656": "Find Shturman's stash key in raid", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Protected the honor of the uniform? That's great. Screw them, there is nothing worse than giving the oath and then falling into crime.", "5d272bd386f77446085fa4f9": "Eliminate Scavs dressed in police uniform (Reshala's bodyguards)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "I've heard what you did. Looks like it's calmer out there now, with way fewer looters. You have my gratitude.", "5d2733c586f7741dea4f3072": "Eliminate PMC operatives in the Dorms area on Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Welcome back, hunter. So you've dealt with the bandits? Can't even imagine how much of a hassle that was, you did a great job.", "5d27369586f774457411b264": "Locate and neutralize Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "So they're operating near laboratories and military facilities... Oh, I hope it won't start another war, on top of the one already going on. Well, kid, it's not for us to resolve this, at least for now.", "5d273a4d86f774457411b266": "Eliminate Raiders", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Got it? Great. Hopefully, I won't have to watch people die helplessly anymore.", "5d27446f86f77475a86565a3": "Hand over the defibrillator", "5d7782c686f7742fa732bf07": "Hand over the CMS kits", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Find Portable defibrillator in raid", "5ec1538a92e95f77ac7a2529": "Find CMS surgical kits in raid", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Locate the chairman's house in the abandoned village on Shoreline", "5d357b9586f7745b422d653f": "Locate the fisherman's house in the abandoned village on Shoreline", "5d357bb786f774588d4d7e27": "Locate the priest's house in the abandoned village on Shoreline", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Survive and extract from the location with the \"Survived\" exit status", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Got it? Good, let's see what he's up to. Come back in a bit, Mechanic and I will check the flash drives, then we'll let you know too.", "5d27491686f77475aa5cf5b9": "Hand over the Flash drives", "5d6949e786f774238a38d9e0": "Find Secure Flash drives in raid", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Hand over the photo album", "5d357e0e86f7745b3f307c56": "Locate Jaeger's Health Resort room with a view of the bay on Shoreline", "5d357e8786f7745b5e66a51a": "Obtain Jaeger's photo album", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "You got them? Good work, kid. Now we just have to figure out how to find this laboratory. Well, I'll deal with this matter myself, don't worry.", "5d2f375186f7745916404955": "Find TerraGroup Labs access keycards in raid", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Hand over the access keycards", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Come on in. Want some tea? Well, whatever. So listen, here's the deal. Soon I will be hosting a few friends of mine. I want to go hunting with them, but there's just no way I can take them hunting with these MP shotguns, right? I have a couple of nice western rifles here, but I need them to be zeroed properly first. And we have just the client for that, his name is Shturman. So, test my build (Remington M700 sniper rifle with a FullField TAC30 1-4x24 scope) on this scum. Find a long-range position and make a precise shot to the head, so that the bastard wouldn't even have a chance. Don't worry, I won't disappoint you with the reward, kid.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Those are damn great rifles! Good work! You know, I think I might get into gunsmithing myself, I took quite a liking to this thing. So, about the reward: check out the little things I found, you might need them.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Locate and neutralize Shturman with a headshot from over 75 meters away while using an M700 sniper rifle with the specified scope", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Look who we've got here! Hello there! Listen, you know about the military base close to the health resort? Probably were there yourself. So, I've got some news. They say the old warehouses there still have a lot of food left in them, and that bandit groups began roaming there, not your regular Scavs, they are well-equipped. I want you to check out if there's anything left in those warehouses. But be careful, there really are a lot of dangerous people there.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Have they already started to take everything out? Got it, we have to act fast.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Locate the food storage location on Reserve", "629f1259422dff20ff234b4d": "Survive and extract from the location", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Hand over the military battery", "5d4c020a86f77449c463ced6": "Find OFZ 30x165mm shells in raid", "5d4c028c86f774389001e027": "Hand over the OFZ shells", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "So, have you decided? Just a couple of injections. Here and here. Keep yourself calm, at least a couple of days, relax more and take your vitamins.", "5d6fb8a886f77449db3db8b6": "Hand over RUB", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "So, I've been told you took up the training. Well, with your skills, I'm sure you'll learn quick.", "5d6fbf0f86f77449d97f738e": "Hand over EUR", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Got it done already? Nice job. Wait here a minute, I need to measure your sizes and figure out the sewing technique for this one. As promised. But hey, you gotta understand that the materials ain't cheap these days, so be prepared for the price. Still, it's got three stripes, an icon of style, you know.", "5dc53fd386f77469c87589a3": "Locate and neutralize Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Hand over the fabrics", "5e38356d86f7742993306cac": "Hand over the fabrics", "5e3835e886f77429910d4465": "Hand over the paracords", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Hand over the fabrics", "5e383a6386f77465910ce1f8": "Find Paracords in raid", "5e383a6386f77465910ce1f9": "Hand over the paracords", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Hand over the fabrics", "5e4d4ac186f774264f75833b": "Find KEKTAPE duct tapes in raid", "5e4d4ac186f774264f75833c": "Hand over the duct tapes", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Hand over the fabrics", "5e4d515e86f77438b2195249": "Find KEKTAPE duct tapes in raid", "5e4d515e86f77438b219524a": "Hand over the duct tapes", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, you're just in time. Maybe you have already heard that a new doctor has shown up? But this one is not some good-willed Aesculapius - he helps some people but cripples others. They say he sells medicine and does surgeries right on the street. They call him Sanitar, can you imagine? He settled on the Shoreline and interestingly enough, the local punks are very happy with him, and it's clear why: he patches them up, and even sells them drugs and first-aid kits of all sorts. This means that he has quite an inventory with him. Find out about this Sanitar, but quietly. For now, just find out where this scum hangs out. I think that he does both the selling and healing at the same spots. You interested?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "So you're saying there's quite a lot of supplies? Guess he found himself a fresh unopened medical warehouse and is now selling everything out from it. If only I could find that warehouse... well, that's not your problem anyway. For now.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Mark the first trading post with an MS2000 Marker on Shoreline", "5eda1da9a58a4c49c74165ee": "Mark the second trading post with an MS2000 Marker on Shoreline", "5eda1dd3317f6066993c1744": "Mark the third trading post with an MS2000 Marker on Shoreline", "5f0389268580cc37797e0026": "Survive and extract from the location", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "So you believed that woman? You do realise that she's just deceiving you for her own benefit? Do you think that because Sanitar treats some people, he can't kill others? You've completely gone insane with that war or yours, can't distinguish black from white. Get out of my sight, I want to be alone.", "5edab4b1218d181e29451435 successMessageText": "You did the right thing. Even if others say that Sanitar did good deeds, he brought much more evil. Don't believe those people's lies. I've seen people like Sanitar before: once they go crazy, there's no turning back. You can only shoot them like rabid dogs.", "5edab5a6cecc0069284c0ec2": "Locate and neutralize Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Locate the group that was sent to the Health Resort on Shoreline", "5edab8890880da21347b3826": "Locate the group that was sent to the pier on Shoreline", "5edab8e216d985118871ba18": "Locate the group that was sent to the cottages on Shoreline", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Survive and extract from the location", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "The loss of my people on the Shoreline is certainly a very unpleasant event, but a new source of medicine is more important. We just need a different approach to this case. My assistant managed to bribe a local from the Shoreline to tell us about Sanitar, the medic we're looking for. He has a small security detail, a few spots on the shoreline, but what's strange is that he performs surgery right on the street, and often hides his tools near such places, in buildings nearby. Get me these tools. Sanitar will be more cooperative if he realizes that we can stop his trade at any time and take control of the territory.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Did you bring the tools? Put them in that box, I will need to clean them properly, it is unclear where they have been before. You can clearly see he is in a difficult situation, everything is covered in blood, clearly unsanitary conditions. Well, that's my business now. I'll give Sanitar his tools back along with the letter through the one local we bribed so that he understands what we want from him.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Locate and obtain Sanitar's surgery kit marked with a blue symbol on Shoreline", "5edabb950c502106f869bc04": "Hand over Sanitar's surgery kit", "5edabbff0880da21347b382b": "Locate and obtain Sanitar's ophthalmoscope on Shoreline", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hey you, tough guy! C'mere, I have a job for you. I've heard Prapor sent you to get a supply of drugs from some Sanitar dude. Don't make that face! I ain't got no interest in those drugs, let Prapor collect it and put it up his ass, you have already received profit from him anyway, haven't you? You just need to put these smart little things in containers that are in Sanitar's stashes. Prapor won't get wind of anything, it's a two-minute job, but the profit is good. Just gotta do it fast, before they move those containers.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Good stuff, good stuff! Finally, Prapor will get his caches exposed, there are probably whole mountains of loot. Guns, ammo, food, dope. Out fucking standing! We'll do this one ourselves though, without you. No offense. Thanks.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Survive and extract from the location", "5f071a9727cec53d5d24fe3b": "Mark the medical container at the Health Resort with an MS2000 Marker on Shoreline", "5f071ae396d1ae55e476abc4": "Mark the medical container by cottages with an MS2000 Marker on Shoreline", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Young man, wait. I knew that Jaeger would ask you to kill Sanitar, but you don't have to do it. I understand Jaeger's point of view, that he's just some kind of monster in the flesh, but he is not. I'm sure Sanitar is just trying to help the locals. Given the current circumstances, he performs the most complex surgeries and it is not surprising that they often end badly. He is a doctor with the most valuable knowledge that can save many more lives. A doctor with access to a warehouse of medicines that are extremely important to us. And he has already entered into negotiations with me and will soon begin to cooperate. But for this, I need something that will interest him and I think I know what will: the Laboratory. Access keys and samples of military stimulants, I think they are the basis on which he conducts his experiments. Can you find them for me? You can get the access keycards however you want, but the stimulants must be sealed, so you need to find them yourself.", "5edac34d0bb72a50635c2bfa failMessageText": "It is a pity that you listened to this Jaeger instead of the voice of reason. Sanitar with his knowledge and medicines could've helped us in many ways. He wasn't a saint, but surely everyone has a chance to atone for their sins, but you have took away that chance. I am very displeased with you.", "5edac34d0bb72a50635c2bfa successMessageText": "Thank you. I knew you would understand how important Sanitar and his... medication are right now. He has already shown a great interest in keycards and stimulants and sent the first batch of goods. Here, this is your share.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Do not kill Sanitar", "5f04935cde3b9e0ecf03d864": "Hand over the keycards", "5f04944b69ef785df740a8c9": "Hand over the keycard", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Good day to you, mercenary. Because the day is actually good. I was right, the new stimulants are connected to TerraGroup. Mechanic found information about Sanitar. Not too much, and it was very expensive for us, but it's better than nothing. Sanitar worked for TerraGroup, and not as an ordinary employee. Graduated in medicine, specialist in infectious diseases, divorced... Well, that's all the information we have on him. Give me more, my friend, I'm very interested in where he got access to such resources. Find his workplace and find out more.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "We have decoded that flash drive. There's a lot of important information there, but I can't tell you everything. It's classified. I can tell you about Sanitar though, he's a scientist. He studied and developed drugs, and then tested them on people. Very... bold, or, as they sometimes say, unethical research.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Hand over the Flash drive marked with blue tape", "5eec9d054110547f1f545c99": "Find Sanitar's workplace in The Lab", "5eff5674befb6436ce3bbaf7": "Obtain information about Sanitar's work", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Greetings, warrior. So here's the deal, a birdy told me that those ex-army guys who secured Reserve base dug out some pass to the underground bunker. Of course, they didn't do it with their own hands, they forced the Scavs to do the job, and most likely none of the poor bastards made it back out. So anyway, I've got no idea what sort of bunker that is. I've had some information that it could be the command bunker. But I'm not sure if it's exactly that bunker or just a bomb shelter for the base personnel. For now, there's no use to send a big group there for them to just die to those raiders. Check those catacombs out and let me know if it's worth sending a group there. The pay is good. You in?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "So you say it's a command shelter? Rumors don't lie, huh... God damn! I'll send my men there today, let them check the place out. There could be so much valuable shit there! Anyway, here, take your reward. As promised.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Survive and extract from the location", "5ee8eea538ca5b3b4f3c4647": "Locate the underground bunker on Reserve", "5ee8eecc0b4ef7326256c660": "Locate the control room in the underground bunker on Reserve", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hey, merc, you are just in time, you are exactly who I need. Do you remember that fucking command bunker you found under the Reserve base? Long story short, my guys went there, and it turned out to be a real nasty place. Built with a high level of protection: filters, generators, all entrances are blocked by extremely strong hermetic locks, it's like an underground fortress. But the raiders opened the fucking thing and dug in like Alabama ticks. So, my men got in serious trouble, less than half made it out of there. But you know, now it's even more intriguing, for fuck's sake. So my people will not go there anymore for no reason, but if you could find a safe route for them... You are an experienced guy, so I need you to quietly, on those soft paws of yours, find out where all the entrances are. The guys said the entrances had those big hermetic doors. So it's up to you to scout the way in.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Welcome back, I'm listening. Aha, so that's how it is... The door is right there, right? Just draw it right on top of my map, don't worry. So this bunker connects almost all facilities of the base? Fuck, how convenient, you could travel half the base under everyone's nose. Now it's clear why the raiders are there, you can control the entire base from under there. Thank you, warrior! Here's your reward.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Survive and extract from the location", "5ee8ec5ed72d953f5d2aabd1": "Locate the hermetic door leading to the hospital (White Bishop) on Reserve", "5ee8ecd75eb3205dae135d17": "Locate one of the two hermetic doors leading to the academy building (Black Bishop) on Reserve", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "So that's how it is, it's right on the first floor? How many times have my people been there and found nothing. Did you get inside the room? Found anything interesting in there? Well, doesn't matter, I'll send my boys to check it out anyway. Here's your reward, you've earned it. Thank you.", "5f0488c590eea473df674002": "Locate Sanitar's office in the health resort", "5f04983ffbed7a08077b4367": "Survive and extract from the location", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Greetings, warrior. I have a job for you. Long story short, I lost contact with one of my groups, and it's been quite a while ago. When shit hit the fan, I sent them to Woods to pick up some cargo. I'm afraid they got ambushed, the last time I got through, they reported that the USECs were closing in on them from the hills. Investigate it, check if anyone survived. Their convoy had a BRDM, a Bukhanka van, and a truck of some sort, I do not remember what kind exactly. I think that the USECs must have settled somewhere near there too, so stay sharp. Find my convoy and those USECs' camp, if it is really there. Dismissed.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "So my guys didn't make it and the transports were looted... Plus a USEC camp nearby, you say? That sucks, the cargo was very important. Well, you've done your part of the deal, so here's the reward. You can buzz off now.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Locate Prapor's missing convoy on Woods", "5fd9fad9c1ce6b1a3b486d05": "Locate the temporary USEC camp on Woods", "5fd9fad9c1ce6b1a3b486d0d": "Survive and extract from the location", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "The air in the whole Woods trembled from such furious firefight. The scum got what he deserved, and all thanks to you. Here, the appropriate reward for such a feat. Don't be shy, you can buy the new rifles too.", "600303250b79c6604058ce30": "Locate and neutralize Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Locate and inspect the second LAV III on Reserve", "608925d455f4ac386d7e7fc4": "Mark the first LAV III with an MS2000 Marker", "608930aa1124f748c94b801e": "Locate and inspect the T-90 tank on Reserve", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Great-great-great! Take my money! My only request is that you do not tell anyone a word about this deal.", "60929ad46342771d851b827a": "Obtain the package with T-90M Commander control panel on Reserve", "60929afc35915c62b44fd05c": "Hand over the package", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Obtain the third folder with military documents in the command bunker offices on Reserve", "60ae0f0586046842a754e21e": "Hand over the second documents", "60ae0f17b809a4748759078c": "Hand over the third documents", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Good work out there. I hope they get what's going on now and that they can't just kill my people like that. Here's the reward.", "608bffeee0cc9c2d4d2ccb29": "Eliminate Raiders in the command bunker on Reserve", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Hand over the first journal", "60ae12ffb809a474875907aa": "Obtain Medical record #2 on Reserve", "60ae134cabb9675f0062cf6e": "Hand over the second journal", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "So that's how it looks! Great. Thank you, I'll study it more thoroughly later. Here's your reward, as promised.", "6092942fb0f07c6ea1246e3a": "Obtain the MBT Integrated Navigation System on Reserve", "6092947635915c62b44fd05b": "Hand over the navigation system", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "So the exit works? Excellent. I'm still preparing your reward, so tell me more about the opening mechanism for that bunker door in the meantime.", "608a94101a66564e74191fc3": "Find the unpowered secret exit on Reserve", "608a94ae1a66564e74191fc6": "Survive and extract from the location through the secret exit", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Awesome, my guys just got back from the raid safe and sound, not a single scratch. Here's your prize!", "608ab22755f4ac386d7e7fdc": "Eliminate Scavs in the underground warehouse on Reserve", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Check the second arsenal in the southern barracks (White Pawn) on Reserve", "608bd2465e0ef91ab810f98a": "Check the duty room in the eastern barracks (Black Pawn) on Reserve", "608c187853b9dd01a116f480": "Survive and extract from the location", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Survive and extract from the location", "60a4dc7e4e734e57d07fb335": "Mark the first group of fuel tanks with an MS2000 Marker on Reserve", "60b90232ec7c6f5eb510c195": "Mark the second group of fuel tanks with an MS2000 Marker on Reserve", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Is it done? The air almost seems fresher now. It's a pity we couldn't get those looters' heads on straight in another way.", "608a8356fa70fc097863b8f8": "Eliminate Scavs inside the main barracks on Reserve", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "That's good news. The world will only get cleaner. Hope the bastard didn't get you with his sledgehammer?", "60c0d187938d68438757cda2": "Locate and neutralize Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Find Tagilla's BOSS cap in raid", "60cfa5a85f9e6175514de2e3": "Hand over the BOSS cap", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Eliminate PMC operatives on Interchange", "60ec0b1871035f300c301acd": "Eliminate PMC operatives in The Lab", "60ec2b04bc9a8b34cd453b81": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA, Ran Through)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Eliminate PMC operatives at the Scav base on Customs", "60ec1e72d7b7cb55e94c1764": "Eliminate PMC operatives at the Scav base on Woods", "60ec2229fd1bf4491c4e4552": "Eliminate PMC operatives at the Health Resort on Shoreline", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "There you go, that's way better. Thank you, warrior. The guys are saying it's calmed down now, so looks like the morons understood your message.", "60e8650e5d67b234af3d3926": "Eliminate Scavs with headshots", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Bloody hell... You got them all by yourself? You've got guts, that's for sure. Somethin' ain't right about those psychos, I'm tellin' you...", "60e82c12fd1bf4491c4e4547": "Find the unusual knives in raid", "60e82c5926b88043510e0ad7": "Hand over the knives", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Hand over the LEDX", "60f028ca86abc00cdc03ab89": "Find Piles of meds in raid", "60f028f85caf08029e0d6277": "Hand over the Piles of meds", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Find Bottles of OLOLO Multivitamins in raid", "62a70168eb3cb46d9a0bba7a": "Hand over the multivitamins", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Marvelous, mercenary. Now it will be much easier for my people to operate on the location! Thank you for your work.", "60e745d6479eef59b01b0bdc": "Eliminate Raiders on Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Great, great! The clients have already rewa– uh, thanked us for the successful mission. Good job, mercenary.", "60e8174d0367e10a450f7818": "Hand over the found in raid item: BEAR PMC dogtag (Level 50+)", "60e81795479eef59b01b0bdf": "Hand over the found in raid item: USEC PMC dogtag (Level 50+)", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Find Military COFDM Wireless Signal Transmitters in raid", "60e7449875131b4e61703b7e": "Hand over the programmable processors", "60e744c9d1a062318d3d2262": "Hand over the signal transmitters", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Find Military flash drives in raid", "62a7019ea9a0ea77981b57da": "Hand over the flash drives", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Great, that's all the results I needed, hand me the notebook. Thanks, mercenary.", "60e740b8b567ff641b129573": "Eliminate PMC operatives from over 100 meters away", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Great, thank you very much, friend. The client already reported that they got the packages. I don't think it's the last order from them, so I'll count on you further.", "60e84ba726b88043510e0ad8": "Stash a Trijicon REAP-IR scope under the base of the yellow crane at the construction site on Customs", "60e85b2a26b88043510e0ada": "Stash a Trijicon REAP-IR scope behind the trash containers at the \"new\" gas station on Customs", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respect, brother, you helped me out big time! If you see any dangerous dudes in Ultra, you let me know. Might need you to deal with them again.", "60e73ee8b567ff641b129570": "Eliminate PMC operatives inside the ULTRA mall on Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Hand over the whiskey", "60f028268b669d08a35bfad8": "Find Canisters with purified water in raid", "60f0284e8b669d08a35bfada": "Hand over the superwater", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Find Bottles of Pevko Light beer in raid", "62a70110eb3cb46d9a0bba78": "Hand over the beer", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Locate and neutralize Shturman", "60e7261eb567ff641b129557": "Locate and neutralize Glukhar", "60e72629465ea8368012cc47": "Locate and neutralize Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Here you are, swift one. You pleased the old man, and drew conclusions yourself, I hope. You yourself are the weapon and the monolith, not the amount of steel you wear.", "60e729cf5698ee7b0505743c": "Eliminate PMC operatives without using any armor or helmets on Woods", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "A brave decision, mercenary.", "60effdac12fec20321367038": "Hand over Secure container Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Listen, brother, can you help me find proper info on a guy? He's already left the city. Why can't I find him myself? Because his fucking name is Ivan Ivanov. Seriously, I'm not kidding. There are two hundred thousand of them all over the country with that name. If we could find his former address in Tarkov, we might be able to run him through the database. Let me see what I can find on him. I think he used to run a bar, right. I don't know the name of the bar though... Listen, I don't know how you're gonna know which bar is his. Oh, that reminds me, he was into ballet. No kidding. He went to the Mariinsky every season. Even tried to host something at our local theater, but people weren't really crazy about chicks in tutus. More specific? Brother, I'm already fucking specific! I believe in you, use your intuition.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Found both the bar and the guy's address? Here, write it down for me. You're better than those psychics on TV finding missing people. Wanna be a detective when all this is over, bro? I'll fix you up with a Poirot hat, I promise.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Locate the balletmeister's apartment on Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Survive and extract from the location", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Come here, my dear employee. Everything okay in the city? I got a few teams of mine missing. At first I thought, why the fuck would someone be so cocky, trying to shut my business down? Unless they're messing with me or something. I assumed it was that punk from the Lighthouse at first. But then I get a message from Seva Shket. He wrote that they were kept in some private prison. Have you heard about it? It's hidden somewhere in the old apartment buildings. Suits would dump their rivals there and whoever's easier to keep locked up than kept loose. I'd just kill them if that was such a problem, honestly. But it looks like someone would rather keep them in jail than just pop the cunts bothering them... Here's the deal: Shket was the only one in the group who escaped, but now he's on the run, hasn't contacted us since that message he sent. Didn't even tell us where to find the guys, this rat-faced fuck. The guys themselves are to blame for being caught like some bitches, and I would have just told them to fuck off for such a screwup. But the fact that someone's trying to fuck me over is outrageous. All right, enough of this bullshit. Find out where they keep my boys.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Fucking hell. Why would someone keep them there? I'd understand if they sent me a letter saying they'd kill my people if I didn't pay up and shit. A serial killer or something? Anyway, come around in a little while, I'll find out what's going on.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Survive and extract from the location", "63a7d767f32fa1316250c3da": "Locate where the missing group was held captive on Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "It's the same story again, a new recording, now with a strange symbol. What the hell is going on? People are being sacrificed. To whom? Why? So many questions, yet no answers. I keep thinking it's the worst we'll ever see, but every time I'm proven wrong. We've fought looters with only money on their minds. Murderers who just want to shoot innocents, too. But at least I understand the motivation there, the beast has defeated the human in their soul. But with what purpose do people become these... I cannot understand this. So, soldier, I'll look for them in the woods, you do the same in the city. Somewhere there must be their hideout. Look for the same symbol, I'm sure we'll see it again.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Did you find it? Where? Was there anyone there? What does the symbol mean? Even more questions...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Survive and extract from the location", "63a7d6d61f06d111271f5aeb": "Locate the cultist meeting spot on Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Greetings! Well, let's get it going, are you excited? The task is quite specific, we need to test the Russian toy for close combat, so that the conditions were the very real combat in urban environment. I have customers who don't believe in the effectiveness of this toy... Can you change their minds?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Well? Does it work good? Suitable for close-quarters combat in urban environments?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Eliminate PMC operatives while using an SR-2M with a suppressor and KP-SR2 sight on Streets of Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Some are still intact, huh. Well, that's cool, we'll go pay them a little visit. Your reward.", "6572e876dc0d635f633a5718": "Locate the first group of ATMs on Klimov Street on Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Scout the Sparja store in Pinewood hotel", "6572e876dc0d635f633a571e": "Scout the Goshan store in Concordia", "6572e876dc0d635f633a5720": "Hand over the found in raid Salty Dog beef sausage", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Atm №11", "65733403eefc2c312a759df2": "Atm №12", "65733403eefc2c312a759df4": "Atm №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Atm №15", "65733403eefc2c312a759dfa": "Atm №16", "65801ad655315fdce2096bec": "Unravel the secret of the firm's success", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Did you find it? Nice work, now bring it here! And take your reward, you deserve it.", "6573397ef3f8344c4575cd88": "Locate the real estate fund on Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Locate and obtain the Tarkov real estate transactions document", "658167a0e53c40116f8632fa": "Hand over the obtained information", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, yeah, I've already heard the rumors. People're gonna nail those punks to the wall soon. You did a great job. Here's your reward.", "65734c186dc1e402c80dc1a2": "Eliminate any target while wearing a Bomber beanie and RayBench Hipster Reserve sunglasses on Streets of Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Stash a Bomber beanie inside the barber shop on Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Stash RayBench Hipster Reserve sunglasses inside the barber shop on Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "It's in the fucking swamp? That explains the fucking price. It would cost more to get it out from there and clean it up! All right, here, that's for helping me out.", "65802b627b44fa5e1463889a": "Locate Ragman's SUV on Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Survive and extract from the location", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Locate and obtain the “Bison VS Undertaker” poster at the USEC camp on Woods", "664bbb5f217c767c35ae3d51": "Locate and obtain the “Killa and Tagilla” poster at the USEC camp on Woods", "664bbb73c71d456fd03714ca": "Locate and obtain the “Easy Money” poster at the USEC camp on Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm, looking for the one who ordered the hit. They'll get over it and realize they're crossing the line. Here, this is your reward.", "660d5effb318c171fb1ca234": "Eliminate Kaban's guards on Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminate Kollontay's guards on Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Win 6 matches out of 10 in ranked mode in Arena", "662bb24b3d34cd5e19206e63": "Failure condition: Lose 5 matches", "6633a85e347a2a2b4051a26b": "Hand over Roubles from the EFT balance", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Failure Condition: Lose 5 matches", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.", "66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.", "66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Locate and obtain the compromising information on Ref", "664fd7f0837ee02ad4c8e658": "Hand over the found info", "66563f0a2684eee09e8dcd86": "Locate the old champion's hideout", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "I think I'm beginning to understand why people watch these \"live streams\". It's addictive!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Install a WI-FI Camera on the mountain ledge on Woods", "667bf840981b1c594af358ce": "Install a WI-FI Camera at the pier tower on Shoreline", "667bf845dc371ee9869f185e": "Install a WI-FI Camera at the office corridor on Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Well done! They say that even the outside world found out about our little move, haha!", "667442da875be5fb415df535": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Shoreline", "66828746efaecf435dde20ca": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", "66d080533a3c33d823a3477d": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hello, friend. Things have been a little bumpy for me lately. I will be temporarily raising the prices of my products and services from today until I can solve some pressing matters. A mercenary friend of mine is putting together a team to raid the underground lab, and he needs reliable firepower. Can you help? I see you know as much about the ARs as I do, so I thought I'd entrust this to you. I need an M4A1 with no more than 300 total recoil and ergonomics no less than 70. Not easy, I know. Now, be sure to put an EOTech XPS 3-0 on it, since the client refuses to use any other scope.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Many thanks. I think this will keep me on track for some time.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modify an M4A1 to comply with the given specifications", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "You didn't lose anything along the way, correct? All right, then it's time to send the engineers out to do some measurements, we're about to find out what these factory walls are hiding. Thanks for your help, friend.", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory (In one raid)", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory (In one raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Locate and obtain the precision tools package in the laboratory on Customs", "66ab97d56cb6e3bfd7c79fbc": "Stash the package at the laboratory storage room on Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "So you have found it indeed. Excellent! How's the passage, is it safe? In a state of disrepair, you say? Well, it seems like this opportunity won't be with us for long. I'll send my men as soon as possible.", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov (In one raid)", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab (In one raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab (In one raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab (In one raid)", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab (In one raid)", "66b10eef0951e90ec383850b": "Scout the control room in The Lab (In one raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "The buyer has told me everything is in place. You've earned your reward, and you can expect my men to help you on the new trails.", "66abb32aeb102b9bcd088d62": "Use the transit from Ground Zero to Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Use the transit from Streets of Tarkov to Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use the transit from Interchange to Customs", "66abb3ac416b26ade4a1446c": "Use the transit from Customs to Factory", "66abb3bf228ace5ca9f3d745": "Use the transit from Factory to Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Install a WI-FI Camera at the bear who sat into a flaming car on Woods", "66debf2e1e254957b82711ff": "Install a WI-FI Camera at the upside-down chair on Shoreline", "66debf30802386a45d0adb60": "Install a WI-FI Camera at the not-so-lonely bathroom on Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "The soldier of fortune has come for his new task! Rumors have it that Tarkov has become even more dangerous. Who would've thought, right? Someone's started targeting certain areas with mortar fire. \n\nYou better go and see what's going on. And yes, this means going right into the middle of those mortar strike areas. Yup. Alright, so we've noticed the bombardments in the nature reserve, the military base, the customs office, and the coast line. Off you go then.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Alive and well, that's great. So let's see what we're working with here. Somebody stole the mortars and now they're hitting various locations right before the airdrop supplies come in. \n\nVery suspicious. These local powdermen sure couldn't have secured communications with the outside world, could they? Either way, all we can do for now is watch.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visit an active mortar strike area on any specified location (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Okay, I got word of a major fuck-up. It may not be your fault, but that's beside the point. The assholes at the water treatment plant intercepted a bunch of these crates with portable EW equipment in them. \n\nThey're obviously useless at this point, but I'm not gonna let them steal government property like this. \n\nFor a warrior like you, the task is feasible. Go to the WTP and get me those EW thingies. And yes, those rats need to be put down. \n\nThe EWs themselves have probably already been handed over to their commanders, so you're guaranteed to get this equipment from them. Assuming you don't die, I suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendid, the new toys have arrived. My guys are gonna love these. You need to be ready for anything these days, and such protection is definitely not superfluous.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Hand over the found in raid item: GARY ZONT portable electronic warfare device", "66e19f359fee1e54e0e01f7c": "Eliminate Rogues", "66e19f7d534a8ff2bb7e9f89": "Locate and neutralize Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "This whole trader thing is going pretty well for me, wouldn't you say? You know, If I didn't have my wits about me, I'd be dead in this hellhole a long time ago. Anyway, I'll deal with the reports later, not the first time. \n\nRight now, I need to equip the guys posted outside my territory. Bring them this new equipment we found. I'll give you a part of it, but the rest you need to get yourself - you already know where to look. No, you won't meet them face to face. Just stash the items in the designated spot.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Good, now that they're safe from airborne threats, their combat mission will be accomplished with no problem.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Stash the GARY ZONT portable electronic warfare device inside the sunken church on Woods", "66e071c8a9e80c3f25bb1bad": "Stash the Radar station spare parts inside the old sawmill hangar on Woods", "66e0735089627301d900ef1d": "Stash the GARY ZONT portable electronic warfare device inside the weather station tower on Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Find the secret exfil on Customs", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "I Hear the Voice of Darkness", "6514134eec10ff011f17cc26 description": "Eliminate Knight 15 times while playing as a PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Now That's a Good Shot", "651413e9c31fcb0e163577c9 description": "Eliminate Zryachiy 15 times while playing as a PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/es-mx.json b/Libraries/SptAssets/Assets/database/locales/global/es-mx.json index 2dc86cf8..95769220 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/es-mx.json +++ b/Libraries/SptAssets/Assets/database/locales/global/es-mx.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Esconde el estuche en el cuarto de reposo de la Fábrica (Choza metálica del 2º piso, cerca del Portón 3)", "5968929e86f7740d121082d3": "Localiza y obtén el Estuche Seguro en la oficina del director de Tarcone en Aduanas", "5977784486f774285402cf52": "Sobrevive y extrae de la Fábrica", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "¡En serio es impresionante! ¡Es casi un maletín nuclear! No me sorprende que haya mandado a alguien para sacarlo de ahí.", "5968981986f7740d1648df42": "Localiza y obtén el objeto de valor en la habitación 203 de los dormitorios de Aduanas", "5968988286f7740d14064724": "Entrega el objeto de valor", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Consigue acceso a la habitación 214 de los dormitorios en Aduanas", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Te lo agradezco desde el fondo de mi corazón. Me cuesta explicar lo mucho que esto representa y al mismo tiempo lo poco que es para las personas que las necesitan. La mayoría de las personas se las quedarían para sí mismas, pero tú se las entregaste a quienes más las necesitaban. Sinceramente te lo agradezco.", "5969f98286f774576d4c9542": "Encuentra en incursión los Inyectores de morfina", "5969f99286f77456630ea442": "Entrega los inyectores", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Encuentra en incursión las Bujías", "596b470c86f77457ca18618a": "Entrega las baterías", "596b472686f77457c7006f8a": "Entrega las bujías", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "¡Y decías que no había nada allí! Aunque podrían estar vacías. Necesito comprobarlo. En cualquier caso, aquí está tu parte.", "5979ee2986f7743ec214c7a4": "Encuentra en incursión las Memorias USB seguras", "5979ee4586f7743ec214c7a5": "Entrega las Memorias USB", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Localiza y coloca un Marcador MS2000 en el tercer camión de combustible en Aduanas", "59c128f386f774189b3c84bb": "Localiza y coloca un Marcador MS2000 en el cuarto camión de combustible en Aduanas", "5c92184386f7746afa2e7840": "Sobrevive y extrae de la ubicación", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "¡Genial! Ven, toma esto como tu recompensa. Mientras tanto, le entregaré esta USB a mi especialista para que la desencripte.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Esconde un Fusil de francotirador SV-98 en el bote", "5a27d85286f77448d82084e7": "Esconde una Herramienta multiusos Leatherman en el bote", "5a3ba11786f7742c9d4f5d29": "Localiza el bote oculto cerca del rompeolas en Costa", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Sobrevive y extrae de la ubicación", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Estupendo, siempre podrás contar conmigo de ahora en adelante.", "5a56489d86f7740cfe70eba2": "Entrega los Dólares", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "¿La tienes? Gracias, déjala en la esquina. Es una belleza, ¿Verdad? Como sea, ahora estoy un poco ocupado, no puedo quedarme a platicar.", "5accd5e386f77463027e9397": "Modifica una MP-133 para que cumpla con las especificaciones requeridas", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Bueno, en las manos adecuadas, esta arma podría llegar a crear revoluciones y derrocar regímenes. Déjala en la esquina, la revisaré más tarde.", "5accd9b686f774112d7173d1": "Modifica un AKS-74U para que cumpla con las especificaciones requeridas", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Muy útil para combates en espacios cerrados y además silenciosa... Buenas modificaciones, el cliente estará satisfecho.", "5accde3686f7740cea1b7ec2": "Modifica un MP5 para que cumpla con las especificaciones requeridas", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Gracias, deja el fusil en la mesa, se lo entregaré a Dim- ¡Ejem!... A Sniper, quiero decir...", "5acce08b86f7745f8521fa64": "Modifica un DVL-10 para que cumpla con las especificaciones requeridas", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Eso es, no puedes esconderte de algo como esto. Amo el 7.62, es un buen calibre. Gracias por un buen trabajo. El próximo pedido debería llegar mañana.", "5acce11786f77411ed6fa6eb": "Modifica un R11 RSASS para que cumpla con las especificaciones requeridas", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Entrégamela, veamos cómo la ensamblaste. En efecto, el arma de la democracia... Gracias.", "5accdfdb86f77412265cbfc9": "Modifica un M4A1 para que cumpla con las especificaciones requeridas", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Utiliza un Set de herramientas para arreglar el primer tablero de control en Fábrica", "5ac7a51a86f774738a4ffc96": "Utiliza un Set de herramientas para arreglar el segundo tablero de control en Fábrica", "5ac7a5d586f774383111ee63": "Sobrevive y extrae de la ubicación", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Entrega los objetos", "5ac5061386f77417e429ce7a": "Encuentra en incursión las Placas de circuito impreso", "5ac5062586f774587c327395": "Entrega los objetos", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Localiza el almacén de mercancías incautadas en Aduanas", "5ac6248586f77416781dd3a3": "Obtén el Paquete de tarjetas gráficas", "5ac624b286f77416781dd3ac": "Entrega el paquete", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Entrega los objetos", "5ac5083d86f7740be2744eed": "Encuentra en incursión los Disipadores de CPU", "5ac5084d86f7740bde1b0031": "Entrega los objetos", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Localiza la primera fuente de la señal en Costa", "5ac5e13586f7746074388f93": "Localiza la segunda fuente de la señal en Costa", "5ac5e18c86f7743ebd6c9575": "Sobrevive y extrae de la ubicación", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Entrega los objetos", "5ac5e98886f77479bc6ca201": "Entrega los objetos", "5ac5ea0586f774609f36280c": "Entrega los objetos", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Encuentra en incursión los CPU para PC", "5cb6f88d86f7747d215f09c1": "Encuentra en incursión las Baterías recargables", "5cb6f8de86f7740e9d452685": "Encuentra en incursión las Placas de circuito impreso", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "¿Cuál es el séptimo dígito después del punto decimal en el número Pi? ¿110, quizás? Bueno, te contactaré cuando llegue el momento.", "5ac5eb3286f7746e7a509a09": "Alcanza el nivel requerido con la Habilidad de Atención", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Entrega los objetos", "5ac5ef9886f7746e7a509a2d": "Encuentra en incursión las Cajetillas de cigarros Wilston", "5ac5eff886f7740f43322559": "Entrega los objetos", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Localiza el segundo punto de extracción en Fábrica", "5ac61adf86f774741c1bf096": "Localiza el tercer punto de extracción en Fábrica", "5ac61b1486f7743a8f30fc84": "Sobrevive y extrae de la ubicación", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Localiza el cuarto punto de extracción en Fábrica", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "No me gusta fingir, aunque todos lo hacemos. A veces para poder sobrevivir y otras simplemente porque tenemos miedo. Ya sabes, no soy muy hablador, especialmente con extraños, pero tú pareces un buen tipo. Si lograste ganarte mi confianza, creo que podrías llegar a llevarte bien con cualquier otra persona. Después de todo, solo las relaciones personales nos ayudarán a sobrevivir. Habla con Pável Yegórovich. Cuando él comience a confiar en ti, tal vez sea capaz de preparar un suministro de pólvora. Ya lo sé, él no es ningún santo, pero su pólvora es fundamental para mí.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pável Yegórovich es uno de los pocos que se quedaron. Me pregunto si se habrá quedado porque es militar o simplemente no tuvo tiempo de salir. Aunque siento que él tiene algunos negocios turbios.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Alcanza el Nivel de Lealtad 3 con Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Buena arma, un diseño sólido. No hay pedidos nuevos, pero puedes venir mañana.", "5ae34b8b86f7741e5b1e5d48": "Modifica una Remington Model 870 para que cumpla con las especificaciones requeridas", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Un arma cómoda, magistralmente hecha, gracias. Le diré al cliente que el arma está lista. ", "5ae3550b86f7741cf44fc799": "Modifica un AKM para que cumpla con las especificaciones requeridas", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "Entonces, ¿El AK Zenit está listo? Genial, déjalo en la caja, gracias. Si quieres, puedes regresar mañana para el próximo pedido.", "5ae3570b86f7746efa6b4494": "Modifica un AKS-74N para que cumpla con las especificaciones requeridas", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "¡Creo que ya sé cómo entrenaré a la red neuronal!, Ah, sí, el AK está bien, gracias. Déjalo por ahí en la esquina, después le echaré un vistazo.", "5ae445f386f7744e87761331": "Modifica un AK-105 para que cumpla con las especificaciones requeridas", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "¿Terminaste con el fusil? Genial, entrégamelo. Aquí tengo una llave algo interesante, tal vez te sea de utilidad. Abre una de las puertas de la tienda de armas KIBA en el centro comercial ULTRA. Allí hay piezas para armas bastante buenas, podrían ser útiles para nuestros futuros ensamblajes.", "5ae4479686f7744f6c79b7b3": "Modifica un AS VAL para que cumpla con las especificaciones requeridas", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Bienvenido al equipo, compañero. Entonces, ¿Vamos a los negocios?", "5ae44c6886f7744f1a7eb2b8": "Alcanza el Nivel de Lealtad 2 con Ragman", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Alcanza el Nivel de Lealtad 2 con Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Disparando como todo un francotirador, qué buen pedo. Mis chicos dicen que Intercambio está lleno de cadáveres de Scavs, y el ULTRA ahora está más calmado, así que aquí está tu recompensa, te la ganaste.", "5ae44ecd86f77414a13c970e": "Elimina Scavs en Intercambio", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Localiza la tienda DINO CLOTHES en Intercambio", "5ae4511d86f7740ffc31ccb5": "Localiza la tienda TOP BRAND en Intercambio", "5ae4514986f7740e915d218c": "Sobrevive y extrae de la ubicación", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Localiza y coloca un Marcador MS2000 en el segundo camión de combustible en Intercambio", "5ae452fa86f774336a39758e": "Localiza y coloca un Marcador MS2000 en el tercer camión de combustible en Intercambio", "5ae4531986f774177033c3e6": "Sobrevive y extrae de la ubicación", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Como dicen, la belleza salvará al mundo. Gracias hermano, realmente me ayudaste. Los sombreros se venderán en un solo día, créeme. Toma, aquí está la recompensa.", "5ae4543686f7742dc043c903": "Entrega los Ushankas", "5ae454a086f7742be909a81a": "Entrega los Sombreros vaqueros", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Encuentra en incursión los Sombreros Ushanka con orejeras", "5fd89799c54dc00f463272d3": "Encuentra en incursión los Sombreros vaqueros", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Entrega los manifiestos de carga de OLI", "5ae9b3b186f7745bbc722762": "Localiza y obtén los Manifiestos de carga de IDEA en Intercambio", "5ae9b3c986f77432c81e2ce6": "Entrega los manifiestos de carga de IDEA", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "¿Encontraste los documentos? Muchas gracias. Dámelos, veamos en dónde desapareció nuestra pequeña carga.", "5ae9b5bd86f774307c29df37": "Localiza y obtén los Documentos de la ruta del cargamento de OLI en Intercambio", "5ae9b63286f774229110402d": "Entrega los documentos", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Entrega el gorro de esquí", "5ae455fb86f7744dd8242380": "Encuentra en incursión la Mochila de turista Pilgrim", "5ae4562086f774498b05e0dc": "Entrega la mochila", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Entrega el chaleco balístico", "5ae9b91386f77415a869b3f3": "Obtén un Chaleco balístico BNTI Gzhel-K con una durabilidad del 50-100%", "5ae9b93b86f7746e0026221a": "Entrega el chaleco balístico", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Entrega los chalecos", "5af079e486f77434693ad7f8": "Encuentra en incursión los Chalecos tácticos BlackRock", "5af07a0286f7747dba10d8ac": "Entrega los chalecos", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Entrega el primer libro", "5ae9c0e186f7746419683c5e": "Localiza y obtén el segundo libro de diseño de ropa en Intercambio", "5ae9c10686f774703201f146": "Entrega el segundo libro", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "¡Tranquilo hombre, aguanta, estoy de tu lado! Perdón, solo estaba bromeando. Veo que has dominado tu carisma, eso es bueno. En ese caso, hablemos de negocios.", "5ae9c29386f77427153c7fb0": "Alcanza el nivel requerido con la Habilidad de Carisma", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Parece que todo salió bien, gracias.", "5ae9c38e86f7743515398707": "Alcanza el Nivel de Lealtad 3 con Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Esconde el Shemagh (Verde) en el embarcadero del aserradero en Bosque", "5ae9e2a286f7740de4152a0a": "Esconde las Gafas de sol RayBench Hipster Reserve en el embarcadero del aserradero en Bosque", "5ae9e2e386f7740de4152a0d": "Esconde las Gafas de sol de marco redondo en el embarcadero del aserradero en Bosque", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Una vez asustaste a los Scavs del ULTRA, ¿Te acuerdas hermano? Ahora la gente dice que se está poniendo peor. Se dice que está repleto de todo tipo de escoria. Así que te tengo una misión: comprueba la situación en Intercambio, asegúrate de que sea seguro caminar por allí. Encuentra caminos que sean seguros o cosas así. Necesito que todo salga bien, ¿Me entiendes?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Tú eres como un fantasma o El Hombre Invisible o algo así. Espera, déjame agarrar el mapa. Entonces, los caminos más seguros están aquí y aquí, ¿Cierto? Genial, se lo diré a mis muchachos. Gracias, amigo mío, realmente me ayudaste.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Sobrevive y extrae de Intercambio", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "¡Este sí que es un verdadero Djigit! ¡Reuniré a mis chicos, ellos traerán muchas cosas buenas de Goshan! Ahora, sobre tu recompensa: échale un vistazo a los nuevos modelos de chalecos balísticos, todos tuyos.", "5ae9e55886f77445315f662a": "Obtén la Llave de las cajas registradoras de Goshan", "5ae9e58886f77423572433f5": "Entrega la llave", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "¡No enciendas la linterna, a no ser que quieras quedarte ciego por días! De todos modos, bien hecho, déjalo en esa caja.", "5b47796686f774374f4a8bb1": "Modifica un AK-102 para que cumpla con las especificaciones requeridas", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Vamos, dámelo de una vez, tengo que entregárselo al cliente cuanto antes. Espero que no le hayas contado a nadie para que es este MPX. Bueno, solo podemos desearle suerte a este sujeto.", "5b477b3b86f77401da02e6c4": "Modifica un SIG MPX para que cumpla con las especificaciones requeridas", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Gracias, déjalo por ahí. Ahora estoy un poco ocupado, luego te veo.", "5b477f1486f7743009493232": "Modifica un AKMN para que cumpla con las especificaciones requeridas", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "¿Está listo el fusil? Genial. Supongo que ya te diste cuenta de que el verdadero nombre de Sniper es Dima, se me salió ese dato por accidente hace un tiempo. No le vayas a decir nada a nadie sobre esto, espero que lo entiendas.", "5b47824386f7744d190d8dd1": "Modifica un M1A para que cumpla con las especificaciones requeridas", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Me dan ganas de ponerlo en una vitrina con una luz. Un trabajo magistral, realmente resultó ser una obra maestra.", "5b4783ba86f7744d1c353185": "Modifica un M4A1 para que cumpla con las especificaciones requeridas", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Ah, genial, dámelos. Mechanic fue quien los pidió, seguramente te diste cuenta. Se los mandaré hoy. Gracias, fuiste de gran ayuda.", "5b47884886f7744d1c35327d": "Encuentra en incursión los Acondicionadores de combustible", "5b47886986f7744d1a393e65": "Entrega los objetos", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Entrega la estatuilla", "5b478a6c86f7744d190d8f4d": "Encuentra en incursión un Reloj Roler Submariner de oro para muñeca", "5b478a8486f7744d1c35328b": "Entrega el reloj Roler", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Encuentra en incursión el Huevo dorado", "62a70058ec21e50cad3b6709": "Entrega la estatuilla", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Esconde los Auriculares Peltor ComTac II en el lugar indicado", "5b478c7386f7744d1a393fb1": "Esconde los Cascos 6B47 Ratnik-BSh en el lugar indicado", "5b478cb586f7744d1a393fb5": "Esconde los Chalecos balísticos BNTI Gzhel-K en el lugar indicado", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Localiza y coloca un Marcador MS2000 en el segundo microbús amarillo en Intercambio", "5b478dca86f7744d190d91c2": "Localiza y coloca un Marcador MS2000 en el tercer microbús amarillo en Intercambio", "5b478de086f7744d1c3533a1": "Sobrevive y extrae de la ubicación", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Localiza y obtén el tercer Contenedor químico en Intercambio", "5b4c832686f77419603eb8f0": "Entrega el segundo contenedor químico", "5b4c836486f77417063a09dc": "Entrega el tercer contenedor químico", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "¡Bien, justo a tiempo! Esperemos que mis chicos puedan recuperarse, lo malo es que no sabemos cuál es su grupo sanguíneo, pero al diablo con eso, tampoco es como si tuviéramos más opciones.", "5b47905886f7746807461fe2": "Entrega las mascarillas", "5b4790a886f774563c7a489f": "Entrega los equipos de transfusión sanguínea", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Encuentra en incursión las Mascarillas antipartículas", "5ec1388d83b69d213d3c2ee0": "Encuentra en incursión los Equipos de transfusión sanguínea", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Instala una Cámara WI-FI que vigile el embarcadero en el aserradero de Bosque", "5b47936686f77427fd044025": "Instala una Cámara WI-FI que vigile la carretera al puerto en Aduanas", "5b47938086f7747ccc057c22": "Instala una Cámara WI-FI que vigile la entrada de la tienda Kiba Arms en Intercambio", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Entrega el tercer controlador", "5b4c7aec86f77459732b4b08": "Entrega el segundo giroscopio", "5b4c8e6586f77474396a5400": "Obtén el segundo Giroscopio de Fibra Óptica de Eje-simple en Costa", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtén el primer Controlador de Motor en Bosque", "66d07de6c7ef9040fff0b789": "Entrega el primer controlador", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Esconde las Cadenas de oro bajo el colchón cerca del BTR-82A en la tienda Generic de Intercambio", "5b4796c086f7745877352c2c": "Esconde las Cadenas de oro dentro del microondas del 3° piso de los dormitorios en Aduanas", "5b47971086f774587877ad34": "Esconde las Cadenas de oro en la segunda cabina de madera del aserradero en Bosque", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Elimina operadores PMC en Intercambio entre las 22:00 y las 10:00 horas", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "¿Y bien? ¿Te sientes como Vasili Záitsev? Sniper está satisfecho con los resultados de la primera prueba y ya tiene preparada la siguiente.", "5bc850d186f7747213700892": "Elimina Scavs a más de 40 metros utilizando un fusil de cerrojo con mira metálica", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "No está mal, no está nada mal. Ni siquiera yo podría ser tan certero con mis tiros, ya soy demasiado viejo para eso. Bueno, mientras tú andabas disparando, Sniper estaba preparando tu siguiente prueba.", "5bd983d886f7747ba73fc246": "Realiza impactos en las piernas de cualquier objetivo a más de 40 metros utilizando un fusil de cerrojo", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Realiza impactos en la cabeza de cualquier objetivo a más de 40 metros utilizando un fusil de cerrojo", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Al parecer tienes un buen tiempo de reacción, ya que aún estás aquí parado. ¡Tal y como te lo prometí, toma tu nuevo sombrero! Adelante tirador, hay nuevas pruebas esperándote.", "5bc47e3e86f7741e6b2f3332": "Elimina operadores PMC a menos de 25 metros utilizando un fusil de cerrojo", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "¿Listo? Entonces pongámonos a trabajar. Sniper está muy interesado en ti.", "5bc4813886f774226045cb9a": "Elimina operadores PMC a más de 80 metros utilizando un fusil de cerrojo", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Elimina operadores PMC desde una distancia de al menos 80 metros utilizando un fusil de cerrojo", "657b0567ec71635f16471dd2": "Elimina operadores PMC a más de 80 metros utilizando un fusil de cerrojo", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Buen trabajo, ojos de búho. Redujiste la cantidad de depredadores nocturnos.", "5bc84f7a86f774294c2f6862": "Elimina Scavs entre las 21:00 y las 05:00 horas en Aduanas utilizando un fusil de cerrojo", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "Entre los francotiradores no existe el juego sucio. Buen trabajo muchacho.", "5bc483ba86f77415034ba8d0": "Elimina Scavs Francotiradores utilizando un fusil de cerrojo", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "El enemigo está absolutamente indefenso cuando no sabe de dónde le disparan. Lo hiciste bien, tirador.", "5bc485b586f774726473a858": "Elimina operadores PMC a más de 45 metros utilizando un fusil de cerrojo con supresor", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Esta no es una tarea fácil. Inténtalo de nuevo.", "5bc4893c86f774626f5ebf3e successMessageText": "Parece que a veces ser inteligente no es lo mismo que actuar con inteligencia. Bueno, un viejo y confiable fusil siempre puede ser de ayuda en estos casos. Sniper ha estado en silencio por ahora, así que esperemos un poco antes de tus próximos encargos. Te avisaré cuando haya nuevas pruebas para ti.", "5bc48aed86f77452c947ce67": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo sin morir", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "No debes morir o abandonar la incursión hasta que la misión se entregue al cliente (Estado: M.E.C., D.E.C., Huida)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Esconde el Reloj Roler Submariner de oro en la pila de basura frente a las escaleras del 3° piso de los dormitorios en Aduanas", "5c12320586f77437e44bcb15": "Esconde la Memoria USB con información falsa en la pila de basura frente a las escaleras del 3° piso de los dormitorios en Aduanas", "5c1233ac86f77406fa13baea": "No debes matar a ningún Scav en Aduanas mientras la misión esté activa", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Localiza y obtén la Memoria USB con información falsa en el lugar especificado de Aduanas", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "¡Lo hiciste muy bien, te ganaste mis respetos! Serás el primero al que llame si se me ocurre algo interesante.", "5c0bc95086f7746e784f39ec": "Elimina Scavs utilizando una escopeta de Calibre 12 con supresor", "5c0bcc9c86f7746fe16dbba9": "Elimina operadores PMC utilizando escopetas de Calibre 12 con supresor", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "¡Buen trabajo, amigo mío! Todo salió acorde el plan.", "5c1242fa86f7742aa04fed52": "Elimina operadores PMC en el período de tiempo de las 21:00 a las 06:00 (Excluyendo en Fábrica y Laboratorio)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "Entonces, ¿Qué te pareció? ¿Vale la pena este juguetito? Genial, entonces, entrégamelo. Toma, eso es por la ayuda. Mantente en contacto, puede que llegue a necesitar tu ayuda para probar otras cosas.", "5c1b765d86f77413193fa4f2": "Elimina operadores PMC a más de 60 metros utilizando un Fusil M1A equipado con un supresor Hybrid 46 y una mira Schmidt & Bender PM II 1-8x24", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "¡Eso es todo hombre! Ahora estoy seguro de que no te vas a mear en los pantalones cuando las cosas se pongan feas.", "5c0bdbb586f774166e38eed5": "Alcanza el nivel requerido con la Habilidad de Resistencia al Estrés", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Reserva", "5c137ef386f7747ae10a821e": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Costa", "5c137f5286f7747ae267d8a3": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Aduanas", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Faro", "63aec6f256503c322a190374": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Calles de Tarkov", "64b694c8a857ea477002a408": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Intercambio", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Un francotirador experimentado no se habría expuesto de esa manera. Recupera el aliento y vuelve a intentarlo.", "5c0be13186f7746f016734aa successMessageText": "Francamente, no estaba seguro de que lo conseguirías. Pero aparentemente tú no eres un tipo regular.", "5c0be2b486f7747bcb347d58": "Alcanza el nivel requerido de Habilidad con Fusiles de Cerrojo", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Elimina operadores PMC utilizando un fusil de cerrojo sin morir", "64b67fcd3e349c7dbd06bd16": "No debes morir o abandonar la incursión mientras la misión esté activa (Estado: M.E.C., D.E.C., Abandono)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "¿Los tienes? Excelente, ponlos todos en esa esquina de ahí. Ten cuidado, el equipo es muy frágil. Incluso si todo esto de la clínica llegara a fallar, sé que habrá gente a la que le podrían interesar estas cosas, pero no se lo vayas a decir a nadie. ¿Para qué desperdiciar un equipo tan costoso como este?", "5c0be66c86f7744523489ab2": "Entrega el Oftalmoscopio", "5c0be69086f7743c9c1ecf43": "Entrega el Transiluminador Cutáneo LEDX", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Encuentra en incursión un Oftalmoscopio", "5fd8935b7dd32f724e0fe7ee": "Encuentra en incursión el Transiluminador Cutáneo LEDX", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "Honestamente, no tenía duda alguna sobre ti, tú eres la persona en la que realmente puedo confiar, y no solo en el trabajo.", "5c0d0dfd86f7747f482a89a5": "Alcanza el nivel requerido con la Habilidad de Salud", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "¡Muy bien, muy bien! Mis clientes estarán contentos contigo, mercenario. Toma tu recompensa.", "5c138c4486f7743b056e2943": "Entrega los procesadores", "5c138d4286f774276a6504aa": "Entrega el transmisor", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Encuentra en incursión los Procesadores programables Virtex", "5ec13da983b69d213d3c2ee4": "Encuentra en incursión el Transmisor Militar de Señal Inalámbrica COFDM", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Bien, aún conservas tus manos y piernas intactas, y has hecho todo un relajo, tal y como lo pedí. Entonces serás de utilidad en estos asuntos, guerrero. Aquí está la recompensa, te la ganaste.", "5c1b760686f77412780211a3": "Elimina operadores PMC utilizando granadas de mano", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "¿Ya terminaste? Sabes, esto realmente funcionó, la forma en la que hablan sus líderes ha cambiado un montón. No me juzgues, en situaciones como estas, estamos forzados a negociar con todos, incluso con escorias como ellos. Toma tu recompensa, mercenario.", "5c1b778286f774294438b536": "Elimina Scavs en Intercambio a menos de 60 metros mientras llevas puesto una Máscara antigás o Mascarilla antipartículas", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Elimina Scavs en Intercambio mientras llevas puesto el uniforme de la ONU (Casco UNTAR, Chaleco balístico MF-UNTAR y Fusil M4A1)", "5c1b713f86f774719c22e8a0": "Elimina Scavs en Costa mientras llevas puesto el uniforme de la ONU (Casco UNTAR, Chaleco balístico MF-UNTAR y Fusil M4A1)", "5c1fd66286f7743c7b261f7b": "Elimina Scavs en Bosque mientras llevas puesto el uniforme de la ONU (Casco UNTAR, Chaleco balístico MF-UNTAR y Fusil M4A1)", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimina Scavs en Calles de Tarkov mientras llevas puesto el uniforme de la ONU (Casco UNTAR, Chaleco balístico MF-UNTAR y Fusil M4A1)", "65e08aa9f5879b2586d5fd4c": "Elimina Scavs en Zona Cero mientras llevas puesto el uniforme de la ONU (Casco UNTAR, Chaleco balístico MF-UNTAR y Fusil M4A1)", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Sobrevive y extrae de Costa con el estado de \"Sobrevivido\"", "5c13989886f7747878361a50": "Sobrevive y extrae de Fábrica con el estado de \"Sobrevivido\"", "5c1931e686f7747ce71bcbea": "Sobrevive y extrae de Laboratorio con el estado de \"Sobrevivido\"", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Sobrevive y extrae de Reserva con el estado de \"Sobrevivido\"", "629f08e7d285f377953b2af1": "Sobrevive y extrae de Faro con el estado de \"Sobrevivido\"", "63aec66556503c322a190372": "Sobrevive y extrae de Calles de Tarkov con el estado de \"Sobrevivido\"", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Localiza y coloca un Marcador MS2000 en la segunda reserva de combustible en Bosque", "5c10f94386f774227172c576": "Localiza y coloca un Marcador MS2000 en la tercera reserva de combustible en Bosque", "5c10f94386f774227172c577": "Sobrevive y extrae de la ubicación", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "¡Ahora sí que nos entendemos! Iré por el soldador y me pondré a trabajar. Tal vez el mercado de Bitcoins se estabilice para cuando termine.", "5c1129ed86f7746569440e88": "Entrega los cables", "5c112a1b86f774656777d1ae": "Entrega los capacitores", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Encuentra en incursión los Manojos de cables", "5ca71a1e86f7740f5a5b88a2": "Encuentra en incursión los Capacitores", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "Eso es, ahora estoy completamente seguro de que volverás de tus incursiones con cosas bastante buenas en tu mochila. ¡Bien hecho hermano!", "5c112dc486f77465686bff38": "Alcanza el nivel requerido con la Habilidad de Buscar", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "¿Los tienes? Muy bien. Me pregunto qué pedirá la próxima vez, ¿Un excusado con diamantes incrustados? Pero bueno, si él realmente llegara a pedirlo, tú tendrás que ir a buscarlo. Gracias por la ayuda, hermano.", "5c11427386f77430ff393793": "Entrega las teteras", "5c122c5f86f77437e44bcb0e": "Entrega los jarrones", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Encuentra en incursión las Teteras antiguas", "5ca7258986f7740d424a2044": "Encuentra en incursión los Jarrones antiguos", "62a700893e015d7ce1151d90": "Encuentra en incursión la Estatuilla de perico Axel", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Mis hombres me dijeron que se desató la Tercera Guerra Mundial en Aduanas, ¡Tanto los BEARs como los USECs están dándole duro a los Scavs por doquier! Qué buen pedo, excelente trabajo. Aquí está tu recompensa, como lo prometí.", "5c1fa9c986f7740de474cb3d": "Elimina operadores PMC en Aduanas. Debes llevar puesto el equipo exigido", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Alcanza el Nivel de Lealtad 4 con Peacekeeper", "5c12489886f77452db1d2b05": "Alcanza el Nivel de Lealtad 4 con Prapor", "5c1248ef86f77428266184c2": "Alcanza el Nivel de Lealtad 4 con Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Alcanza el Nivel de Lealtad 4 con Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "¡Los traes! ¿De verdad?, ¡Magnífico! Ahora podré echarles un vistazo más de cerca.", "5c139eb686f7747878361a72": "Entrega el lector", "5c139eb686f7747878361a73": "Entrega el módulo de almacenamiento", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Encuentra en incursión el Lector UHF RFID", "5ec14080c9ffe55cca300867": "Encuentra en incursión el Módulo de Almacenamiento Flash VPX", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Hola mercenario. He estado observándote durante bastante tiempo y sé qué eres capaz de completar las tareas que te son asignadas. Tampoco hace falta que te pongas tan altanero, no eres el único que sabe seguir órdenes. Hay muchos otros combatientes como tú, incluso aún más competentes. Quiero ofrecerte un trabajo, darte la oportunidad de formar parte de algo más grande de lo que te puedas imaginar. Si estás listo, entonces este será tu encargo: mi gente opera alrededor de todo Tarkov y, a menudo, dejan recuerdos de sí mismos. La misión es obtener y entregarme esos objetos. Sin hacer preguntas. Estas cosas son extremadamente exóticas. Y supongo que no necesito recordarte de que tienes que obtener todos estos objetos por tu cuenta. Créeme, a diferencia de otros, yo sé cuando la gente está mintiendo. Se te informará sobre el lugar de la entrega. Y una cosa más, todos mis socios han dominado sus habilidades hace mucho tiempo y demostraron ser de confianza, y si tú quieres ser uno de ellos, debes demostrarme que tu entrenamiento no es inferior al de ellos. No intentes contactarme, yo mismo lo haré cuando llegue el momento.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "¿Tienes todos? Bien mercenario. La recompensa que has ganado con tanto esfuerzo está esperándote en el lugar de entrega especificado, tal como se te prometió. Felicidades, y bienvenido.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Entrega el objeto encontrado en incursión: Libro antiguo y maltratado", "5c51bf8786f77416a11e5cb2": "Entrega el objeto encontrado en incursión: Lubricante para armas #FireKlean", "5c51bf9a86f77478bf5632aa": "Entrega el objeto encontrado en incursión: Estatuilla de gallo de oro", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Entrega el objeto encontrado en incursión: Lata de espadines", "5c51c24c86f77416a11e5cb7": "Entrega el objeto encontrado en incursión: Bigote falso", "5c51c25c86f77478bf5632af": "Entrega el objeto encontrado en incursión: Gorro de Kotton", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Entrega el objeto encontrado en incursión: Pedernal viejo", "5c52da5886f7747364267a14": "Entrega el objeto encontrado en incursión: Hacha antigua", "5cb5ddd386f7746ef72a7e73": "Encuentra en incursión el Pedernal viejo", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Encuentra en incursión la Lata de espadines", "5cb5df7186f7747d215eca08": "Encuentra en incursión el Bigote falso", "5cb5df8486f7746ef82c17ea": "Encuentra en incursión el Gorro de Kotton", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Encuentra en incursión la Estatuilla de cuervo", "5ec7998dc1683c0db84484e7": "Entrega el objeto encontrado en incursión: Estatuilla de cuervo", "5ec79aaac1683c0db84484e8": "Encuentra en incursión la Máscara de la peste de Pestily", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Entrega el objeto encontrado en incursión: Billetera WZ", "60d0748820a6283a506aebb1": "Encuentra en incursión el Raticida LVNDMARK's", "60d074ef401d874962160aee": "Entrega el objeto encontrado en incursión: Raticida LVNDMARK's", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Encuentra en incursión el Pasamontañas de Smoke", "60e827faf09904268a4dbc40": "Entrega el objeto encontrado en incursión: Pasamontañas de Smoke", "62a6ff004de19a4c3422ea5d": "Entrega el objeto encontrado en incursión: Llave de montacargas Missam", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "¿Lo tienes? Bien hecho. Bueno, creo que eres digno de contactar a Jaeger de forma directa. Puede que él tenga bastante trabajo para ti.", "5d249a6e86f774791546e952": "Obtén el mensaje de Jaeger con información encriptada", "5d249aa286f77475e8376399": "Entrega el mensaje", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Encuentra el campamento de Jaeger en el lugar especificado de Bosque", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Entrega los Paquetes de ración Iskra encontrados en incursión", "5d24bb4886f77439c92d6bad": "Entrega los Paquetes de fideos instantáneos encontrados en incursión", "5d24bb7286f7741f7956be74": "Entrega las Latas de estofado de carne de res (Grande) encontradas en incursión", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Como algún famoso solía decir \"Flota como mariposa, pica como abeja\". Ese es un buen consejo, será mejor que lo recuerdes. Entonces, ¿Notaste lo fácil que es moverse sin todas esas placas balísticas encima? Cuando eres rápido, no necesitas chalecos balísticos para lidiar con la escoria.", "5d25af3c86f77443ff46b9e7": "Elimina Scavs en Bosque. No debes llevar puesto ningún tipo de chaleco balístico", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Esconde una Botella de agua (0.6 litros) en el búnker ZB-016 en Bosque", "5d2deedc86f77459121c3118": "Esconde un Paquete de ración Iskra en el búnker ZB-014 en Bosque", "5d2defc586f774591510e6b9": "Esconde una Botella de agua (0.6 litros) en el búnker ZB-014 en Bosque", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "¡No te creo! ¿Pudiste sobrevivir todo ese tiempo? Eso es impresionante. Toma, bebe esto, recupera tus fuerzas.", "5d25c5a186f77443fe457661": "Sobrevive 5 minutos en un estado completo de deshidratación (Excluyendo en Fábrica)", "5d9f035086f7741cac4a9713": "Sobrevive y extrae de la ubicación", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "¿Lo conseguiste? Bien hecho. Tu entrenamiento está por completarse, amigo. Si seguimos así, puede que restauremos el orden en la ciudad antes de lo planeado.", "5d25c8c986f77443e47ad47a": "Elimina Scavs mientras sufres el efecto del dolor", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "¿Lo lograste? ¡Asombroso! ¡El sudor ahorra sangre! No te emociones demasiado, hay más encargos para ti.", "5d25d09286f77444001e284c": "Elimina Scavs en Bosque durante una sola incursión sin utilizar ningún tipo de medicamento", "5d25d0d186f7740a22515975": "No debes utilizar ningún tipo de objeto médico mientras la misión esté activa", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "¿Así que pudiste controlarte aún teniendo temblores? ¡Excelente! Para ser honesto, no pensé que lo lograrías, es una prueba muy difícil.", "5d25d4e786f77442734d335d": "Elimina operadores PMC de impactos en la cabeza mientras tienes temblores", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "¿Sobreviviste? Quien se lo hubiera imaginado.", "5d25dc2286f77443e7549028": "Elimina operadores PMC mientras sufres el efecto de aturdimiento", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "¿A cuántos dices que te cargaste? ¿Y te los cargaste a todos sin tener que utilizar las \"gafas\"? En efecto, muchacho, resultaste ser un gran cazador nocturno.", "5d25fd8386f77443fe457cae": "Elimina Scavs entre las 21:00 y las 04:00 horas sin utilizar ningún dispositivo de Visión Nocturna o Térmica (Excluyendo en Fábrica)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "¿Cómo es lo que dice la gente? ¡Lo que es difícil en el entrenamiento se volverá fácil en el combate! Esta habilidad te será útil, créeme. Tu entrenamiento está casi completo. Parece que estás listo para convertirte en el Cazador.", "5d2605ef86f77469ef0f7622": "Alcanza el nivel requerido con la Habilidad de Vitalidad", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "¡Excelente trabajo! Aunque es obvio, en Tarkov hay mucha escoria como esa, seguramente seguirán viniendo. Pero al menos ahora se lo pensarán dos veces antes de ir a destrozar el lugar.", "5d26143c86f77469ef0f894c": "Elimina operadores PMC en el área de las oficinas de Fábrica (Cualquier piso)", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Localiza y neutraliza a Reshala", "5d2710e686f7742e9019a6b2": "Entrega la Pistola TT Dorada de Reshala", "5d66741c86f7744a2e70f039": "Encuentra en incursión la Pistola TT Dorada de Reshala", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "Ellos escogieron ese camino, fue su elección. Hiciste lo correcto cazador, gracias.", "5d2701b586f77469f1599fe2": "Elimina Scavs en cualquier lugar de Tarkov", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "¿Entendiste la lección? Bien. ¿Ves?, puedes desarmar a un enemigo de muchas maneras.", "5d307fc886f77447f15f5b23": "Elimina operadores PMC mientras sufren el efecto de aturdimiento", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Localiza y neutraliza a Killa", "5d271a3486f774483c7bdb12": "Entrega el casco de Killa", "5d667a8e86f774131e206b46": "Encuentra en incursión el Casco balístico Maska-1SCh de Killa", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Localiza y neutraliza a Shturman", "5d272a0b86f7745ba2701532": "Entrega la Llave del alijo de Shturman", "5d2f464e498f71c8886f7656": "Encuentra en incursión la Llave del alijo de Shturman", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "¿Defendiste el honor del uniforme? Muy bien hecho. Que se vayan a la mierda, no hay nada peor que alguien que da un juramento y lo rompe para dedicarse al crimen.", "5d272bd386f77446085fa4f9": "Elimina Scavs que lleven uniforme de policía (Guardaespaldas de Reshala)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "Me enteré de lo que hiciste. Parece que las cosas se han calmado un poco, ahora hay menos saqueadores. Tienes mi gratitud.", "5d2733c586f7741dea4f3072": "Elimina operadores PMC en el área de los Dormitorios de Aduanas", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Bienvenido de nuevo, cazador. ¿Así que te encargaste de los bandidos? Ni siquiera puedo imaginarme lo complicado que habrá sido eso, hiciste un excelente trabajo.", "5d27369586f774457411b264": "Localiza y neutraliza a Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Así que están operando cerca de laboratorios e instalaciones militares... Oh, espero que esto no desate otra guerra, aparte de la que tenemos en estos momentos. Bueno muchacho, a nosotros no nos toca resolver esto, al menos no por ahora.", "5d273a4d86f774457411b266": "Elimina Raiders", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "¿Los tienes? Muy bien. Espero que jamás tenga que volver a ver gente morir de formas tan desesperanzadoras.", "5d27446f86f77475a86565a3": "Entrega el desfibrilador", "5d7782c686f7742fa732bf07": "Entrega los kits CMS", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Encuentra en incursión el Desfibrilador portátil", "5ec1538a92e95f77ac7a2529": "Encuentra en incursión los Kits quirúrgicos CMS", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Localiza la casa del alcalde en la aldea abandonada de Costa", "5d357b9586f7745b422d653f": "Localiza la casa del pescador en la aldea abandonada de Costa", "5d357bb786f774588d4d7e27": "Localiza la casa del sacerdote en la aldea abandonada de Costa", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Sobrevive y extrae de la ubicación con el estado de \"Sobrevivido\"", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "¿Las tienes? Bien, vamos a ver qué es lo que está tramando. Vuelve luego, Mechanic y yo revisaremos las memorias USB, después te informaremos al respecto.", "5d27491686f77475aa5cf5b9": "Entrega las Memorias USB seguras", "5d6949e786f774238a38d9e0": "Encuentra en incursión las Memorias USB seguras", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Entrega el Álbum fotográfico", "5d357e0e86f7745b3f307c56": "Localiza la habitación de Jaeger con vista a la bahía en el Sanatorio de Costa", "5d357e8786f7745b5e66a51a": "Obtén el Álbum fotográfico de Jaeger", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "¿Las conseguiste? Buen trabajo muchacho. Ahora solo tenemos que averiguar cómo localizar este laboratorio. Bueno, yo mismo me ocuparé de este asunto, no te preocupes.", "5d2f375186f7745916404955": "Encuentra en incursión las Tarjetas de acceso al Laboratorio de TerraGroup Labs", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Entrega las tarjetas de acceso", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Adelante, pásale. ¿Quieres un poco de té? Bueno, como sea. Escucha, este es el trato. Pronto vendrán de visita unos amigos míos y quiero ir de cacería con ellos, pero no voy a llevarlos a cazar usando esas escopetas MP ¿Me entiendes? Tengo un par de fusiles occidentales de los buenos, pero primero quiero asegurarme de que estén bien regimados. Y tenemos al cliente perfecto para eso, su nombre es Shturman. Así que prueba mi configuración (Fusil de francotirador de cerrojo Remington Model 700 con una mira telescópica Burris FullField TAC30 1-4x24) en ese asqueroso bastardo. Encuentra una posición de largo alcance y realiza un tiro preciso a la cabeza, de esta forma, ese bastardo no tendrá ninguna posibilidad. No te preocupes muchacho, la recompensa no te decepcionará.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "¡Esos sí que son fusiles y no mamadas! ¡Excelente trabajo! Sabes, creo que podría empezar a adentrarme en esto de ser armero, me gustó mucho. Bueno, sobre la recompensa: mira las cositas que encontré, es posible que llegues a necesitarlas.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Localiza y neutraliza a Shturman de impacto en la cabeza a más de 75 metros utilizando un fusil de francotirador Remington M700 con la mira telescópica especificada", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "¡Mira nomás quién llegó! ¡Hola! Escucha, ¿Conoces la base militar cerca del Sanatorio? Probablemente, hasta has pasado por ahí. En fin, tengo noticias al respecto. Dicen que los viejos almacenes todavía tienen mucha comida, y que grupos de bandidos comenzaron a merodear por ahí, pero no son simples Scavs, estos están bien equipados. Quiero que compruebes si aún queda algo en esos almacenes. Pero ten cuidado, hay mucha gente allí que es realmente peligrosa.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "¿Ya comenzaron a llevarse todo? Entendido, tenemos que actuar rápido.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Localiza el almacén de alimentos en Reserva", "629f1259422dff20ff234b4d": "Sobrevive y extrae de la ubicación", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Entrega la batería militar", "5d4c020a86f77449c463ced6": "Encuentra en incursión los Proyectiles de 30x165 mm - OFZ", "5d4c028c86f774389001e027": "Entrega los Proyectiles OFZ", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "¿Así que has decidido? Son solo un par de inyecciones. Una aquí y la otra por acá. Reposa unos días, relájate y recuerda tomar vitaminas.", "5d6fb8a886f77449db3db8b6": "Entrega los Rublos", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Bien, me dijeron que tomarás el entrenamiento. Bueno, teniendo en cuenta tus habilidades, estoy seguro de que aprenderás rápido.", "5d6fbf0f86f77449d97f738e": "Entrega los Euros", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "¿Lo lograste? Buen trabajo. Espera un minuto, necesito tomar tus medidas y ver qué técnica de costura utilizaré para esto. Tal y como te lo prometí. Pero tienes que entender que estos materiales no son nada baratos, así que prepárate para el precio. Aun así, tiene tres rayas y un logotipo elegante, tú sabes.", "5dc53fd386f77469c87589a3": "Localiza y neutraliza a Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Entrega las telas", "5e38356d86f7742993306cac": "Entrega las telas", "5e3835e886f77429910d4465": "Entrega las cuerdas", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Entrega las telas", "5e383a6386f77465910ce1f8": "Encuentra en incursión las Cuerdas Paracord", "5e383a6386f77465910ce1f9": "Entrega las cuerdas", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Entrega las telas", "5e4d4ac186f774264f75833b": "Encuentra en incursión las Cintas adhesivas KEKTAPE", "5e4d4ac186f774264f75833c": "Entrega las cintas adhesivas", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Entrega las telas", "5e4d515e86f77438b2195249": "Encuentra en incursión las Cintas adhesivas KEKTAPE", "5e4d515e86f77438b219524a": "Entrega las cintas adhesivas", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, llegas justo a tiempo. ¿Quizás ya escuchaste del nuevo doctor que apareció por allí? Pero este no es de la buena naturaleza de Asclepio - él cura a algunas personas y mutila a otras. Dicen que vende medicamentos y realiza cirugías al aire libre. Lo llaman Sanitar, ¿Te lo imaginas? Se instaló en Costa y lo interesante es que la escoria local está muy contenta con él, y es obvio el porqué: él los cura, les proporciona toda clase de botiquines de primeros auxilios y hasta les ha de dar drogas. Eso significa que está muy bien abastecido de suministros. Averigua más sobre este tal Sanitar, pero hazlo sin llamar la atención. Por lo pronto, encuentra los lugares donde suele estar este idiota. Creo que vende y trata a los heridos en los mismos puntos ¿Estás interesado?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "¿Dices que hay un montón de suministros? Supongo que se topó con un almacén médico repleto de cosas y ahora se dedica a venderlas. Como desearía encontrar ese almacén... bueno, como sea, ese ya no es problema tuyo... por ahora.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Coloca un Marcador MS2000 en el primer punto de venta en Costa", "5eda1da9a58a4c49c74165ee": "Coloca un Marcador MS2000 en el segundo punto de venta en Costa", "5eda1dd3317f6066993c1744": "Coloca un Marcador MS2000 en el tercer punto de venta en Costa", "5f0389268580cc37797e0026": "Sobrevive y extrae de la ubicación", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "¿Así que le creíste a esa mujer? ¿Te das cuenta de que ella solo te está engañando para su propio beneficio? ¿Piensas que solamente porque Sanitar trata las heridas de algunas personas, él no es capaz de matar a otras? Te has vuelto completamente loco con tu guerra, no puedes ni distinguir el negro del blanco. Fuera de mi vista, quiero estar solo.", "5edab4b1218d181e29451435 successMessageText": "Hiciste lo correcto. Incluso si algunos otros dicen que Sanitar hizo buenos actos, pero él no hizo más que traer el peor de los males. No creas las mentiras de esa gente. Ya he visto a personas como Sanitar antes: una vez que se vuelven locos, no hay vuelta atrás. Lo único que puedes hacer es dispararles como si fueran perros rabiosos.", "5edab5a6cecc0069284c0ec2": "Localiza y neutraliza a Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Localiza al grupo que fue enviado al Sanatorio en Costa", "5edab8890880da21347b3826": "Localiza al grupo que fue enviado al muelle en Costa", "5edab8e216d985118871ba18": "Localiza al grupo que fue enviado a las fincas en Costa", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Sobrevive y extrae de la ubicación", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "El haber perdido a la gente que envié a Costa fue algo muy desagradable, la verdad, pero una nueva fuente de medicamentos es más importante. Solo necesitamos tomar este caso con un enfoque distinto. Mi asistente se las arregló para sobornar a un lugareño de Costa para que nos contara más cosas sobre Sanitar, el médico que estamos buscando. Resulta que tiene un pequeño destacamento de seguridad, y unos cuantos puntos seguros a lo largo de Costa, pero lo extraño es que él realiza las cirugías al aire libre y suele esconder sus utensilios cerca de estos lugares, en los edificios adyacentes. Consigue esos utensilios, Sanitar será más cooperativo con nosotros si se da cuenta de que somos capaces de pararle el negocio en cualquier momento y tomar el control de su territorio.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "¿Trajiste los utensilios? Ponlos en esa caja, tendré que limpiarlos adecuadamente, no sabemos dónde han estado antes. Se puede apreciar de inmediato que trabaja en condiciones muy malas, todo esto está cubierto de sangre, sin duda son condiciones muy insalubres. Bueno, yo me encargaré de esto. Le haré llegar estos utensilios a Sanitar junto con una carta a través del tipo que logramos sobornar. De esta forma, Sanitar entenderá lo que esperamos de él.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Localiza y obtén el Kit quirúrgico marcado con un símbolo azul de Sanitar en Costa", "5edabb950c502106f869bc04": "Entrega el Kit quirúrgico de Sanitar", "5edabbff0880da21347b382b": "Localiza y obtén el Oftalmoscopio marcado de Sanitar en Costa", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "¡Oye tú, chico rudo! Trae tu culo pa'ca, tengo un trabajo para ti. Escuché que Prapor te envió a buscar un cargamento de drogas de un tal Sanitar. ¡No empieces con tus caras! No me interesan las drogas esas, dejemos que Prapor se las lleve y se las meta por el culo, y tú te quedas con la recompensa ¿Te parece? Lo único que tienes que hacer es poner estas pendejaditas en los contenedores que están en los alijos de Sanitar. Prapor no se dará cuenta de nada, es un trabajo de a grapa y solo te tomará unos minutos, pero a cambio obtendrás una buena recompensa. Pero tienes que hacerlo rápido, antes de que muevan el cargamento.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "¡A huevo que sí, muy bien! Por fin, Prapor va a estar encabronado, probablemente haya montañas de botín. Armas, munición, comida, drogas. ¡Va a estar de poca madre! Pero, nosotros nos encargaremos de eso, sin ti. No te ofendas. Gracias.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Sobrevive y extrae de la ubicación", "5f071a9727cec53d5d24fe3b": "Coloca un Marcador MS2000 en las cajas médicas del Sanatorio en Costa", "5f071ae396d1ae55e476abc4": "Coloca un Marcador MS2000 en las cajas médicas de las fincas en Costa", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "¡Joven, espera! Sabía que Jaeger te pediría que mataras a Sanitar, pero no tienes que hacerlo. Entiendo el punto de vista de Jaeger, para él, Sanitar no es más que alguna especie de monstruo hecho carne y hueso, pero no es así. Estoy segura de que Sanitar solo intenta ayudar a los lugareños. Debido a las circunstancias actuales, él debe realizar cirugías muy complejas y no es extraño que a menudo acaben mal. Él es un doctor con conocimientos de gran valor y puede salvar muchas más vidas. Un doctor que tiene acceso a un almacén de medicamentos que es extremadamente importante para nosotros. Además, ya comenzó a negociar conmigo y pronto empezará a cooperar. Pero para eso, necesito algo que sea de interés para él, y creo saber que es lo que más le llama la atención: el Laboratorio. Supongo que la base de sus experimentos son los estimulantes militares, y ha de necesitar tarjetas de acceso. ¿Podrías encontrar estas cosas para mí? Las tarjetas de acceso las puedes conseguir de la forma que quieras, pero los estimulantes deben estar sellados, así que tendrás que encontrarlos tú mismo.", "5edac34d0bb72a50635c2bfa failMessageText": "Es una lástima que le hayas hecho caso a Jaeger y no a la voz de la razón. Sanitar podría habernos ayudado de muchas formas con sus medicamentos o bien, con su conocimiento. No era un santo, pero ¿Acaso no todos deberían de tener al menos una oportunidad para expiar sus pecados? Pero no, también le has privado de esa elección. Estoy muy decepcionada de ti.", "5edac34d0bb72a50635c2bfa successMessageText": "Gracias. Sabía que tú entenderías lo importante que es Sanitar y sus... medicamentos en estos momentos. Él mostró un gran interés en las tarjetas de acceso y los estimulantes, y ya envió el primer lote de mercancías. Toma, esta es tu parte.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "No mates a Sanitar", "5f04935cde3b9e0ecf03d864": "Entrega las tarjetas", "5f04944b69ef785df740a8c9": "Entrega la tarjeta", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Buenos días a ti mercenario, porque este es un día bastante bueno. Tenía razón, los nuevos estimulantes están vinculados con TerraGroup. Mechanic encontró un poco de información sobre Sanitar, nos salió bastante caro, pero es mejor que nada. Sanitar trabajó para TerraGroup, y no era un empleado común y corriente. Él se graduó de la escuela de medicina, es especialista en enfermedades infecciosas, y también está divorciado... Bueno, esa es toda la información que tenemos de él. Amigo mío, necesito que consigas más información sobre él, estoy muy interesado en saber de dónde tiene acceso a todos esos recursos. Encuentra el lugar donde trabajaba y averigua más.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Hemos decodificado la memoria USB que trajiste. Contenía un montón de información importante, pero no puedo contarte demasiado. Es clasificado. Pero puedo hablarte un poco sobre Sanitar, es un científico. Él creaba y estudiaba narcóticos, para después probarlos en personas. Algo muy... imprudente, o como ellos suelen decir: realizaba investigaciones poco éticas.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Entrega la Memoria USB marcada con cinta azul", "5eec9d054110547f1f545c99": "Encuentra el lugar donde trabajaba Sanitar en Laboratorio", "5eff5674befb6436ce3bbaf7": "Obtén información sobre el trabajo de Sanitar", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Saludos, guerrero. Bueno, este es el trato, me dijo un pajarito que esos ex-militares que aseguraron la base militar en Reserva se abrieron paso excavando hasta un búnker subterráneo. Por supuesto, es obvio que no lo hicieron con sus propias manos, forzaron a Scavs para que hicieran el trabajo, y lo más probable es que ninguno de esos pobres bastardos haya logrado salir con vida de ahí. Sea lo que sea, no tengo ni idea de qué tipo de búnker es ese. Aunque tengo información de que tal vez podría ser un centro de mando. Pero no estoy seguro de si es exactamente un búnker o simplemente un refugio antiaéreo para el personal de la base. Y por lo pronto, no tiene caso enviar a un grupo grande allí abajo, terminarían muriendo a manos de esos Raiders. Comprueba esas catacumbas y dime si vale la pena enviar a mi gente allá abajo. La paga es buena. ¿Te apuntas?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "¿Dices que es un búnker con centro de mando? Al parecer, los rumores no mienten ¿Eh?... ¡A la chingada! Enviaré a mis hombres hoy mismo a que revisen ese lugar. ¡Podría haber montones de mierda de buen valor! En fin, aquí está, toma tu recompensa. Tal y como te lo prometí.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Sobrevive y extrae de la ubicación", "5ee8eea538ca5b3b4f3c4647": "Localiza el búnker subterráneo en Reserva", "5ee8eecc0b4ef7326256c660": "Localiza el centro de mando en el búnker subterráneo de Reserva", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hola mercenario, llegas justo a tiempo, eres exactamente la persona que necesito. ¿Recuerdas ese maldito búnker que encontraste bajo la base militar de Reserva? En resumen, mis muchachos fueron allá abajo, y resultó ser un lugar bastante desagradable. Fue construido con un alto nivel de protección: filtros, generadores, todos los accesos están bloqueados con cerraduras herméticas muy resistentes, es como una fortaleza subterránea. Pero los Raiders lograron abrir el puto búnker y se aferraron a él como garrapatas. Así que mis hombres tuvieron serios problemas, menos de la mitad lograron salir de ahí. Pero ya sabes cómo son estas chingaderas, lo que significa que la cosa se ha vuelto aún más intrigante. Aunque mi gente no quiere ir a morir ahí sin motivo, pero si tú pudieras encontrar una ruta segura para ellos... Tú eres un tipo con experiencia, así que necesito que, a paso lento pero seguro, encuentres dónde están todas las entradas. Los muchachos que sobrevivieron dijeron que las entradas son unas puertas herméticas enormes. Así que dependerá de ti encontrar la forma de entrar.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Bienvenido devuelta, te escucho. Ajá, así que así está la cosa... La puerta hermética está ahí ¿Verdad? Dibújalo en mi mapa, no hay problema. ¿Así que este búnker se conecta con casi todos los edificios de la base? Mierda, qué conveniente, puedes ir a cualquier parte de la base sin que nadie se dé cuenta. Ahora está claro por qué los Raiders están ahí, se puede controlar toda la base desde ahí. ¡Gracias, guerrero! Aquí está tu recompensa.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Sobrevive y extrae de la ubicación", "5ee8ec5ed72d953f5d2aabd1": "Localiza la puerta hermética que lleva al hospital (Alfil Blanco) en Reserva", "5ee8ecd75eb3205dae135d17": "Localiza una de las dos puertas herméticas que llevan al edificio de la academia (Alfil Negro) en Reserva", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "¿Ahí es donde está?, ¿Justo en el primer piso? Mis hombres han estado ahí incontables veces y nunca encontraron nada. ¿Entraste a la habitación?, ¿Encontraste algo que fuera interesante? Bueno, no importa, de todos modos enviaré a mis muchachos a que la revisen. Aquí está tu recompensa, te la has ganado. Gracias.", "5f0488c590eea473df674002": "Localiza la oficina de Sanitar en el Sanatorio", "5f04983ffbed7a08077b4367": "Sobrevive y extrae de la ubicación", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Hola, soldado. Tengo un trabajo para ti. Para ser breve, pedí comunicación con uno de mis grupos, y fue hace bastante tiempo. Envié a este grupo a recoger unas cosas, justo cuando comenzó todo este cagadero. Y me temo que los emboscaron, la última vez que logré ponerme en contacto con ellos, reportaron que los USEC les pisaban los talones cerca de las colinas. Ve a investigar, revisa si alguno de ellos sobrevivió. En su convoy llevaban un vehículo blindado BRDM, una furgoneta Bukhanka y una especie de camión, no recuerdo exactamente de qué tipo. Creo que los USEC debieron haber hecho un campamento en algún lugar cercano, así que mantente alerta. Encuentra mi convoy y el campamento de los USEC, si es que realmente está ahí. Puedes retirarte.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Así que mis muchachos no lo lograron y los transportes fueron saqueados... Y además de eso, ¿Dices que el campamento USEC estaba muy cerca? Eso apesta, el cargamento era muy importante. Bueno, has cumplido con tu parte del trato, así que aquí está la recompensa. Listo, zúmbale pues.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Encuentra el convoy perdido de Prapor en Bosque", "5fd9fad9c1ce6b1a3b486d05": "Localiza el campamento temporal USEC en Bosque", "5fd9fad9c1ce6b1a3b486d0d": "Sobrevive y extrae de la ubicación", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "El viento se estremeció en todo Woods de tanto tiroteo. Esa escoria obtuvo lo que putas se merecía y todo gracias a ti. Toma, una recompensa apropiada por tal hazaña. No seas tímido, también puedes comprar los nuevos fusiles.", "600303250b79c6604058ce30": "Localiza y neutraliza a Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Localiza e inspecciona el segundo LAV III en Reserva", "608925d455f4ac386d7e7fc4": "Coloca un Marcador MS2000 en el primer LAV III", "608930aa1124f748c94b801e": "Localiza e inspecciona el T-90 en Reserva", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "¡Genial, genial, genial! ¡Toma mi dinero! Lo único que te pediré es que no le cuentes a nadie sobre esto, ni una sola palabra.", "60929ad46342771d851b827a": "Obtén el paquete con el Panel de Control de Comandante para T-90M en Reserva", "60929afc35915c62b44fd05c": "Entrega el paquete", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Obtén la tercera carpeta con documentos militares en las oficinas del búnker de mando de Reserva", "60ae0f0586046842a754e21e": "Entrega la segunda carpeta de documentos", "60ae0f17b809a4748759078c": "Entrega la tercera carpeta de documentos", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Ese fue un muy buen trabajo. Espero que hayan entendido cómo son las cosas por aquí y que no pueden simplemente matar a mi gente como si nada. Aquí está la recompensa.", "608bffeee0cc9c2d4d2ccb29": "Elimina Raiders en el búnker de centro de mando en Reserva", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Entrega el primer diario", "60ae12ffb809a474875907aa": "Obtén el Diario médico N.º 2 en Reserva", "60ae134cabb9675f0062cf6e": "Entrega el segundo diario", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "¡Con que así es como se ve! Genial. Gracias, lo estudiaré meticulosamente más tarde. Aquí está tu recompensa, como lo prometí.", "6092942fb0f07c6ea1246e3a": "Obtén el Sistema de Navegación Integrado para MBT en Reserva", "6092947635915c62b44fd05b": "Entrega el sistema de navegación", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "¿Así que la salida funciona? Excelente. Aún estoy preparando tu recompensa, así que mientras tanto cuéntame más sobre el mecanismo de apertura de la puerta del búnker.", "608a94101a66564e74191fc3": "Encuentra la salida secreta sin energía en Reserva", "608a94ae1a66564e74191fc6": "Sobrevive y extrae de la ubicación a través de la salida secreta", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Asombroso, mis muchachos acaban de regresar de la incursión, sanos y salvos, ni un solo rasguño. ¡Aquí está tu recompensa!", "608ab22755f4ac386d7e7fdc": "Elimina Scavs en el depósito subterráneo de Reserva", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Comprueba el segundo arsenal en las barracas al sur (Peón Blanco) de Reserva", "608bd2465e0ef91ab810f98a": "Comprueba la oficina del oficial de guardia en las barracas al este (Peón Negro) de Reserva", "608c187853b9dd01a116f480": "Sobrevive y extrae de la ubicación", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Sobrevive y extrae de la ubicación", "60a4dc7e4e734e57d07fb335": "Coloca un Marcador MS2000 en el primer grupo de tanques de combustible en Reserva", "60b90232ec7c6f5eb510c195": "Coloca un Marcador MS2000 en el segundo grupo de tanques de combustible en Reserva", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "¿Lo hiciste? Ahora el aire casi se siente más fresco. Es una pena que no podamos convencer a esos saqueadores de otra manera.", "608a8356fa70fc097863b8f8": "Elimina Scavs dentro de las barracas principales de Reserva", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Esas son buenas noticias. El mundo ahora está más limpio. Espero que ese bastardo no te haya golpeado con su mazo.", "60c0d187938d68438757cda2": "Localiza y neutraliza a Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Encuentra en incursión la Gorra BOSS de Tagilla", "60cfa5a85f9e6175514de2e3": "Entrega la Gorra BOSS", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Elimina operadores PMC en Intercambio", "60ec0b1871035f300c301acd": "Elimina operadores PMC en Laboratorio", "60ec2b04bc9a8b34cd453b81": "No debes morir o abandonar la incursión mientras la misión esté activa (Estado: M.E.C., D.E.C., Abandono, Huida)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Elimina operadores PMC en Zona Cero", "65e19abadf39d26751b3bb1e": "Elimina operadores PMC en Zona Cero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Elimina operadores PMC en la base Scav de Aduanas", "60ec1e72d7b7cb55e94c1764": "Elimina operadores PMC en la base Scav de Bosque", "60ec2229fd1bf4491c4e4552": "Elimina operadores PMC en el Sanatorio de Costa", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Eso es, así está mejor. Gracias, guerrero. Los muchachos dicen que ahora la cosa está calmada, así que parece que esos cabrones entendieron el mensaje.", "60e8650e5d67b234af3d3926": "Elimina Scavs de impactos a la cabeza", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Santa mierda... ¿Los conseguiste todos tú solo? Eso sí que es tener agallas. Aunque de una vez te digo, algo no está bien acerca de esos psicópatas...", "60e82c12fd1bf4491c4e4547": "Encuentra en incursión los cuchillos extraños", "60e82c5926b88043510e0ad7": "Entrega los cuchillos", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Entrega los LEDX", "60f028ca86abc00cdc03ab89": "Encuentra en incursión los Montones de medicamentos", "60f028f85caf08029e0d6277": "Entrega los Montones de medicamentos", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Encuentra en incursión los Frascos de multivitaminas OLOLO", "62a70168eb3cb46d9a0bba7a": "Entrega las multivitaminas", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Excelente, mercenario. ¡Ahora mi gente podrá operar en el lugar más fácilmente! Gracias por tu trabajo.", "60e745d6479eef59b01b0bdc": "Elimina Raiders en Reserva", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "¡Bien, genial! Los clientes ya nos han recompen- ah, agradecido, por el éxito de la misión. Buen trabajo mercenario.", "60e8174d0367e10a450f7818": "Entrega el objeto encontrado en incursión: Placa de identificación BEAR (Nivel 50+)", "60e81795479eef59b01b0bdf": "Entrega el objeto encontrado en incursión: Placa de identificación USEC (Nivel 50+)", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Encuentra en incursión los Transmisores Militares de Señal Inalámbrica COFDM", "60e7449875131b4e61703b7e": "Entrega los procesadores programables", "60e744c9d1a062318d3d2262": "Entrega los transmisores militares de señal", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Encuentra en incursión las Memorias USB militares", "62a7019ea9a0ea77981b57da": "Entrega las memorias USB", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Genial, dame el cuaderno, son todos los resultados que necesitaba. Gracias, mercenario.", "60e740b8b567ff641b129573": "Elimina operadores PMC a más de 100 metros de distancia", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Genial, muchas gracias, amigo. El cliente reportó que recibió los paquetes. No creo que sea el último encargo de su parte, así que seguiré contando contigo.", "60e84ba726b88043510e0ad8": "Esconde una mira térmica Trijicon REAP-IR debajo de la base de la grúa amarilla en el sitio de construcción de Aduanas", "60e85b2a26b88043510e0ada": "Esconde una mira térmica Trijicon REAP-IR detrás de los contenedores de basura de la \"nueva\" gasolinera de Aduanas", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "¡Hermano, mis respetos, fuiste de gran ayuda! Si ves algún sujeto peligroso en el ULTRA, házmelo saber. Puede que necesite que te ocupes de ellos otra vez.", "60e73ee8b567ff641b129570": "Elimina operadores PMC dentro del centro comercial ULTRA en Intercambio", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Entrega el Whisky", "60f028268b669d08a35bfad8": "Encuentra en incursión los Garrafones con agua purificada Superwater", "60f0284e8b669d08a35bfada": "Entrega la Superwater", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Encuentra en incursión las Botellas de cerveza Pevko Light", "62a70110eb3cb46d9a0bba78": "Entrega la Cerveza", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Localiza y neutraliza a Shturman", "60e7261eb567ff641b129557": "Localiza y neutraliza a Glukhar", "60e72629465ea8368012cc47": "Localiza y neutraliza a Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Aquí está, el Veloz. Complaciste a un anciano y lograste sacar conclusiones por ti mismo, o eso espero. Tú mismo eres el arma y el monolito, no la cantidad de acero que llevas puesto.", "60e729cf5698ee7b0505743c": "Elimina operadores PMC en Bosque. No debes llevar puesto ningún tipo de protección balística", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Valiente decisión, mercenario.", "60effdac12fec20321367038": "Entrega el Contenedor seguro Épsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Escucha hermano, ¿Podrías ayudarme a encontrar la información adecuada sobre alguien? Esta persona ya abandonó la ciudad. ¿Que por qué no puedo encontrarlo yo mismo? Porque su puto nombre es Iván Ivánov. Es en serio, no estoy bromeando. Hay como doscientas mil personas con ese nombre por todo el país. Si pudiéramos encontrar su antigua dirección en Tarkov, quizás podríamos buscarlo en la base de datos. Déjame pensar en más información sobre él... Cierto, creo que solía ser el dueño de un bar. Aunque no sé cuál es el nombre del bar... Escucha, no tengo idea de cómo vas a averiguar cuál era el bar de este sujeto. Oh, acabo de recordar que él hacía ballet. No es broma. Este tipo iba al Teatro Mariinski cada temporada. Incluso intentó organizar algo en nuestro teatro local, pero la gente no estaba muy interesada en las chicas con tutús. ¿Qué quieres que sea más específico? ¡Hermano, no puedo ser más puto específico! Yo confío en ti, usa tu intuición.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "¿Encontraste el bar y la dirección del tipo? Ten, escríbela ahí. Eres mejor que esos psíquicos en la televisión que encuentran a gente desaparecida. ¿Quieres ser detective cuando termine todo esto, hermano? Te conseguiré un sombrero como el de Poirot, te lo prometo.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Localiza el departamento del maestro de ballet en Calles de Tarkov", "63a7daae04d3dc28a52a2109": "Sobrevive y extrae de la ubicación", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Ven aquí, mi estimado empleado. ¿Todo bien en la ciudad? Algunos de mis equipos desaparecieron. Al principio pensé: ¿Por qué chingados alguien sería tan arrogante como para tratar de echar abajo mis operaciones? A no ser que realmente me hayan querido joder o algo así. Al principio sospeché de que era ese barriobajero del Faro. Pero luego recibí un mensaje de Seva Shket. Él escribió que los tenían en una especie de prisión privada. ¿Has escuchado algo sobre eso? Está escondida en algún lugar de los viejos edificios de departamentos. Los trajeados pondrían allí a sus rivales y a cualquier otro que sea más fácil mantenerlo encerrado que dejarlo suelto. Honestamente, yo los mataría si ese fuera mi problema. Pero parece que alguien prefiere mantenerlos encerrados en una cárcel en vez de reventar a los cabrones que los molestan... Este es el asunto: Shket fue el único del grupo que logró escapar, pero ahora está huyendo, no nos ha vuelto a contactar desde que envió ese mensaje. Ese cabrón cara de rata ni siquiera nos dijo dónde podríamos encontrar a los muchachos. Aunque la culpa es de los propios muchachos por descuidarse y permitir que los agarraran como perras desprevenidas, y debería mandarlos a la chingada por semejante cagada. Pero el hecho de que alguien me esté tratando de joder es indignante. Muy bien, suficiente de esta mierda. Averigua dónde tienen a mis muchachos.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "A la puta mierda. ¿Por qué alguien los encerraría allí? Lo entendería si me hubieran mandado una carta diciendo que matarían a mi gente si no pagaba y ese tipo de pendejadas. ¿Un asesino serial o algo así? Como sea, ven más al rato, averiguaré qué es lo que está pasando.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Sobrevive y extrae de la ubicación", "63a7d767f32fa1316250c3da": "Localiza dónde estuvo cautivo el grupo desaparecido en Calles de Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "Es la misma historia otra vez, una nueva grabación, ahora con un símbolo extraño. ¿Qué diablos está pasando? La gente está siendo sacrificada. ¿Pero, a quién? ¿Por qué? Tantas preguntas y ni una sola respuesta. Siempre pienso que será lo peor que veremos jamás, pero cada vez me demuestran que estoy equivocado. Hemos luchado contra saqueadores que solo piensan en el dinero. También a asesinos que solo quieren dispararle a los inocentes. Pero al menos comprendo los motivos en esos casos, su bestia interior venció a la humanidad que existía en su alma. ¿Pero con qué propósito la gente se convierte en estos...? No puedo entenderlo. Bueno soldado, yo los buscaré en el bosque, tú haz lo mismo en la ciudad. Su guarida debe estar en algún lugar. Busca el mismo símbolo, estoy seguro de que lo volveremos a ver.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "¿Lo encontraste? ¿Dónde? ¿Había alguien allí? ¿Qué significa el símbolo? Esto solo genera más preguntas...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Sobrevive y extrae de la ubicación", "63a7d6d61f06d111271f5aeb": "Localiza el punto de encuentro de los Sectarios en Calles de Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "¡Saludos! Bueno, comencemos, ¿Estás emocionado? La misión es bastante específica, necesitamos probar este juguetito ruso en combate cercano, deben ser condiciones de combate real en zonas urbanas. Tengo clientes que no creen en la eficiencia de este juguete... ¿Puedes hacerlos cambiar de opinión?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "¿Y bien? ¿Funciona bien? ¿Es adecuado para entornos urbanos y combates en espacios cerrados?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Elimina operadores PMC en Calles de Tarkov utilizando un subfusil SR-2M con supresor y mira réflex KP-SR2", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "¿Algunos siguen intactos, eh? Bueno, genial, iremos a darles una pequeña visita. Aquí está tu recompensa.", "6572e876dc0d635f633a5718": "Localiza el primer grupo de cajeros automáticos en la Calle Klimov de Calles de Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Explora la tienda Sparja en el Hotel Pinewood", "6572e876dc0d635f633a571e": "Explora la tienda Goshan en Concordia", "6572e876dc0d635f633a5720": "Entrega la Salchicha de res Salty Dog encontrada en incursión", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Cajero Automático N.º 11", "65733403eefc2c312a759df2": "Cajero Automático N.º 12", "65733403eefc2c312a759df4": "Cajero Automático N.º 14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Cajero Automático N.º 15", "65733403eefc2c312a759dfa": "Cajero Automático N.º 16", "65801ad655315fdce2096bec": "Descubre el secreto del éxito de la empresa", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "¿Lo encontraste? ¡Buen trabajo, ahora tráetelo para acá! Y toma tu recompensa, te la mereces.", "6573397ef3f8344c4575cd88": "Localiza el fondo inmobiliario en Calles de Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Localiza y obtén el documento de transacciones inmobiliarias de Tarkov", "658167a0e53c40116f8632fa": "Entrega la información obtenida", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, sí, ya escuché los rumores. La gente pronto clavará a esos punks contra la pared. Hiciste un gran trabajo. Aquí está tu recompensa.", "65734c186dc1e402c80dc1a2": "Elimina a cualquier objetivo mientras llevas puesto un Gorro Bomber y Gafas de sol RayBench Hipster Reserve en Calles de Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Esconde el Gorro Bomber dentro de la barbería en Calles de Tarkov", "657356d0a95a1e7e1a8d8d99": "Esconde las Gafas de sol RayBench Hipster Reserve dentro de la barbería en Calles de Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "¿Está en el puto pantano? Eso explica el maldito precio. ¡Me costará más sacarla de allí y limpiarla!... Bueno, toma, es por ayudarme con todo esto.", "65802b627b44fa5e1463889a": "Localiza la camioneta SUV de Ragman en Costa", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Sobrevive y extrae de la ubicación", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Localiza y obtén el Paquete de pósteres de Bison VS Undertaker en el campamento USEC en Bosque", "664bbb5f217c767c35ae3d51": "Localiza y obtén el Paquete de pósteres de Killa y Tagilla en el campamento USEC en Bosque", "664bbb73c71d456fd03714ca": "Localiza y obtén el Paquete de pósteres de Dinero Fácil en el campamento USEC en Bosque", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "¡Buen trabajo! Kaban y Kollontay están armando toda una tormenta, buscando al que ordenó el ataque. Lo superarán y se darán cuenta de que se están pasando de la raya. Toma, esta es tu recompensa.", "660d5effb318c171fb1ca234": "Elimina a los guardias de Kaban en Calles de Tarkov", "660d5f5a99b1db9725ca1543": "Elimina a los guardias de Kollontay en Calles de Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Gana 6 de 10 partidas en el Modo Clasificatorio en Arena", "662bb24b3d34cd5e19206e63": "Condición de fracaso: Perder 5 partidas", "6633a85e347a2a2b4051a26b": "Entrega Rublos del saldo de EFT", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Condición de Fracaso: Perder 5 partidas", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "Así que viste un cadáver. ¿Lo registraste? ¿Revisaste alrededor? Solamente estoy señalando que estás ciego. El campeón, hasta donde yo sé, traía un diario. Sí, como un adolescente, pero la verdad es que esto juega a tu favor.\n\n¿Por qué no mejor regresas y miras más de cerca? Tiene que haber más información sobre Ref en ese diario, algo sucio sobre él. Hazlo si es que quieres dejar de ser prescindible en la Arena.\n\nY una cosa más: si me traes cualquier información sobre Ref que valga la pena, te pagaré bien.", "66058ccf06ef1d50a60c1f48 failMessageText": "¿Quieres quedarte bajo la falda de Ref? Bueno, haz lo que quieras.", "66058ccf06ef1d50a60c1f48 successMessageText": "Bien hecho. Me alegro de que hayas agarrado tu destino por los huevos.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Localiza y obtén la información comprometedora sobre Ref", "664fd7f0837ee02ad4c8e658": "Entrega la información recuperada", "66563f0a2684eee09e8dcd86": "Localiza la habitación del antiguo campeón", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "El teléfono es falso. Alguien realmente quería que Skier y sus hombres se concentraran en esto. Parece que el juego tiene un nuevo jugador. Lo investigaremos.", "660ab9c4fcef83ea40e29efe": "Entrega el teléfono", "660ac159205fdc5a2afb1665": "Localiza y obtén el Teléfono de Los Inauditos en Aduanas", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Vende cualquier arma a Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "Así que está vacía. Eso es algo bueno: si no hay cadáveres, es probable que los refugiados aún estén vivos. Conoces el principio de superposición, ¿Verdad?\nBueno, volvamos al punto. Revisé el disco duro. Había una contraseña [bmV3ZGF3bi4u] tenía escrito \"importante\" en ella. Creo que puedes resolverlo tú solo.", "6616a9a14df4f14a474c92ba": "Localiza y obtén el disco duro dentro del escondite en el chalé de Faro", "6616a9a98a97f72b921665f2": "Entrega el disco duro", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Localiza y obtén el disco duro dentro del escondite en el chalé de Faro", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "Así que está vacía. Eso es algo bueno: si no hay cadáveres, es probable que los refugiados aún estén vivos. Conoces el principio de superposición, ¿Verdad?\nBueno, volvamos al punto. Revisé el disco duro. Había una contraseña [bmV3ZGF3bi4u] tenía escrito \"importante\" en ella. Creo que puedes resolverlo tú solo.", "6616a9fdfd94e03533038dab": "Localiza y obtén el disco duro dentro del escondite en el chalé de Faro", "6616a9fdfd94e03533038dac": "Entrega el disco duro", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Localiza y obtén el disco duro dentro del escondite en el chalé de Faro", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Entrega el equipamiento", "6669769ff0cb253ff7649f27": "Encuentra en incursión el Chaleco portaplacas Crye Precision AVS (Edición Tagilla)", "666976ab1a6ef5fa7b813883": "Entrega el equipamiento", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Encuentra en incursión el Chaleco táctico LBT-1961A Load Bearing Chest Rig (Edición Goons)", "666977849154974010adb5ec": "Entrega el equipamiento", "666977bfe975ac480a8f914e": "Encuentra en incursión el Sistema de transporte Mystery Ranch NICE COMM 3 BVS (Coyote)", "666977ca5fa54985173f8e2c": "Entrega el equipamiento", "666977f2dd6e511e9f33005a": "Encuentra en incursión el Chaleco portaplacas Crye Precision CPC (Edición Goons)", "666978023255d2720cbdf76d": "Entrega el equipamiento", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "¡Qué pedo, bandido! ¿Cómo has estado? Me dijo un pajarito que hay una revista especial en el centro comercial ULTRA de Intercambio. ¡Escribieron sobre nuestro videojuego ruso, siendo reconocido en todo el mundo! ¡Supongo que a los muchachos se les ocurrió un gran concepto!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "¡Esto sí que es una victoria! ¡La revista se llevó el premio gordo! Parece una auténtica mierda histórica.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Localiza y obtén la edición especial de la revista de videojuegos en Intercambio", "667a95972740eaeca1ecda21": "Entrega el objeto", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "Creo que estoy empezando a entender por qué la gente ve estos \"live streams\". ¡Es adictivo!", "6667579086472aaf0bf7bef5": "Entrega el objeto", "666757c530b9b77ff2d9ac58": "Localiza y obtén el disco duro en la vieja casa de Costa", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Instala una Cámara WI-FI en la saliente de la montaña en Bosque", "667bf840981b1c594af358ce": "Instala una Cámara WI-FI en la torre del muelle en Costa", "667bf845dc371ee9869f185e": "Instala una Cámara WI-FI en el pasillo de la oficina en Fábrica", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "¡Bien hecho! Dicen que hasta en el mundo exterior se enteraron de nuestra pequeña actividad, ¡Ja-ja!", "667442da875be5fb415df535": "Esconde una Estatuilla de gallo de oro en el sitio de la Cámara WI-FI de Prapor en Bosque", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Esconde una Estatuilla de gallo de oro en el sitio de la Cámara WI-FI de Prapor en Costa", "66828746efaecf435dde20ca": "Esconde una Estatuilla de gallo de oro en el sitio de la Cámara WI-FI de Prapor en Fábrica", "66d080533a3c33d823a3477d": "Esconde una Estatuilla de gallo de oro en el sitio de la Cámara WI-FI de Prapor en Fábrica", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hola, amigo. Las cosas han estado un poco difíciles últimamente. A partir de hoy, aumentaré temporalmente los precios de mis productos y servicios hasta que pueda resolver algunos asuntos urgentes. Un amigo mío que es mercenario está formando un equipo para incursionar al laboratorio subterráneo y necesita potencia de fuego fiable. ¿Podrías ayudarme? Veo que sabes tanto sobre los AR como yo, así que pensé en confiarte esto. Necesito un M4A1 con una suma total del retroceso inferior a 300 y una ergonomía de no menor de 70. Lo sé, no es fácil. Ahora, asegúrate de ponerle una mira EOTech XPS3-0, porque el cliente se niega a usar otra mira.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Muchas gracias. Creo que esto me mantendrá bien durante un tiempo.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modifica un M4A1 para que cumpla con las especificaciones requeridas", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "No perdiste nada en el camino, ¿Verdad? Muy bien, entonces es hora de enviar a los ingenieros a hacer algunas mediciones, estamos a punto de descubrir qué esconden estas paredes de la Fábrica. Gracias por tu ayuda, amigo.", "66aa74571e5e199ecd094f1b": "Usa el tránsito de Aduanas a Fábrica (En una sola incursión)", "66aa74571e5e199ecd094f1e": "Elimina Scavs en Fábrica (En una sola incursión)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Localiza y obtén el paquete con herramientas de precisión en el laboratorio de Aduanas", "66ab97d56cb6e3bfd7c79fbc": "Esconde el paquete en el almacén del laboratorio de Fábrica", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "Así que, en efecto, lo has encontrado. ¡Excelente! ¿Cómo es el pasaje? ¿Es seguro? ¿En estado de deterioro, dices? Bueno, parece que esta oportunidad no durará por mucho. Enviaré a mis hombres lo antes posible.", "66aba85403e0ee3101042878": "Localiza el pasaje que conduce a Laboratorio en Calles de Tarkov (En una sola incursión)", "66aba85403e0ee310104287a": "Usa el tránsito de Calles de Tarkov a Laboratorio (En una sola incursión)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Localiza el pasaje que conduce a Calles de Tarkov en Laboratorio (En una sola incursión)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Explora la sala de servidores en Laboratorio (En una sola incursión)", "66b0910951c5294b9d213918": "Explora el domo de contingencias en Laboratorio (En una sola incursión)", "66b10eef0951e90ec383850b": "Explora la sala de control en Laboratorio (En una sola incursión)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "El comprador me ha dicho que todo está en su lugar. Te has ganado tu recompensa y puedes esperar que mis hombres te ayuden en los nuevos senderos.", "66abb32aeb102b9bcd088d62": "Usa el tránsito de Zona Cero a Calles de Tarkov", "66abb39bf1d97b9b55390a79": "Usa el tránsito de Calles de Tarkov a Intercambio", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Usa el tránsito de Intercambio a Aduanas", "66abb3ac416b26ade4a1446c": "Usa el tránsito de Aduanas a Fábrica", "66abb3bf228ace5ca9f3d745": "Usa el tránsito de Fábrica a Bosque", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Instala una Cámara WI-FI en el oso que se sentó en un automóvil en llamas en Bosque", "66debf2e1e254957b82711ff": "Instala una Cámara WI-FI en la silla al revés en Costa", "66debf30802386a45d0adb60": "Instala una Cámara WI-FI en el baño no tan solitario en Costa", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "¡El soldado suertudo ha llegado para su nueva misión! Se rumorea que Tarkov se ha vuelto aún más peligroso. ¿Quién lo hubiera pensado, verdad? Alguien ha comenzado a atacar ciertas áreas con fuego de mortero.\n\nSerá mejor que vayas a ver qué es lo que está pasando. Y sí, esto significa ir directamente al centro de esas zonas de ataque con morteros. Sip. Bueno, hemos observado los bombardeos en la reserva natural, la base militar, la oficina de aduanas y la línea costera. ¡Ve de una vez!", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "¿Vivito y coleando? Eso es genial. Veamos con qué estamos tratando aquí. Alguien robó los morteros y ahora están atacando varios lugares justo antes de que lleguen los suministros aéreos.\n\nMuy sospechoso. No es posible que estos artilleros locales hayan conseguido comunicaciones seguras con el mundo exterior, ¿Verdad? De cualquier manera, todo lo que podemos hacer por ahora es observar.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visita una zona de ataque de mortero activa en cualquier ubicación especificada (Costa, Bosque, Reserva, Aduanas)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Bueno, me han dicho que hubo un cagadero. Puede que no sea tu culpa, pero ese no es el punto. Los pendejos de la planta de tratamiento de agua interceptaron un montón de estas cajas que tenían equipamiento portátil de guerra electrónica.\n\nEs obvio que para el punto en el que estamos son inútiles, pero no voy a dejar que roben propiedad del gobierno solo porque sí.\n\nLa tarea es sencilla, para un guerrero como tú. Ve a la planta de tratamiento de agua y tráeme esas cositas de guerra electrónica. Y sí, hay que deshacernos de esas ratas.\n\nProbablemente el propio equipamiento de guerra electrónica ya fue entregado a sus comandantes, así que está garantizado que conseguirás este equipo de ellos. Asumiendo que no mueras, supongo.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Espléndido, ya llegaron los nuevos juguetes. Les van a encantar a mis muchachos. Hoy en día hay que estar preparado para cualquier cosa, y una protección como esta no está de más.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Entrega el objeto encontrado en incursión: Dispositivo portátil GARY ZONT para guerra electrónica", "66e19f359fee1e54e0e01f7c": "Elimina Rogues", "66e19f7d534a8ff2bb7e9f89": "Localiza y neutraliza a Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "Todo este tema de ser comerciante me está yendo bastante bien, ¿No te parece? Sabes, si no fuera por mi ingenio, hubiera muerto en este agujero infernal hace mucho tiempo. En fin, me ocuparé de los informes más tarde, no sería la primera vez.\n\nAhora mismo, necesito equipar a los muchachos apostados afuera de mi territorio. Llévales este nuevo equipo que encontramos. Te daré una parte, pero el resto debes conseguirlo tú mismo: ya sabes dónde buscar. No, no te encontrarás con ellos cara a cara. Solo esconde los objetos en el lugar designado.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Bien, ahora que están a salvo de las amenazas aéreas, su misión de combate se cumplirá sin problemas.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Esconde el Dispositivo portátil GARY ZONT para guerra electrónica dentro de la iglesia hundida en Bosque", "66e071c8a9e80c3f25bb1bad": "Esconde las Piezas de repuesto para estaciones de radar dentro del hangar del viejo aserradero en Bosque", "66e0735089627301d900ef1d": "Esconde el Dispositivo portátil GARY ZONT para guerra electrónica dentro de la torre de la estación meteorológica en Costa", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "Ya era hora de que pasaras por aquí. También habrás notado que esos demonios nocturnos salen de todas partes, ¿No es así? Se están armando mucho mejor, ¿Eh? Es como si alguien estuviera trabajando con ellos. Desde arriba, ¿Me entiendes?\n\nDeberíamos investigar qué están tramando esos bastardos. Además, mucho mejor si puedes reducir su número. Solo ten cuidado.\n\nHay un rumor entre los carroñeros de que puedes encontrarte con una bestia invencible por la noche. Dicen que caza y devora humanos.\n\nRecuerdo una historia oriental sobre un demonio así, su apodo era, uh... \"El Oni\". No habría mencionado estas historias antes. Pero ahora definitivamente algo se está tramando, y los pensamientos oscuros no dejan de invadir mi cabeza.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "Entonces, ¿Qué encontraste? Yo tampoco me quedé de brazos cruzados mientras no estabas, me reuní con Partisan. Dice que están preparando un ritual especial y que por eso están saliendo de sus guaridas. Todos mencionan una especie de \"Noche del Culto\".\n\nNo sé de qué se trata, pero definitivamente son malas noticias para Tarkov. Y algo me dice que hay alguien que está orquestando todo. Ese demonio no apareció en nuestras tierras sin ningún motivo.\n\nAnoche vi algo. Su rostro estaba rojo, como si estuviera ardiendo. Agarré mi arma y apunté, pero justo cuando parpadeé, no había nadie allí. Alucinaciones de un anciano, tal vez...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Elimina a la gente nocturna encapuchada", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Muy bien, tengo buenas noticias para ti.\nPartisan logró escuchar a escondidas la conversación de los sectarios antes de que el cable trampa los matara.\n\nEl Heraldo, como lo llaman, está a cargo de todo este desfile de terror. Les prometió que si hacían lo que les decía, recibirían el nuevo Regalo de los Inauditos. ¿Qué demonios? No tengo idea de qué significa esto. Pero estoy seguro de que si les dejas realizar el maldito ritual, habrá innumerables víctimas entre la gente decente. La gente ha comenzado a huir de las calles, dicen que un fantasma está buscando almas.\n\nNo conocemos los detalles de este misterio, ¡Pero definitivamente está conectado con todo el asunto! Y sabemos quién está detrás de esto. Necesitamos eliminar al Heraldo, y si encuentras alguna basura espeluznante cerca de él, intenta enterrarla profundamente en el suelo. Tal vez eso mantenga a raya a los sectarios.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "¿Ya te encargaste de esos bastardos? De todos modos, esas malditas cosas pertenecen al infierno. Con suerte, el resto de los sectarios se darán por vencidos y volverán a sus guaridas.\n\nLo curioso es que Zryachiy también ha estado ausente últimamente. Me pregunto si bajó del faro para terminar el ritual y dejar que esos demonios salieran a la luz del día.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Localiza y neutraliza al Oni", "66e3eb4c4a5359f2db0be81a": "Localiza y neutraliza al Heraldo", "66e3eb65e385f94b38f061d7": "Localiza y neutraliza al Fantasma", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "Supongo que puedes ver lo que está pasando ahora que estás de vuelta. ¡Esos brutos no solo no se han dispersado, sino que han comenzado a organizar sus preparativos con más fuerza!\n\nAcabo de enterarme de que el pobre chico Ryzhy ha sido capturado por el propio Zryachiy. Dicen que será el sacrificio principal. ¡Eso significa que nos estamos quedando sin tiempo!\n\nPartisan sigue en el bosque buscando sectarios, pero ni siquiera él puede hacerlo solo. Ahora nos toca a nosotros limpiar la escoria con nuestras propias manos. Si no hay nadie que lleve a cabo el ritual, tal vez se acabe.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "¡No te muevas, insecto! Ah, eres tú. Están empezando a aparecer por mi zona también. He tenido algunos de esos visitantes antes que tú.\n\n¿Dices que has limpiado Tarkov de los sectarios? Bueno, con pérdidas como esa, no podrán hacer nada en un futuro próximo. Se olvidarán por completo del Heraldo. Sin embargo, no sé si podré dormir tranquilo durante un tiempo.\n\nGracias por tu ayuda. No podría haberlo hecho sin ti.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Elimina a la gente nocturna encapuchada en Zona Cero", "66e3ec28ecbe7102342ea56a": "Elimina a la gente nocturna encapuchada en Faro", "66e3ecad063ef452798d369d": "Elimina a la gente nocturna encapuchada en Costa", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Bien, veo la conexión, así que hiciste todo bien... Oh, son a prueba de DDoS. Pero ¿Qué pasa si podemos acceder a desde aquí, idiotas? Ahí es donde entra Mr. Kerman.\n\n¿Sigues aquí? Lo siento, no tengo tiempo para platicar. Kerman acaba de enviar sus datos, dijo que no va a permitir que los proyectos de TerraGroup arruinen nuestra ciudad.\n\nMientras él deshabilita la seguridad, tengo que formatear los discos para darle a Therapist todo lo que podamos encontrar.", "670411a2cded018840f5b599": "Localiza la computadora requerida en la oficina Cardinal de TerraGroup en Calles de Tarkov", "670411d819aafd130ebc4bb8": "Instala la memoria USB en la computadora para descargar los archivos", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "¡Cómo te atreves! ¡Mi colega hizo una contribución fundamental para salvar la ciudad y no merecía este destino! No sé cómo puedo confiar en ti después de acciones tan atroces.", "67040cae4ac6d9c18c0ade2c successMessageText": "Tomaste la decisión correcta. Sé que Jaeger intentó engañarte para que dañaras a mi colega.\n\nPero te aseguro que esta versión del fármaco era la forma más segura de limpiar la ciudad del virus...", "6706a4ddec997e861c3f6f04": "Propaga la vacuna en Faro", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Propaga la vacuna en Costa", "6706a51fa60dfe2fb85275ed": "Propaga la vacuna en Bosque", "6706a52083168d9e8ed303d8": "Propaga la vacuna en Aduanas", "6706a61a5fb5eedf15ec6234": "Propaga la vacuna en Fábrica", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Propaga la vacuna en Laboratorio", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "¡Espera! ¿No sabías que ella desarrolló esta \"cura\" junto con Sanitar?\n\nApuesto a que hicieron una versión simplificada para poder matar a todos los enfermos sin pestañear, ¡Te lo aseguro! No permitiré que esto pase.\n\nConozco su naturaleza... Seguramente desarrolló una versión menos letal del fármaco para su propio uso o para venderlo.\n\n¡Pero si trabajó en esto con este idiota, eso significa que él es quien la guarda! Castiga a ese bastardo y consigue la versión real del fármaco.\n\nSi no consigues el fármaco en sí, al menos encuentra la receta... ¡Nosotros lo resolveremos a partir de ahí!... ¡Probablemente!", "67040ccdcc1f3752720376ef failMessageText": "¿Qué tan estúpido tienes que ser como para creerle, incluso después de que te dije la verdad palabra por palabra? La sangre de quienes mueran por esta vacuna estará en tus manos, muchacho.\n\nCuando vengan por ti en tus sueños, te darás cuenta de lo que has hecho.", "67040ccdcc1f3752720376ef successMessageText": "Está hecho, ¿Verdad? ¡Se lo hemos restregado en la cara a estos \"empresarios\"!\n\nEsto debería recordarle a la bruja que hizo el Juramento Hipocrático.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Localiza y obtén la vacuna verdadera en la oficina de Sanitar en Costa", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Localiza y neutraliza a Sanitar", "6719135cfab45272c32a8c01": "Entrega el objeto encontrado", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Bueno, tal vez ahora finalmente se acabó. Lo único que importa es que elegiste el lado correcto, muchacho, y tu conciencia está tranquila.\n\nLa cura ciertamente debería funcionar si la crearon ellos mismos, solo tenemos que esperar un poco más.", "6707e6614e617ec94f0e63e0": "Propaga la verdadera vacuna en Faro", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Propaga la verdadera vacuna en Costa", "6707e6614e617ec94f0e63e3": "Propaga la verdadera vacuna en Bosque", "6707e6614e617ec94f0e63e4": "Propaga la verdadera vacuna en Aduanas", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Localiza y explora los almacenes en el depósito de Bosque", "673f2d9a73ff76dd6d5a6344": "Localiza y explora la oficina en el depósito de Bosque", "673f2da118e615f9f5550544": "Localiza y explora los garajes en el depósito de Bosque", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Completa la misión: Una Mano Amiga", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Suena bastante fácil. Yo me encargo.", "673f2cd5d3346c2167020484 declinePlayerMessage": "No puedo ayudarte en este momento.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hola. Supongo que ya habrás visto el BTR que ha estado circulando por Tarkov. El conductor solía ofrecer sus servicios a PMC como tú, pero últimamente ha empezado a trabajar también con Skier. El conductor vino a verme cuando estaba restaurando el BTR. Déjame decirte que fue un desafío bastante interesante. Pero eso no viene al caso.\n\nNo ha estado en contacto durante bastante tiempo y ahora, de repente, ha pedido ayuda. Aparentemente, ha sucedido algo grave. ¿Puedes hablar con él y averiguar qué está pasando? No quedan muchos hombres ingeniosos y ambiciosos en Tarkov. La gente como nosotros debería permanecer unida.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "Le dije que era peligroso formar parte de la pandilla de Skier... De acuerdo, tiene sus privilegios, pero es difícil mantenerse independiente en un negocio tan grande.\n\nMe pregunto quién podría haberse vuelto en contra Skier... Después de todo, el BTR debería estar bajo su protección...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Completa la misión: Retraso en el Envío - Parte 1", "6752f86d538945df8cc3fc3a": "Localiza y obtén el paquete de Prapor en Bosque", "6756bcb3f93f4c1fc2b2d685": "Sobrevive y extrae de la ubicación", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Escucho la Voz de la Oscuridad", "6514134eec10ff011f17cc26 description": "Elimina a Knight 15 veces jugando como PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Eso es un Buen Tiro", "651413e9c31fcb0e163577c9 description": "Elimina a Zryachiy 15 veces jugando como PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/es.json b/Libraries/SptAssets/Assets/database/locales/global/es.json index 3fa61992..4c57c06a 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/es.json +++ b/Libraries/SptAssets/Assets/database/locales/global/es.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Esconde el portadocumentos en Factory, dentro de la caseta de chapa (2º piso, cerda del Portón Nº3)", "5968929e86f7740d121082d3": "Localiza y obtén el Portadocumentos seguro en la oficina del director de Tarcone en Customs", "5977784486f774285402cf52": "Sobrevive y extrae de Factory", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "¡Impresionante! ¡Es casi un maletín nuclear! No me extraña que no hayan escatimado en recursos para sacarlo de allí.", "5968981986f7740d1648df42": "Localiza y obtén el objeto de valor en la habitación 203 de los dormitorios de Customs", "5968988286f7740d14064724": "Entrega el objeto de valor", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Consigue acceso a la habitación 214 de los dormitorios en Customs", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Te lo agradezco desde el fondo de mi corazón. Ni siquiera puedo explicar lo mucho que significa dada nuestra situación, aunque sea poca cosa. La mayoría de las personas se lo hubieran quedado para ellos, pero tú lo has entregado a quienes más lo necesitaban. Sinceramente te lo agradezco.", "5969f98286f774576d4c9542": "Encuentra en incursión los Inyectables de morfina", "5969f99286f77456630ea442": "Entrega los inyectables", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Encuentra en incursión las Bujías de encendido", "596b470c86f77457ca18618a": "Entrega las baterías", "596b472686f77457c7006f8a": "Entrega las bujías", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "¡Y decías que allí no había nada! De todas formas podrían estar vacías, necesito comprobarlas. En cualquier caso, aquí está tu parte.", "5979ee2986f7743ec214c7a4": "Encuentra en incursión las Memorias USB seguras", "5979ee4586f7743ec214c7a5": "Entrega las Memorias USB", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Localiza y marca el tercer camión cisterna con un Marcador MS2000 en Customs", "59c128f386f774189b3c84bb": "Localiza y marca el cuarto camión cisterna con un Marcador MS2000 en Customs", "5c92184386f7746afa2e7840": "Sobrevive y extrae de la localización", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "¡Genial! Toma esto como recompensa. Mientras tanto, entregaré esta USB a mis especialistas para que la desencripten.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Esconde un Fusil de francotirador SV-98 en el bote", "5a27d85286f77448d82084e7": "Esconde una Herramienta multiuso Leatherman en el bote", "5a3ba11786f7742c9d4f5d29": "Localiza el bote oculto junto al rompeolas en Shoreline", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Sobrevive y extrae de la localización", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Genial, puedes contar conmigo a partir de ahora.", "5a56489d86f7740cfe70eba2": "Entrega los Dólares", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "¿Ya la tienes? Déjala apoyada en la esquina, gracias. Es una belleza, ¿no lo crees? En fin, estoy un poco liado ahora mismo, no puedo quedarme a platicar.", "5accd5e386f77463027e9397": "Modifica una MP-133 para que cumpla con las especificaciones requeridas", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Vaya... En las manos adecuadas esta arma podría derrocar regímenes y crear alguna que otra revolución. Déjala en la esquina, la comprobaré después.", "5accd9b686f774112d7173d1": "Modifica un AKS-74U para que cumpla con las especificaciones requeridas", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Muy práctica para el combate cerrado y muy silenciosa... Buena modificación, el cliente estará satisfecho.", "5accde3686f7740cea1b7ec2": "Modifica un MP5 para que cumpla con las especificaciones requeridas", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Gracias, deja el fusil sobre la mesa, se lo daré a Di... ejem, Sniper.", "5acce08b86f7745f8521fa64": "Modifica un DVL-10 para que cumpla con las especificaciones requeridas", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Sí, no puedes esconderte de algo como esto. Adoro el 7,62 milímetros, un gran calibre. Gracias por el trabajo. El siguiente pedido debería ser mañana.", "5acce11786f77411ed6fa6eb": "Modifica un R11 RSASS para que cumpla con las especificaciones requeridas", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Dámela, vamos a ver qué has traído. Sí, el arma de la democracia... Gracias.", "5accdfdb86f77412265cbfc9": "Modifica un M4A1 para que cumpla con las especificaciones requeridas", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Arregla el primer panel de control con un set de herramientas en Factory", "5ac7a51a86f774738a4ffc96": "Arregla el segundo panel de control con un set de herramientas en Factory", "5ac7a5d586f774383111ee63": "Sobrevive y extrae de la localización", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Entrega los objetos", "5ac5061386f77417e429ce7a": "Encuentra en incursión las Placas de circuito impreso", "5ac5062586f774587c327395": "Entrega los objetos", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Localiza el almacén de mercancías incautadas en Customs", "5ac6248586f77416781dd3a3": "Obtén el Paquete con tarjetas gráficas", "5ac624b286f77416781dd3ac": "Entrega el paquete", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Entrega los objetos", "5ac5083d86f7740be2744eed": "Encuentra en incursión los Disipadores de CPU", "5ac5084d86f7740bde1b0031": "Entrega los objetos", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Localiza la primera fuente de la señal en Shoreline", "5ac5e13586f7746074388f93": "Localiza la segunda fuente de la señal en Shoreline", "5ac5e18c86f7743ebd6c9575": "Sobrevive y extrae de la localización", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Entrega los objetos", "5ac5e98886f77479bc6ca201": "Entrega los objetos", "5ac5ea0586f774609f36280c": "Entrega los objetos", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Encuentra en incursión los CPU de PC", "5cb6f88d86f7747d215f09c1": "Encuentra en incursión las Baterías recargables", "5cb6f8de86f7740e9d452685": "Encuentra en incursión las Placas de circuito impreso", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "¿Cuál es el séptimo dígito después del separador decimal en el número Pi? ¿El 110 tal vez? Está bien, cuando llegue el momento te contactaré.", "5ac5eb3286f7746e7a509a09": "Alcanza el nivel requerido con la habilidad de Atención", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Entrega los objetos", "5ac5ef9886f7746e7a509a2d": "Encuentra en incursión las Cajetillas de cigarrillos Wilston", "5ac5eff886f7740f43322559": "Entrega los objetos", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Localiza el segundo punto de extracción en Factory", "5ac61adf86f774741c1bf096": "Localiza el tercer punto de extracción en Factory", "5ac61b1486f7743a8f30fc84": "Sobrevive y extrae de la localización", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Localiza el cuarto punto de extracción en Factory", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "No me gusta fingir, aunque todos lo hacemos. A veces para poder sobrevivir y otras porque simplemente estamos asustados. Ya sabes, no soy muy hablador, especialmente con los extraños, pero parece que eres un buen tipo. Si conseguiste ganarte mi confianza, creo que podrás llevarte bien con cualquiera. Después de todo, solo las relaciones cercanas y personales nos ayudarán a sobrevivir en estas circunstancias. Habla con Pavel Yegorovich. Cuando comience a confiar en ti, quizá yo pueda asegurar el suministro de pólvora. Sé que no es un santo, pero su pólvora es esencial para mí.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich es uno de los pocos que se quedaron. Me pregunto si es porque es militar o porque no tuvo tiempo de escapar. Aunque, presiento que tiene un negocio turbio en marcha.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Llega al Nivel de Lealtad 3 con Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Buen arma, un diseño sólido. No hay pedidos nuevos, pero puedes venir mañana.", "5ae34b8b86f7741e5b1e5d48": "Modifica una Remington Model 870 para que cumpla con las especificaciones requeridas", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Un arma cómoda, magistralmente montada, gracias. Le haré saber al cliente que su arma está lista.", "5ae3550b86f7741cf44fc799": "Modifica un AKM para que cumpla con las especificaciones requeridas", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "¿Está listo el AK Zenit? Bien, déjala en esa caja, gracias. Puedes volver para el próximo encargo mañana, si quieres.", "5ae3570b86f7746efa6b4494": "Modifica un AKS-74N para que cumpla con las especificaciones requeridas", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "¡Creo que he averiguado cómo entrenar a la red neural! Ah, sí, el AK está bien, gracias. Déjalo en la esquina, le echaré un vistazo luego.", "5ae445f386f7744e87761331": "Modifica un AK-105 para que cumpla con las especificaciones requeridas", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "¿Has acabado con el fusil? Bien, déjamelo. Tengo una llave interesante, quizá te sea de utilidad. Abre la tienda de armas KIBA en el centro comercial ULTRA. Tienen unas buenas modificaciones para armas allí, podrían ser útiles para nuestros futuros ensambles.", "5ae4479686f7744f6c79b7b3": "Modifica un AS VAL para que cumpla con las especificaciones requeridas", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Bienvenido al equipo colega. ¿Manos a la obra entonces?", "5ae44c6886f7744f1a7eb2b8": "Llega al Nivel de Lealtad 2 con Ragman", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Llega al Nivel de Lealtad 2 con Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Disparando como todo un francotirador, flipas. Mi gente dice que Interchange está lleno de cuerpos de Scavs y ahora el ULTRA está más tranquilo, por lo tanto, aquí tienes tu recompensa. Te lo has ganado.", "5ae44ecd86f77414a13c970e": "Elimina Scavs en Interchange", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Localiza la tienda DINO CLOTHES en Interchange", "5ae4511d86f7740ffc31ccb5": "Localiza la tienda TOP BRAND en Interchange", "5ae4514986f7740e915d218c": "Sobrevive y extrae de la localización", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Localiza y marca el segundo depósito de combustible con un Marcador MS2000 en Interchange", "5ae452fa86f774336a39758e": "Localiza y marca el tercer depósito de combustible con un Marcador MS2000 en Interchange", "5ae4531986f774177033c3e6": "Sobrevive y extrae de la localización", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "La belleza terminará salvando al mundo, tal como dicen... Gracias, realmente me has ayudado hermano. Los sombreros se van a vender en un solo día, créeme. Toma, aquí tienes una recompensa.", "5ae4543686f7742dc043c903": "Entrega los ushankas", "5ae454a086f7742be909a81a": "Entrega los sombreros vaqueros", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Encuentra en incursión los Sombreros Ushanka con orejeras", "5fd89799c54dc00f463272d3": "Encuentra en incursión los Sombreros de vaqueros", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Entrega los manifiestos de carga de OLI", "5ae9b3b186f7745bbc722762": "Localiza y obtén los Manifiestos de carga de IDEA en Interchange", "5ae9b3c986f77432c81e2ce6": "Entrega los manifiestos de carga de IDEA", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "¿Encontraste los documentos? Muchísimas gracias. Dámelos, vamos a ver dónde ha desaparecido nuestro pequeño cargamento.", "5ae9b5bd86f774307c29df37": "Localiza y obtén los Documentos de la ruta del cargamento de OLI en Interchange", "5ae9b63286f774229110402d": "Entrega los documentos", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Entrega el gorro de esquí", "5ae455fb86f7744dd8242380": "Encuentra en incursión la Mochila Pilgrim de mochilero", "5ae4562086f774498b05e0dc": "Entrega la mochila", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Entrega el chaleco balístico", "5ae9b91386f77415a869b3f3": "Obtén un Chaleco balístico BNTI Gzhel-K con una durabilidad del 50-100%", "5ae9b93b86f7746e0026221a": "Entrega el chaleco balístico", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Entrega los chalecos", "5af079e486f77434693ad7f8": "Encuentra en incursión los Chalecos tácticos BlackRock", "5af07a0286f7747dba10d8ac": "Entrega los chalecos", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Entrega el primer libro", "5ae9c0e186f7746419683c5e": "Localiza y obtén el segundo libro de diseño de ropa en Interchange", "5ae9c10686f774703201f146": "Entrega el segundo libro", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "¡Eh, tranquilo tío, que estoy de tu lado! Ja, ja. Lo siento, solo te estoy vacilando. Veo que has dominado tu carisma, eso es bueno. Entonces, hablemos de negocios.", "5ae9c29386f77427153c7fb0": "Alcanza el nivel requerido con la habilidad de Carisma", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Parece que la cosa ha ido sobre ruedas, gracias.", "5ae9c38e86f7743515398707": "Llega al Nivel de Lealtad 3 con Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Esconde el Pañuelo Shemagh (Verde) en el embarcadero del aserradero en Woods", "5ae9e2a286f7740de4152a0a": "Esconde las Gafas de sol RayBench Hipster Reserve en el embarcadero del aserradero en Woods", "5ae9e2e386f7740de4152a0d": "Esconde las Gafas de sol con montura redondeada en el embarcadero del aserradero en Woods", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Una vez ya le pegaste un susto a los Scavs en el ULTRA, ¿recuerdas hermano? Ahora, según dicen, está poniéndose peor... Está repleto de toda clase de escoria. Así que tengo una tarea para ti: Échale un ojo a Interchange, asegúrate de que esté despejado para dar una vuelta al menos. Encuentra senderos que sean seguros o cosas de ese estilo, ¿vale?, es muy importante que todo salga bien.", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Vaya, eres como un fantasma o El Hombre Invisible. O algo parecido... Espera, deja que coja el mapa. Entonces, los caminos más seguros están aquí y aquí, ¿cierto? Genial, se lo haré saber a mis chicos. Gracias, amigo mío, en verdad me has ayudado.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Sobrevive y extrae de Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "¡Vaya, este sí que es un verdadero Djigit! Reuniré a mis chicos, ¡traerán un montón de cosas de Goshan! Ahora, acerca de tu recompensa: Echa un ojo a los nuevos modelos de chalecos balísticos, todos tuyos.", "5ae9e55886f77445315f662a": "Obtén la Llave de las cajas registradoras de Goshan", "5ae9e58886f77423572433f5": "Entrega la llave", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "¡No enciendas la linterna a no ser que quieras quedarte ciego por varios días! De todos modos, bien hecho, déjala en esa caja.", "5b47796686f774374f4a8bb1": "Modifica un AK-102 para que cumpla con las especificaciones requeridas", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Vamos, dámelo de una vez, tengo que dárselo al cliente cuanto antes. Espero que no le hayas contado a nadie para que es este MPX. Bueno, solo podemos desearle suerte a este tío.", "5b477b3b86f77401da02e6c4": "Modifica un SIG MPX para que cumpla con las especificaciones requeridas", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Gracias, déjala por ahí. Estoy un poco ocupado, hablamos luego.", "5b477f1486f7743009493232": "Modifica un AKMN para que cumpla con las especificaciones requeridas", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "¿Está listo el fusil? Genial. Supongo que ya te habrás dado cuenta de que el verdadero nombre de Sniper es Dima, se me escapó ese detallito por accidente hace un tiempo. No le digas a nadie ni una palabra sobre esto, espero que lo comprendas.", "5b47824386f7744d190d8dd1": "Modifica un M1A para que cumpla con las especificaciones requeridas", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Hace que la quiera poner en una vitrina con una luz sexy que la ilumine... Un trabajo magistral, una auténtica obra maestra.", "5b4783ba86f7744d1c353185": "Modifica un M4A1 para que cumpla con las especificaciones requeridas", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, genial, dámelos. Mechanic ha estado preguntando por ellos, como te puedes haber imaginado. Se los enviaré hoy. Gracias, has sido de gran ayuda.", "5b47884886f7744d1c35327d": "Encuentra en incursión los Acondicionadores de combustible", "5b47886986f7744d1a393e65": "Entrega los objetos", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Entrega la estatuilla", "5b478a6c86f7744d190d8f4d": "Encuentra en incursión un Reloj de oro Roler Submariner", "5b478a8486f7744d1c35328b": "Entrega el reloj Roler", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Encuentra en incursión el Huevo dorado", "62a70058ec21e50cad3b6709": "Entrega la estatuilla", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Esconde los Auriculares Peltor ComTac II en el lugar indicado", "5b478c7386f7744d1a393fb1": "Esconde los Cascos 6B47 Ratnik-BSh en el lugar indicado", "5b478cb586f7744d1a393fb5": "Esconde los Chalecos balísticos BNTI Gzhel-K en el lugar indicado", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Localiza y marca el segundo minibús amarillo con un Marcador MS2000 en Interchange", "5b478dca86f7744d190d91c2": "Localiza y marca el tercer minibús amarillo con un Marcador MS2000 en Interchange", "5b478de086f7744d1c3533a1": "Sobrevive y extrae de la localización", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Localiza y obtén el tercer Contenedor químico en Interchange", "5b4c832686f77419603eb8f0": "Entrega el segundo contenedor", "5b4c836486f77417063a09dc": "Entrega el tercer contenedor", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "¡Bien, has dado en el clavo! Espero que mis chicos se recuperen. Lo malo es que no tenemos ni puta idea de su grupo sanguíneo, pero qué coño, tampoco es que tengan otra opción...", "5b47905886f7746807461fe2": "Entrega las mascarillas", "5b4790a886f774563c7a489f": "Entrega los kits de transfusión", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Encuentra en incursión las Mascarillas antipartículas", "5ec1388d83b69d213d3c2ee0": "Encuentra en incursión los Kits de transfusión sanguínea", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Instala una Cámara WI-FI que vigile el embarcadero en el aserradero de Woods", "5b47936686f77427fd044025": "Instala una Cámara WI-FI que vigile la carretera hacia el puerto en Customs", "5b47938086f7747ccc057c22": "Instala una Cámara WI-FI que vigile la entrada de la tienda Kiba Arms en Interchange", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Entrega el tercer controlador", "5b4c7aec86f77459732b4b08": "Entrega el segundo giroscopio", "5b4c8e6586f77474396a5400": "Obtén el segundo Giroscopio monoeje de fibra óptica en Shoreline", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtén el primer Controlador de motores en Woods", "66d07de6c7ef9040fff0b789": "Entrega el primer controlador", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Esconde las Cadenas de oro bajo el colchón cerca del BTR-82A en la tienda Generic de Interchange", "5b4796c086f7745877352c2c": "Esconde las Cadenas de oro dentro del microondas de la 3ª planta de los dormitorios en Customs", "5b47971086f774587877ad34": "Esconde las Cadenas de oro en la segunda caseta de madera del aserradero en Woods", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Elimina operadores PMC en Interchange entre las 22:00 y las 10:00 horas", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "Bueno, cuéntame, ¿te sientes como Vasili Záitsev? Sniper está satisfecho con los resultados de la primera prueba y ya tiene preparada la siguiente.", "5bc850d186f7747213700892": "Elimina Scavs a más de 40 metros utilizando un fusil de cerrojo con mira metálica (Sin óptica)", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Nada mal... nada mal. Incluso yo no hubiera sido tan preciso con mis disparos, ya soy muy viejo para eso. Mientras estabas disparando, Sniper estaba preparando la siguiente prueba para ti.", "5bd983d886f7747ba73fc246": "Realiza impactos en las piernas de cualquier objetivo a más de 40 metros utilizando un fusil de cerrojo", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Realiza impactos en la cabeza de cualquier objetivo a más de 40 metros utilizando un fusil de cerrojo", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Al parecer tienes un buen tiempo de reacción, ya que aún estás aquí parado. ¡Coge tu nuevo sombrero, tal como te prometí! Adelante tirador, hay nuevas pruebas esperándote.", "5bc47e3e86f7741e6b2f3332": "Elimina operadores PMC a menos de 25 metros utilizando un fusil de cerrojo", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "¿Listo? Vamos a trabajar. Sniper tiene un gran interés en ti.", "5bc4813886f774226045cb9a": "Elimina operadores PMC a más de 80 metros utilizando un fusil de cerrojo", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Elimina operadores PMC desde una distancia de al menos 80 metros usando un fusil de cerrojo", "657b0567ec71635f16471dd2": "Elimina operadores PMC a más de 80 metros utilizando un fusil de cerrojo", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Buen trabajo, ojos de búho. Has planchado a esos depredadores nocturnos.", "5bc84f7a86f774294c2f6862": "Elimina Scavs entre las 21:00 y las 05:00 horas en Customs utilizando un fusil de cerrojo", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "No hay juego sucio entre francotiradores. Buen trabajo chico.", "5bc483ba86f77415034ba8d0": "Elimina Scavs Francotiradores utilizando un fusil de cerrojo", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "El enemigo está absolutamente indefenso cuando no sabe de dónde le están disparando. Lo has hecho bien, tirador.", "5bc485b586f774726473a858": "Elimina operadores PMC a más de 45 metros utilizando un fusil de cerrojo con silenciador", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Esta no es una tarea sencilla. Inténtalo de nuevo.", "5bc4893c86f774626f5ebf3e successMessageText": "Parece que a veces ser inteligente no es suficiente para saber actuar con inteligencia. Bueno, un viejo y confiable fusil de cerrojo siempre puede ser de ayuda en estos casos. Sniper ha estado en silencio por ahora, así que esperemos un poco antes de tus próximos encargos. Te haré saber cuando hay nuevas pruebas para ti.", "5bc48aed86f77452c947ce67": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo sin morir", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "No debes morir o abandonar la incursión hasta que la misión se entregue al cliente (Estado: M.E.C., D.E.C., Huida)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Esconde el Reloj Roler Submariner en la 3ª planta de los dormitorios, junto al montón de basura frente a las escaleras en Customs", "5c12320586f77437e44bcb15": "Esconde la Memoria USB con información falsa en la 3ª planta de los dormitorios, junto al montón de basura frente a las escaleras en Customs", "5c1233ac86f77406fa13baea": "No mates a ningún Scav en Customs mientras la misión esté activa", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Localiza y obtén la Memoria USB con información falsa en el lugar especificado de Customs", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "¡Te has ganado mi respeto, mamonazo! Lo has hecho bien... Te avisaré si tengo algo interesante para ti.", "5c0bc95086f7746e784f39ec": "Elimina Scavs usando escopetas silenciadas de Calibre 12", "5c0bcc9c86f7746fe16dbba9": "Elimina operadores PMC usando escopetas silenciadas de Calibre 12", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "¡Buen trabajo, amigo mío! Todo ha salido según el plan.", "5c1242fa86f7742aa04fed52": "Elimina operadores PMC en el período de tiempo de las 21:00 a las 06:00 (Excluyendo en Factory y The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "Entonces, ¿qué te parece? Esto sí que son juguetes de verdad, ¿eh? Genial, entonces, entrégamelo. Toma, eso es por la ayuda. No andes muy lejos, puede que necesite un poco de ayuda para probar otras cosas.", "5c1b765d86f77413193fa4f2": "Elimina operadores PMC a más de 60 metros utilizando un Fusil M1A equipado con un silenciador Hybrid 46 y una óptica Schmidt & Bender PM II 1-8x24", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "¡Ahí está el tío! Ahora estoy seguro de que no saldrás corriendo cuando las cosas se pongan feas.", "5c0bdbb586f774166e38eed5": "Alcanza el nivel requerido con la habilidad de Resiliencia", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Reserve", "5c137ef386f7747ae10a821e": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Shoreline", "5c137f5286f7747ae267d8a3": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Customs", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Lighthouse", "63aec6f256503c322a190374": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Streets of Tarkov", "64b694c8a857ea477002a408": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Interchange", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Un francotirador experimentado no se hubiera expuesto de esa manera. Recobra el aliento y vuelve a intentarlo.", "5c0be13186f7746f016734aa successMessageText": "¿Francamente? No pensaba que pudieras hacerlo. Pero parece que no eres un cualquiera...", "5c0be2b486f7747bcb347d58": "Alcanza el nivel requerido de habilidad con Fusiles de cerrojo", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Elimina operadores PMC utilizando un fusil de cerrojo sin morir", "64b67fcd3e349c7dbd06bd16": "No debes morir o abandonar la incursión mientras la misión esté activa (Estado: M.E.C., D.E.C., Desertor)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "¿Los has traído? Bien, ponlos todos en esa esquina. ¡Ten cuidado! El equipo es muy frágil. Incluso si falla el negocio de la clínica, sé que habrá gente interesada en estas cosas, pero se lo digas a nadie... ¿Por qué deberíamos desaprovechar este equipo tan caro?", "5c0be66c86f7744523489ab2": "Entrega el Oftalmoscopio", "5c0be69086f7743c9c1ecf43": "Entrega el Transiluminador cutáneo LEDX", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Encuentra en incursión un Oftalmoscopio", "5fd8935b7dd32f724e0fe7ee": "Encuentra en incursión el Transiluminador cutáneo LEDX", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "En realidad no tenía ninguna duda de que eras la persona adecuada para confiarte este trabajo. Y no solo el trabajo...", "5c0d0dfd86f7747f482a89a5": "Alcanza el nivel requerido con la habilidad de Salud", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "¡Muy bien, excelente! Mis clientes estarán contentos contigo, mercenario. Ten, coge tu recompensa.", "5c138c4486f7743b056e2943": "Entrega los procesadores", "5c138d4286f774276a6504aa": "Entrega el transmisor", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Encuentra en incursión los Procesadores programables Virtex", "5ec13da983b69d213d3c2ee4": "Encuentra en incursión el Transmisor Militar de Señal Inalámbrica COFDM", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Bien hecho, parece que no has perdido ninguna parte del cuerpo y has hecho todo un escándalo, tal y como te lo pedí. Entonces podrías llegar a ser de utilidad en estos asuntos, guerrero. Aquí está la recompensa, te la has ganado.", "5c1b760686f77412780211a3": "Elimina operadores PMC utilizando granadas de mano", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "¿Ya lo has hecho? Sabes... creo que ha funcionado. Ha cambiado de repente la forma en la que hablan sus líderes. ¡Vamos, no me lo eches en cara! En este mundo hay que negociar incluso con escoria como esa. Toma tu recompensa, mercenario.", "5c1b778286f774294438b536": "Elimina Scavs en Interchange a menos de 60 metros mientras llevas puesto una Máscara antigás o Mascarilla antipartículas", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Elimina Scavs en Interchange mientras llevas puesto el uniforme de la ONU (Casco UNTAR y chaleco balístico MF-UNTAR y Fusil M4A1)", "5c1b713f86f774719c22e8a0": "Elimina Scavs en Shoreline mientras llevas puesto el uniforme de la ONU (Casco UNTAR y chaleco balístico MF-UNTAR y Fusil M4A1)", "5c1fd66286f7743c7b261f7b": "Elimina Scavs en Woods mientras llevas puesto el uniforme de la ONU (Casco UNTAR y chaleco balístico MF-UNTAR y Fusil M4A1)", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimina Scavs en Streets of Tarkov mientras llevas puesto el uniforme de la ONU (Casco UNTAR y chaleco balístico MF-UNTAR y Fusil M4A1)", "65e08aa9f5879b2586d5fd4c": "Elimina Scavs en Ground Zero mientras llevas puesto el uniforme de la ONU (Casco UNTAR y chaleco balístico MF-UNTAR y Fusil M4A1)", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Sobrevive y extrae de Shoreline con el estado de \"Superviviente\"", "5c13989886f7747878361a50": "Sobrevive y extrae de Factory con el estado de \"Superviviente\"", "5c1931e686f7747ce71bcbea": "Sobrevive y extrae de The Lab con el estado de \"Superviviente\"", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Sobrevive y extrae de Reserve con el estado de \"Superviviente\"", "629f08e7d285f377953b2af1": "Sobrevive y extrae de Lighthouse con el estado de \"Superviviente\"", "63aec66556503c322a190372": "Sobrevive y extrae de Streets of Tarkov con el estado de \"Superviviente\"", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Localiza y marca el segundo alijo de combustible con un Marcador MS2000 en Woods", "5c10f94386f774227172c576": "Localiza y marca el tercer depósito de combustible con un marcador MS2000 en Woods", "5c10f94386f774227172c577": "Sobrevive y extrae de la localización", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "¡Ahora nos estamos entendiendo! Cogeré un soldador y me pondré a trabajar. Puede que el mercado se estabilice ya para entonces.", "5c1129ed86f7746569440e88": "Entrega los cables", "5c112a1b86f774656777d1ae": "Entrega los condensadores", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Encuentra en incursión los Manojos de cables", "5ca71a1e86f7740f5a5b88a2": "Encuentra en incursión los Condensadores", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "Eso es, ahora sí que estoy completamente seguro de que volverás de la incursión con algo bueno en la mochila. ¡Bien hecho hermano!", "5c112dc486f77465686bff38": "Alcanza el nivel requerido con la habilidad de Buscar", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "¿Los has conseguido? Genial. Me pregunto qué pedirá la próxima vez... ¿Una taza de váter con diamantes incrustados? Pero bueno, si él lo pide, tendrás que ir a buscarlo. Gracias por la ayuda hermano.", "5c11427386f77430ff393793": "Entrega las teteras", "5c122c5f86f77437e44bcb0e": "Entrega las vasijas", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Encuentra en incursión las Teteras antiguas", "5ca7258986f7740d424a2044": "Encuentra en incursión las Vasijas antiguas", "62a700893e015d7ce1151d90": "Encuentra en incursión la Estatuilla de un loro Axel", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Mi gente dice que hay un tiroteo de la hostia en Customs, como si hubiera estallado la Tercera Guerra Mundial... ¡Parece que tanto los BEAR como los USEC están dándole duro a los Scavs! Cojonudo, muy buen trabajo. Tal y como lo prometí, aquí está tu recompensa.", "5c1fa9c986f7740de474cb3d": "Elimina operadores PMC en Customs. Debes llevar puesto el equipamiento exigido", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Llega al Nivel de Lealtad 4 con Peacekeeper", "5c12489886f77452db1d2b05": "Llega al Nivel de Lealtad 4 con Prapor", "5c1248ef86f77428266184c2": "Llega al Nivel de Lealtad 4 con Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Llega al Nivel de Lealtad 4 con Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "Los has traído, ¿verdad? ¡Estupendo! Ahora, si me disculpas, debo echarles un vistazo más de cerca...", "5c139eb686f7747878361a72": "Entrega el lector", "5c139eb686f7747878361a73": "Entrega el módulo de almacenamiento", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Encuentra en incursión el Lector UHF RFID", "5ec14080c9ffe55cca300867": "Encuentra en incursión el Módulo de Almacenamiento Flash VPX", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Hola mercenario. Te he estado observando desde hace un tiempo y sé qué eres capaz de completar las tareas que te son asignadas. Tampoco te pongas tan gallito, no eres el único que sabe cómo seguir órdenes. Hay más combatientes como tú, incluso aún más competentes. Te quiero ofrecer un trabajo y darte la oportunidad de ser parte de algo más grande de lo que puedas imaginar. Si estás listo, entonces esta será tu tarea: mi gente opera por todo Tarkov y de vez en cuando dejan recuerdos de sí mismos. La misión es obtener y entregarme esos objetos. Sin preguntas. Estas cosas son extremadamente exóticas. Y supongo que no necesito recordarte que tienes que obtener todos estos objetos por ti mismo. Créeme, a diferencia de otros, yo sé cuando me está mintiendo. Se te informará sobre el lugar de la entrega. Y una cosa más, todos mis socios han perfeccionado sus habilidades hace mucho tiempo y han probado ser de confianza, y si tú quieres ser uno de ellos, demuéstrame que tu entrenamiento no es inferior al de ellos. No intentes contactarme, yo mismo lo haré cuando llegue el momento.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "¿Los has traído todos? Bien mercenario. La recompensa que tanto te ha costado ganar está en el punto de entrega especificado, justo como te prometí. Felicidades y bienvenido.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Entrega el objeto encontrado en incursión: Libro antiguo y maltratado", "5c51bf8786f77416a11e5cb2": "Entrega el objeto encontrado en incursión: Lubricante para armas #FireKlean", "5c51bf9a86f77478bf5632aa": "Entrega el objeto encontrado en incursión: Estatuilla de un gallo de oro", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Entrega el objeto encontrado en incursión: Lata de espadines", "5c51c24c86f77416a11e5cb7": "Entrega el objeto encontrado en incursión: Bigote falso", "5c51c25c86f77478bf5632af": "Entrega el objeto encontrado en incursión: Gorro de Kotton", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Entrega el objeto encontrado en incursión: Pedernal viejo", "5c52da5886f7747364267a14": "Entrega el objeto encontrado en incursión: Hacha vieja", "5cb5ddd386f7746ef72a7e73": "Encuentra en incursión el Pedernal viejo", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Encuentra en incursión la Lata de espadines", "5cb5df7186f7747d215eca08": "Encuentra en incursión el Bigote falso", "5cb5df8486f7746ef82c17ea": "Encuentra en incursión el Gorro de Kotton", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Encuentra en incursión la Estatuilla de un cuervo", "5ec7998dc1683c0db84484e7": "Entrega el objeto encontrado en incursión: Estatuilla de un cuervo", "5ec79aaac1683c0db84484e8": "Encuentra en incursión la Máscara de la peste de Pestily", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Entrega el objeto encontrado en incursión: Cartera WZ", "60d0748820a6283a506aebb1": "Encuentra en incursión el Matarratas LVNDMARK's", "60d074ef401d874962160aee": "Entrega el objeto encontrado en incursión: Matarratas LVNDMARK's", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Encuentra en incursión el Pasamontañas de Smoke", "60e827faf09904268a4dbc40": "Entrega el objeto encontrado en incursión: Pasamontañas de Smoke", "62a6ff004de19a4c3422ea5d": "Entrega el objeto encontrado en incursión: Llave de carretilla elevadora Missam", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "¿Lo tienes? Buen trabajo. Bien, creo que eres digno de que te ponga en contacto con Jaeger. Puede que tenga bastante trabajo para ti.", "5d249a6e86f774791546e952": "Obtén el mensaje de Jaeger con información encriptada", "5d249aa286f77475e8376399": "Entrega el mensaje", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Encuentra el campamento de Jaeger en el lugar especificado de Woods", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Entrega las Raciones Iskra encontradas en incursión", "5d24bb4886f77439c92d6bad": "Entrega los Paquetes de fideos instantáneos encontrados en incursión", "5d24bb7286f7741f7956be74": "Entrega las Latas de estofado de ternera (Grande) encontradas en incursión", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Tal como decía un famoso personaje: \"Flota como una mariposa; pica como una abeja\". Un buen consejo, más te vale recordarlo. Bueno, ¿te has dado cuenta de lo fácil que es moverse sin esas placas balísticas encima? Si te mueves deprisa, no necesitas de chalecos balísticos para lidiar con la escoria.", "5d25af3c86f77443ff46b9e7": "Elimina Scavs en Woods. No debes llevar puesto ningún tipo de chaleco balístico", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Esconde una Botella de agua (0,6 litros) en el búnker ZB-016 de Woods", "5d2deedc86f77459121c3118": "Esconde una Ración Iskra en el búnker ZB-014 de Woods", "5d2defc586f774591510e6b9": "Esconde una Botella de agua (0,6 litros) en el búnker ZB-014 de Woods", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "¡No me lo creo! ¡¿Has conseguido aguantar tanto?! Impresionante. Ahí va, bebe esto, te devolverá tus fuerzas.", "5d25c5a186f77443fe457661": "Sobrevive durante 5 minutos en un estado de deshidratación completa (Excluyendo en Factory)", "5d9f035086f7741cac4a9713": "Sobrevive y extrae de la localización", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "¿Lo has conseguido? Bien hecho. Tu entrenamiento casi está completo, amigo. Si seguimos a este ritmo, quizá podamos encargarnos de limpiar la ciudad antes de lo previsto.", "5d25c8c986f77443e47ad47a": "Elimina Scavs mientras sufres el efecto del dolor", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "¿Lo has logrado? ¡Estupendo! ¡El sudor ahorra sangre, la sangre ahorra vidas, y el cerebro ahorra ambas cosas! No te emociones tanto, tengo más tareas para ti.", "5d25d09286f77444001e284c": "Elimina Scavs en Woods durante una sola incursión sin usar ningún tipo de medicina", "5d25d0d186f7740a22515975": "No debes usar ningún tipo de objeto médico mientras la misión esté activa", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "Entonces, ¿has podido controlar los temblores? ¡Genial! Honestamente, no creía que fueras capaz, la prueba era muy difícil.", "5d25d4e786f77442734d335d": "Elimina operadores PMC de disparo a la cabeza mientras tienes temblores", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Así que... has sobrevivido. ¡Quién lo hubiera pensado!", "5d25dc2286f77443e7549028": "Elimina operadores PMC mientras sufres el efecto de aturdimiento", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "¿Cuántos dices que eran? ¿Y te los cargaste a todos sin las \"gafas\"? En efecto chaval, eres todo un cazador nocturno.", "5d25fd8386f77443fe457cae": "Elimina Scavs entre las 21:00 y las 04:00 horas sin usar ningún dispositivo de Visión Nocturna o Térmica (Excluyendo en Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "¿Cómo es eso que dice la gente? ¡Lo que es difícil en el entrenamiento será fácil en la batalla! Esta habilidad será muy útil, confía en mí. Tu entrenamiento está casi completo. Parece que estás listo para convertirte en Cazador.", "5d2605ef86f77469ef0f7622": "Alcanza el nivel requerido con la habilidad de Vitalidad", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "¡Buen trabajo! Ten por seguro que vendrán otros, hay escoria de sobra en Tarkov. Pero al menos se lo pensarán dos veces antes de destrozarlo todo.", "5d26143c86f77469ef0f894c": "Elimina operadores PMC en la zona de las oficinas de Factory (Cualquier planta)", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Localiza y neutraliza a Reshala", "5d2710e686f7742e9019a6b2": "Entrega la Pistola TT Dorada de Reshala", "5d66741c86f7744a2e70f039": "Encuentra en incursión la Pistola TT Dorada de Reshala", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "Sellaron su destino cuando pusieron el pie sobre la senda equivocada. Has hecho lo correcto, cazador. Gracias.", "5d2701b586f77469f1599fe2": "Elimina Scavs en cualquier lugar de Tarkov", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "¿Has aprendido la lección? Bien. Como has visto, puedes desarmar al enemigo de muchas formas.", "5d307fc886f77447f15f5b23": "Elimina operadores PMC mientras sufren el efecto de aturdimiento", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Localiza y neutraliza a Killa", "5d271a3486f774483c7bdb12": "Entrega el casco de Killa", "5d667a8e86f774131e206b46": "Encuentra en incursión el Casco balístico Maska-1SCh de Killa", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Localiza y neutraliza a Shturman", "5d272a0b86f7745ba2701532": "Entrega la Llave del alijo de Shturman", "5d2f464e498f71c8886f7656": "Encuentra en incursión la Llave del alijo de Shturman", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "¿Has protegido el honor del uniforme? Eso está bien. Qué les jodan, no hay nada peor que jurar bandera y luego caer en la delincuencia.", "5d272bd386f77446085fa4f9": "Elimina Scavs que lleven uniforme de policía (Guardaespaldas de Reshala)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "Me han contado lo que hiciste. Parece que ahora todo está mucho más tranquilo, con bastantes menos saqueadores. Tienes mi gratitud.", "5d2733c586f7741dea4f3072": "Elimina operadores PMC en la zona de los Dormitorios de Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Bienvenido de nuevo, cazador. Entonces, ¿te has encargado de los bandidos? No me puedo ni imaginar lo difícil que habrá sido, has hecho un buen trabajo.", "5d27369586f774457411b264": "Localiza y neutraliza a Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Así que están operando cerca de laboratorios e instalaciones militares... Oh, espero que no comience otra guerra, encima de la que ya tenemos en estos momentos. Bueno, chico, no es cosa nuestra resolverlo, al menos por ahora.", "5d273a4d86f774457411b266": "Elimina Raiders", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "¿Los tienes? Estupendo. Espero no volver a ver morir a nadie más sin poder ayudarlo.", "5d27446f86f77475a86565a3": "Entrega el desfibrilador", "5d7782c686f7742fa732bf07": "Entrega los kits CMS", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Encuentra en incursión el Desfibrilador portátil", "5ec1538a92e95f77ac7a2529": "Encuentra en incursión los Kits quirúrgicos compactos CMS", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Localiza la casa del funcionario en el pueblo abandonado de Shoreline", "5d357b9586f7745b422d653f": "Localiza la casa del pescador en el pueblo abandonado de Shoreline", "5d357bb786f774588d4d7e27": "Localiza la casa del cura en el pueblo abandonado de Shoreline", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Sobrevive y extrae de la ubicación con el estado de \"Superviviente\"", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "¿Las has conseguido? Bien, veamos qué está tramando. Vuelve en un rato, Mechanic y yo comprobaremos las memorias USB, te contaremos lo que averigüemos entonces.", "5d27491686f77475aa5cf5b9": "Entrega las Memorias USB seguras", "5d6949e786f774238a38d9e0": "Encuentra en incursión las Memorias USB seguras", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Entrega el Álbum de fotos", "5d357e0e86f7745b3f307c56": "Localiza la habitación de Jaeger con vistas a la bahía dentro del Balneario de Shoreline", "5d357e8786f7745b5e66a51a": "Obtén el Álbum de fotos de Jaeger", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "¿Las tienes? Buen trabajo, chico. Ahora solo tenemos que averiguar cómo encontrar este laboratorio. Bueno, de eso me ocuparé yo, no te preocupes.", "5d2f375186f7745916404955": "Encuentra en incursión las Tarjetas de acceso a TerraGroup Labs", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Entrega las tarjetas de acceso", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Pasa. ¿Un poco de té? Bueno, como quieras. Escucha, este es el trato. Pronto vendrán de visita algunos amigos. Quiero llevarlos de caza, pero no hay ni que mencionar que no voy a dejarles hacerlo con esas escopetas MP, ¿lo pillas? Tengo un buen par de fusiles occidentales aquí, pero primero debo asegurarme de que el \"zero\" esté ajustado adecuadamente. Y tengo el cliente adecuado para eso, se llama Shturman. Así que prueba mi configuración (Fusil de francotirador de cerrojo Remington Model 700 con óptica Burris FullField TAC30 1-4x24) en ese asqueroso bastardo. Busca una posición de largo alcance y dale un tiro preciso a la cabeza, de esta forma, ese bastardo no tendrá ninguna posibilidad. No te preocupes, la recompensa no te decepcionará.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "¡Vaya pedazo de fusiles! ¡Buen trabajo! Sabes, creo que ya va siendo hora de meterme en esto de ser armero, me ha gustado bastante. Bueno, sobre la recompensa, echa un ojo a esto que he encontrado, puede que lo necesites.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Localiza y neutraliza a Shturman de disparo a la cabeza a más de 75 metros utilizando un fusil de francotirador Remington M700 con la óptica especificada", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "¡Mira a quién tenemos aquí! ¡Hola! Escucha, ¿Conoces la base militar cerca del Balneario? Seguramente ya has estado por allí. Pues tengo noticias. Dicen que los antiguos almacenes aún tienen un montón de comida abandonada, y que un grupo de bandidos han empezado a merodear por ahí, pero no son Scavs normales, están bien equipados. Quiero que eches un vistazo a ver si queda algo en esos almacenes. Pero ten cuidado, hay gente peligrosa de verdad por ahí.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "¿Ya han empezado a llevarse todo? Entendido, tenemos que actuar rápido.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Localiza el almacén de alimentos en Reserve", "629f1259422dff20ff234b4d": "Sobrevive y extrae de la localización", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Entrega la batería militar", "5d4c020a86f77449c463ced6": "Encuentra en incursión los Proyectiles de 30x165 mm - OFZ", "5d4c028c86f774389001e027": "Entrega los proyectiles OFZ", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "¿Ya te has decidido? Solo un par de inyecciones. Aquí y... aquí. Intenta reposar, al menos durante un par de días. Relájate y toma vitaminas.", "5d6fb8a886f77449db3db8b6": "Entrega los Rublos", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Bueno, me dijeron que tomarás el entrenamiento. Considerando tus habilidades apuesto a que aprenderás rápido.", "5d6fbf0f86f77449d97f738e": "Entrega los Euros", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "¿Lo has hecho? ¡Buen trabajo! Dame un minuto, necesito medir tu talla y pensar la técnica que voy a utilizar para la costura. Tal y como te lo prometí. Eh, pero ya lo sabes, los materiales no son precisamente baratos estos días, así que prepárate para el precio. Aun así, tiene tres rayas y un logotipo elegante, ya sabes.", "5dc53fd386f77469c87589a3": "Localiza y neutraliza a Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Entrega los tejidos", "5e38356d86f7742993306cac": "Entrega los tejidos", "5e3835e886f77429910d4465": "Entrega las cuerdas", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Entrega los tejidos", "5e383a6386f77465910ce1f8": "Encuentra en incursión las Cuerdas de paracaídas", "5e383a6386f77465910ce1f9": "Entrega las cuerdas", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Entrega los tejidos", "5e4d4ac186f774264f75833b": "Encuentra en incursión las Cintas adhesivas KEKTAPE", "5e4d4ac186f774264f75833c": "Entrega las cintas adhesivas", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Entrega los tejidos", "5e4d515e86f77438b2195249": "Encuentra en incursión las Cintas adhesivas KEKTAPE", "5e4d515e86f77438b219524a": "Entrega las cintas adhesivas", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, llegas justo a tiempo. ¿Quizá ya has oído que ha aparecido un nuevo doctor? Aunque este sujeto no es de la buena naturaleza de Asclepio - trata a algunas personas, pero a otras las perjudica. Dicen que vende drogas y practica cirugías en plena calle. Lo llaman Sanitar, ¿Puedes imaginarte eso? Se instaló en Shoreline y, lo más interesante, es que los gamberros de la zona están muy contentos con él. Está claro que se encarga de curarlos y les proporciona toda clase de drogas y botiquines, lo que significa que debe tener mucha cantidad. Averigua lo que puedas de este Sanitar, pero hazlo con discreción. Por ahora, encuentra dónde se mueve esa escoria. Creo que hace tanto la venta como las curas en el mismo lugar. ¿Te interesa?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "¿Dices que es bastante decente? Está claro que se hizo con un almacén médico en buenas condiciones y ahora se dedica a vender la mercancía. Me gustaría encontrar ese almacén... pero ya no es problema tuyo. Por ahora.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Marca el primer punto de venta con un Marcador MS2000 en Shoreline", "5eda1da9a58a4c49c74165ee": "Marca el segundo punto de venta con un Marcador MS2000 en Shoreline", "5eda1dd3317f6066993c1744": "Marca el tercer punto de venta con un Marcador MS2000 en Shoreline", "5f0389268580cc37797e0026": "Sobrevive y extrae de la localización", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "¿Así que le has creído a esa mujer? ¿Te das cuenta de que ella solo te está engañando para su propio beneficio? ¿Has pensado que como Sanitar trata a algunas personas no puede matar a otras? Te has vuelto completamente loco con tu guerra, no eres capaz de distinguir entre blanco y negro. Vete de mi vista, quiero estar solo.", "5edab4b1218d181e29451435 successMessageText": "Has hecho lo correcto. Pese a que algunos dicen que Sanitar hizo buenos actos, ha hecho más mal que otra cosa. No te creas las mentiras de esa gente. Ya he visto a personas como Sanitar antes, cuando se vuelven locos ya no hay vuelta atrás. Solo puedes dispararles como a perros rabiosos.", "5edab5a6cecc0069284c0ec2": "Localiza y neutraliza a Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Localiza al grupo que fue enviado al Balneario en Shoreline", "5edab8890880da21347b3826": "Localiza al grupo que fue enviado al muelle en Shoreline", "5edab8e216d985118871ba18": "Localiza al grupo que fue enviado a las casas de campo en Shoreline", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Sobrevive y extrae de la localización", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "Perder a mi gente en Shoreline es ciertamente un evento muy desagradable, pero una nueva fuente de medicinas es aún más importante. Tan solo necesitamos un enfoque diferente para este caso. Mi ayudante ha sobornado con éxito a un lugareño de Shoreline para que nos hable más sobre Sanitar, el médico que buscamos. Resulta que tiene un pequeño destacamento de seguridad y que practica cirugías en plena calle. Es extraño, pero suele esconder los utensilios que utiliza cerca de esos sitios, en edificios colindantes, como pequeños puntos seguros a lo largo de Shoreline. Coge esos utensilios. Sanitar estará más receptivo si se da cuenta de que podemos pararle el negocio en cualquier momento y tomar el control de su territorio.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "¿Has traído los utensilios? Ponlos en esa caja, necesito procesarlos adecuadamente, no sabemos dónde han estado. Se puede apreciar de inmediato que las condiciones sanitarias en las que opera son muy malas, todo está cubierto de sangre. Bueno, esto ya es cosa mía. Le haré llegar estos utensilios a Sanitar junto con una carta a través de nuestro contacto. De esta forma, Sanitar entenderá lo que esperamos de él.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Localiza y obtén el Kit de cirugía marcado con un símbolo azul de Sanitar en Shoreline", "5edabb950c502106f869bc04": "Entrega el kit de cirugía de Sanitar", "5edabbff0880da21347b382b": "Localiza y obtén el Oftalmoscopio marcado de Sanitar en Shoreline", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "¡Eh, tú, tipo duro! Tengo un trabajo para ti. He escuchado que Prapor te ha enviado a encontrar un cargamento de drogas de ese medicucho... ¡No pongas esa cara todavía! No me interesan las drogas, dejemos que Prapor se las lleve y se las meta por el culo, y tú te llevas la recompensa. ¿No te gusta la idea? Solo tienes que poner estas cositas en los contenedores que están en el alijo de Sanitar. Prapor no se enterará de nada, tú solo tardarás un par de minutos, pero la recompensa será buena. Hazlo antes de que muevan los contenedores.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "¡Sí, sí, sí! ¡Joder! Por fin, han salido a la luz los alijos de Prapor, probablemente haya montañas de botín. Armas, munición, comida, drogas... ¡De puta madre! Pero... ya nos encargamos nosotros. No te ofendas. Gracias.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Sobrevive y extrae de la localización", "5f071a9727cec53d5d24fe3b": "Marca el contenedor médico del Balneario con un marcador MS2000 en Shoreline", "5f071ae396d1ae55e476abc4": "Marca el contenedor médico junto a las casas de campo con un Marcador MS2000 en Shoreline", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Joven, espera. Sabía que Jaeger te iba a pedir que mataras a Sanitar, pero no tienes por qué hacerlo. Sé cómo suena el punto de vista de Jaeger, para él solo es una especie de monstruo con piel de cordero, pero no lo es. Estoy segura de que Sanitar solo intenta ayudar a los lugareños. Dadas las circunstancias actuales, debe practicar cirugías muy complejas y no es sorprendente que a menudo acaben mal. Él es doctor y sus conocimientos son muy valiosos, pueden salvar muchas más vidas. Cualquier personal médico con acceso a un alijo de medicinas como el suyo es extremadamente importante para nosotros. Además, ya ha comenzado a negociar conmigo, y pronto cooperará. Pero para esto, necesito algo que le interese y creo que lo que más llama su atención es el laboratorio. Creo que lleva a cabo sus experimentos gracias a los estimulantes militares y ha de necesitar tarjetas de acceso. ¿Puedes encontrar estas cosas para mí? Las tarjetas de acceso las puedes conseguir de la forma que quieras, pero los estimulantes deben estar sellados, así que tendrás que encontrarlos tú mismo.", "5edac34d0bb72a50635c2bfa failMessageText": "Es una lástima que hayas escuchado a ese tal Jaeger y no a la voz de la razón. Sanitar podría habernos ayudado de muchas formas con su conocimiento y sus medicinas. No era un santo, pero, ¿acaso no todo el mundo debería tener la oportunidad de expiar sus pecados? Pero no, lo has privado de eso también. Estoy muy disgustada contigo.", "5edac34d0bb72a50635c2bfa successMessageText": "Gracias. Sabía que entenderías lo importante que es Sanitar y sus... medicinas ahora mismo. Está muy interesado en tarjetas de acceso y estimulantes, y ya ha enviado el primer cargamento de mercancías. Toma, esta es tu parte.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "No mates a Sanitar", "5f04935cde3b9e0ecf03d864": "Entrega las tarjetas", "5f04944b69ef785df740a8c9": "Entrega la tarjeta de acceso", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Buenos días. ¡Porque hoy es un gran día! Tenía razón, los nuevos estimulantes están relacionados con TerraGroup. Mechanic encontró algo de información sobre Sanitar, nos costó caro, pero es mejor que nada. Sanitar trabajaba para TerraGroup y no era un empleado corriente, tiene educación en medicina, es especialista en enfermedades infecciosas, y también está divorciado... Bueno, esa es toda la información que tenemos de él. Dame más, amigo mío, me interesa averiguar de dónde tiene acceso a esos recursos. Encuentra el lugar donde trabaja y entérate de más.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Hemos descifrado la memoria USB. Contiene un montón de información importante, pero no te lo puedo contar todo. Es clasificado. Pero te puedo hablar de Sanitar, es un científico. Estudió y desarrolló drogas, y entonces las probó en gente. Un... calvo muy sucio o, como dicen, dado a la investigación poco ética.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Entrega la Memoria USB marcada con cinta azul", "5eec9d054110547f1f545c99": "Encuentra el lugar de trabajo de Sanitar en The Lab", "5eff5674befb6436ce3bbaf7": "Obtén información sobre el trabajo de Sanitar", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Saludos guerrero. Este es el trato, un pajarito me ha dicho que esos ex militares que aseguraron la base de Reserve se han abierto paso excavando hasta un búnker subterráneo. Como podrás imaginar, no lo hicieron con sus propias manos, forzaron a Scavs para que hicieran el trabajo, y es probable que ninguno de esos pobres bastardos saliera con vida del sitio. Sea como sea, no tengo ni idea de qué tipo de búnker es, pero me ha llegado información de que puede tratarse de un centro de mando. Pero no estoy seguro de si es exactamente un búnker o simplemente un refugio antiaéreo para el personal de la base. Por ahora, no hay razón para enviar a un grupo de reconocimiento a que muera a manos de esos Raiders. Comprueba esas catacumbas y dime si merece la pena enviar a mi gente allá abajo. Te pagaré bien. ¿Te apuntas?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "¿Dices que es un búnker con centro de mando? Los rumores eran ciertos, ¿eh?... ¡Maldita sea! Enviaré a mis hombres de inmediato a que revisen ese lugar. ¡Podría haber un montón de mierda de gran valor! Toma, coge la recompensa. Tal como te había prometido.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Sobrevive y extrae de la localización", "5ee8eea538ca5b3b4f3c4647": "Localiza el búnker subterráneo en Reserve", "5ee8eecc0b4ef7326256c660": "Localiza el centro de mando en el búnker subterráneo de Reserve", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hola mercenario, llegas justo a tiempo, eres exactamente la persona que necesito. ¿Te acuerdas de ese maldito búnker que encontraste bajo la base militar de Reserve? Yendo al grano, mis chicos fueron allí y resultó ser un lugar terrible. Está construido con un nivel de protección muy alto: filtros, generadores, todos los accesos están bloqueados por cierres herméticos muy resistentes, es una maldita fortaleza subterránea. Pero los Raiders consiguieron abrir el puto búnker y engancharse como garrapatas. Así que, mis hombres tuvieron serios problemas, menos de la mitad consiguieron salir de allí. Pero ya sabes, por jodido que sea, ahora es incluso más intrigante. Tal como están las cosas, mis hombres no volverán, pero si tú pudieras encontrar una ruta segura... Eres un tipo con experiencia, así que necesito que, poco a poco, con tus habilidades, encuentres dónde están todas las entradas. Los supervivientes han dicho que son puertas herméticas enormes y muy pesadas. Es cosa tuya encontrar la forma de entrar.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Bienvenido de nuevo, te escucho. Ajá, con que así está la cosa... La puerta hermética está ahí ¿Verdad? Dibújalo en mi esquema, no hay problema. ¿Así que este búnker se conecta a casi todos los edificios de la base? Joder, qué conveniente, se puede llegar a casi cualquier parte de la base sin que nadie se entere. Ahora está claro por qué los Raiders están allí, se puede controlar toda la base desde ese lugar. ¡Gracias, guerrero! Aquí está tu recompensa.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Sobrevive y extrae de la localización", "5ee8ec5ed72d953f5d2aabd1": "Localiza la puerta hermética que lleva al hospital (Alfil Blanco) en Reserve", "5ee8ecd75eb3205dae135d17": "Localiza una de las dos puertas herméticas que llevan al edificio de la academia (Alfil Negro) en Reserve", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "¿Está... justo en la primera planta? Mis hombres han estado allí muchas veces y no han encontrado nada. ¿Entraste a la habitación?, ¿Encontraste algo que fuera interesante? Bueno, no importa, de todos modos enviaré a mis chicos a que la revisen. Aquí está tu recompensa, te la has ganado. Gracias.", "5f0488c590eea473df674002": "Localiza la oficina de Sanitar en el Balneario", "5f04983ffbed7a08077b4367": "Sobrevive y extrae de la localización", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Saludos, soldado. Tengo un trabajo para ti. Yendo al grano, hace ya un tiempo que perdí el contacto con uno de mis grupos. Envié a este grupo a Woods a recoger un cargamento justo cuando inició toda esta mierda. Me temo que fueron emboscados, la última vez que contacté con ellos reportaron que los USEC se estaban acercando a su posición cerca de las colinas. Ve a investigar, comprueba si alguien ha sobrevivido. En su convoy tenían un BRDM, una Bukhanka y algún tipo de camión, no recuerdo exactamente el tipo. Creo que los USEC debieron de haberse establecido cerca, así que mantente alerta. Encuentra mi convoy y el campamento de los USEC, si es que realmente está ahí. Puedes retirarte.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Así que mis chicos no lo consiguieron y los transportes fueron saqueados... Además, ¿dices que hay un campamento USEC cerca? Vaya mierda, el cargamento era muy importante. Bueno, has cumplido con tu parte del trato, así que aquí está la recompensa. Ahora, fuera de aquí.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Encuentra el convoy perdido de Prapor en Woods", "5fd9fad9c1ce6b1a3b486d05": "Localiza el campamento temporal de USEC en Woods", "5fd9fad9c1ce6b1a3b486d0d": "Sobrevive y extrae de la localización", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "Se ha estremecido el viento en todo Woods de tanto tiroteo. Esa escoria tuvo lo que se merecía y todo gracias a ti. Toma, una recompensa apropiada por tu hazaña. No te quedes ahí parado, ahora ya puedes comprar nuevos fusiles.", "600303250b79c6604058ce30": "Localiza y neutraliza a Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Localiza e inspecciona el segundo LAV III en Reserve", "608925d455f4ac386d7e7fc4": "Marca el primer LAV III con un Marcador MS2000", "608930aa1124f748c94b801e": "Localiza e inspecciona el T-90 en Reserve", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "¡Genial, genial, genial! ¡Toma mi dinero! Lo único que te pido es que no le cuentes nada a nadie sobre el trato.", "60929ad46342771d851b827a": "Obtén el paquete con el Panel de Control de Comandante para T-90M en Reserve", "60929afc35915c62b44fd05c": "Entrega el paquete", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Obtén la tercera carpeta con documentos militares en las oficinas del búnker de mando de Reserve", "60ae0f0586046842a754e21e": "Entrega los segundos documentos", "60ae0f17b809a4748759078c": "Entrega los terceros documentos", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Muy buen trabajo. Espero que hayan comprendido cómo son las cosas ahora, no pueden matar a mi gente así como así. Aquí tienes la recompensa.", "608bffeee0cc9c2d4d2ccb29": "Elimina Raiders en el búnker de control de Reserve", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Entrega el primer diario", "60ae12ffb809a474875907aa": "Obtén el Diario médico N.º 2 en Reserve", "60ae134cabb9675f0062cf6e": "Entrega el segundo diario", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "¡Así que así es como son! Genial. Gracias, los estudiaré meticulosamente más tarde. Aquí está tu recompensa, tal como prometí.", "6092942fb0f07c6ea1246e3a": "Obtén el Sistema de Navegación Integrado para MBT en Reserve", "6092947635915c62b44fd05b": "Entrega el sistema de navegación", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "¿Así que funciona la salida? Excelente. Todavía estoy preparando tu recompensa, así que cuéntame más sobre el mecanismo de apertura para la salida.", "608a94101a66564e74191fc3": "Encuentra la salida secreta sin energía en Reserve", "608a94ae1a66564e74191fc6": "Sobrevive y extrae de la localización a través de la salida secreta", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Estupendo, mis chicos han vuelto sanos y salvos de la incursión, sin un rasguño. ¡Aquí tienes tu recompensa!", "608ab22755f4ac386d7e7fdc": "Elimina Scavs en el depósito subterráneo de Reserve", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Comprueba el segundo arsenal en las barracas al sur (Peón Blanco) de Reserve", "608bd2465e0ef91ab810f98a": "Comprueba la oficina del oficial de guardia en las barracas al este (Peón Negro) de Reserve", "608c187853b9dd01a116f480": "Sobrevive y extrae de la localización", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Sobrevive y extrae de la localización", "60a4dc7e4e734e57d07fb335": "Marca el primer grupo de depósitos de combustible con un Marcador MS2000 en Reserve", "60b90232ec7c6f5eb510c195": "Marca el segundo grupo de depósitos de combustible con un Marcador MS2000 en Reserve", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "¿Está hecho? El aire casi parece más fresco ahora. Es una pena que no hayamos podido convencer a esos saqueadores de otra forma.", "608a8356fa70fc097863b8f8": "Elimina Scavs dentro de las barracas principales de Reserve", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Son buenas noticias. Ahora el mundo es un lugar más limpio. Espero que el bastardo no te haya golpeado con su mazo...", "60c0d187938d68438757cda2": "Localiza y neutraliza a Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Encuentra en incursión la Gorra BOSS de Tagilla", "60cfa5a85f9e6175514de2e3": "Entrega la Gorra BOSS", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Elimina operadores PMC en Interchange", "60ec0b1871035f300c301acd": "Elimina operadores PMC en The Lab", "60ec2b04bc9a8b34cd453b81": "No debes morir o abandonar la incursión mientras la misión esté activa (Estado: M.E.C., D.E.C., Desertor, Huida)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Elimina operadores PMC en Ground Zero", "65e19abadf39d26751b3bb1e": "Elimina operadores PMC en Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Elimina operadores PMC en la base Scav de Customs", "60ec1e72d7b7cb55e94c1764": "Elimina operadores PMC en la base Scav de Woods", "60ec2229fd1bf4491c4e4552": "Elimina operadores PMC en el Balneario de Shoreline", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Bien, eso es, así está mejor. Gracias guerrero. Los chicos dicen que se ha calmado la cosa, así que parece que esos cabrones entendieron el mensaje.", "60e8650e5d67b234af3d3926": "Elimina Scavs de disparos a la cabeza", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Ostia puta... ¿En verdad los has conseguido todos tú solo? Eso sí que es tener agallas. Aunque te lo digo de una vez, algo no anda bien sobre esos psicópatas...", "60e82c12fd1bf4491c4e4547": "Encuentra en incursión los cuchillos extraños", "60e82c5926b88043510e0ad7": "Entrega los cuchillos", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Entrega los LEDX", "60f028ca86abc00cdc03ab89": "Encuentra en incursión los Montones de medicamentos", "60f028f85caf08029e0d6277": "Entrega los montones de medicamentos", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Encuentra en incursión los Botes de multivitaminas OLOLO", "62a70168eb3cb46d9a0bba7a": "Entrega las multivitaminas", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Excelente, mercenario. ¡Ahora mi gente podrá operar con mayor facilidad! Gracias por tu trabajo.", "60e745d6479eef59b01b0bdc": "Elimina Raiders en Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "¡Bien, genial! Los clientes ya nos han recompen- ah, agradecido, por el éxito de la misión. Buen trabajo mercenario.", "60e8174d0367e10a450f7818": "Entrega el objeto encontrado en incursión: Chapa de identificación BEAR (Nivel 50+)", "60e81795479eef59b01b0bdf": "Entrega el objeto encontrado en incursión: Chapa de identificación USEC (Nivel 50+)", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Encuentra en incursión los Transmisores Militares de Señal Inalámbrica COFDM", "60e7449875131b4e61703b7e": "Entrega los procesadores programables", "60e744c9d1a062318d3d2262": "Entrega los transmisores militares de señal", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Encuentra en incursión las Memorias USB militares", "62a7019ea9a0ea77981b57da": "Entrega las memorias USB", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Genial, dame el cuaderno, son todos los resultados que necesitaba. Gracias, mercenario.", "60e740b8b567ff641b129573": "Elimina operadores PMC a más de 100 metros de distancia", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Genial, muchas gracias, amigo. El cliente informó que ha recibido los paquetes. Creo que no será el último encargo por parte de él, así que seguiré contando contigo.", "60e84ba726b88043510e0ad8": "Esconde una óptica térmica Trijicon REAP-IR bajo la base de la grúa amarilla en la obra de Customs", "60e85b2a26b88043510e0ada": "Esconde una óptica térmica Trijicon REAP-IR detrás de los contenedores de basura de la \"nueva\" gasolinera de Customs", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "¡Tienes mis respetos hermano, fuiste de gran ayuda! Si ves algún sujeto peligroso en el ULTRA, házmelo saber. Es posible que necesite que te ocupes de ellos de nuevo.", "60e73ee8b567ff641b129570": "Elimina operadores PMC dentro del centro comercial ULTRA en Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Entrega el Whisky", "60f028268b669d08a35bfad8": "Encuentra en incursión las Garrafas con agua purificada Superwater", "60f0284e8b669d08a35bfada": "Entrega la Superwater", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Encuentra en incursión las Botellas de cerveza Pevko Light", "62a70110eb3cb46d9a0bba78": "Entrega la Cerveza", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Localiza y neutraliza a Shturman", "60e7261eb567ff641b129557": "Localiza y neutraliza a Glukhar", "60e72629465ea8368012cc47": "Localiza y neutraliza a Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Aquí está, el Veloz. Has complacido a este viejo, y has sacado conclusiones propias, o eso espero. Tú eres el arma y el monolito, no la cantidad de acero que lleves puesto.", "60e729cf5698ee7b0505743c": "Elimina operadores PMC en Woods. No debes llevar puesto ningún tipo de chaleco balístico ni casco", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Una decisión valiente, mercenario.", "60effdac12fec20321367038": "Entrega el Contenedor seguro Épsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Escucha hermano. ¿Puedes ayudarme a encontrar buena información sobre un tipo? Ya ha dejado la ciudad. ¿Por qué no puedo encontrarlo yo mismo? Porque su puto nombre es Ivan Ivanov. En serio, no bromeo. Hay como doscientos mil como ese mismo nombre por todo el país. Si pudiera encontrar su dirección en Tarkov, tal vez podamos encontrarlo en la base de datos. Déjame ver qué puedo encontrar sobre él... Creo que solía llevar un bar, sí. Pero no sé el nombre del bar.... Escucha, no sé cómo vas a averiguar qué bar es. Oh, eso me recuerda que hacía ballet. No bromeo. Cada temporada iba al Mariinsky. Incluso intentó organizar algo en el teatro local, pero la gente no estuvo muy entusiasmada por las chicas con tutús. ¿Quieres más detalles? ¡Hermano, ya estoy siendo jodidamente específico! Creo en ti, usa tu intuición.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "¿Encontraste tanto el bar como la dirección del tipo? Ten, escríbela aquí mismo. Eres mejor que esos psíquicos de la tele que encuentran a gente desaparecida. ¿Quieres ser detective cuando todo esto acabe, hermano? Te conseguiré un sombrero como el de Poirot, prometido.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Localiza el apartamento del maestro de ballet en Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Sobrevive y extrae de la localización", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Ven aquí, mi querido empleado. ¿Todo bien en la ciudad? Alguno de mis equipos han desaparecido. Al principio pensé: ¿por qué alguien sería tan jodidamente arrogante de intentar cerrar mis negocios? A menos que quieran joderme o algo. Al principio creí que era ese gamberro de Lighthouse. Pero entonces recibí un mensaje de Seva Shket. Escribió que estaban en una especie de prisión privada. ¿Has oído hablar de ella? Está escondido en algún lugar de los viejos edificios de apartamentos. Los trajeados dejarían allí a sus rivales, a los que fuera más fácil mantener encerrados que deshacerse de ellos. Yo los mataría si eso fuera un problema, sinceramente. Pero parece que alguien prefiere tenerlos encerrados vivos que reventar a los cabrones que les molestan... El trato: Shket fué el único del grupo que escapó, pero ahora está huyendo, no se ha puesto en contacto con nosotros desde aquel mensaje que envió. Ni siquiera nos dijo dónde encontrar a los chicos, el maldito cara de rata. La culpa es de los propios chavales por dejarse pillar como zorras, yo simplemente les hubiera mandado a la mierda por semejante cagada. Pero el hecho de que alguien esté intentando joderme es indignante. Averigua dónde tienen a mis chicos.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "La puta madre. ¿Por qué alguien los metería allí? Lo entendería si me hubieran mandado una carta diciendo que matarían a mi gente o algo, si no pagara y esas mierdas. ¿Un asesino en serie o algo así? De todas formas, ven en un rato, me enteraré de qué está pasando.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Sobrevive y extrae de la localización", "63a7d767f32fa1316250c3da": "Localiza dónde estuvo cautivo el grupo desaparecido en Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "Es la misma historia otra vez, una nueva grabación, ahora con un símbolo extraño. ¿Qué diablos está pasando? Las personas están siendo sacrificadas. ¿Para a quién? ¿Por qué? Tantas preguntas y ni una sola respuesta. Siempre pienso que es lo peor que jamás vayamos a ver, pero cada vez me demuestro que estoy equivocado. Hemos luchado contra saqueadores que solo piensan en el dinero. También asesinos que solo quieren disparar a inocentes. Pero ahí al menos entiendo la motivación, la bestia ha derrotado al humano en su alma. ¿Pero con qué propósito la gente se convierte en estos...? No puedo entenderlo. En fin, soldado, yo los buscaré en el bosque, tú haz lo mismo en la ciudad. En algún lugar debe estar su escondite. Busca el mismo símbolo, seguro que lo volveremos a ver.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "¿La encontraste? ¿Dónde? ¿Había alguien allí? ¿Qué significa el símbolo? Esto solo trae más preguntas...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Sobrevive y extrae de la localización", "63a7d6d61f06d111271f5aeb": "Localiza el punto de encuentro de los Sectarios en Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "¡Hola! Bueno, vamos a empezar, ¿estás emocionado? La tarea es bastante especial, tenemos que probar este juguete ruso para el combate cercano, deben ser condiciones reales de combate en zonas urbanas. Tengo clientes que no creen en la eficacia de este juguete... ¿Puedes hacerles cambiar de opinión?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "¿Y bien? ¿Funciona? ¿Adecuado para el combate cercano en entornos urbanos?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Elimina operadores PMC en Streets of Tarkov utilizando un SR-2M con silenciador y mira réflex KP-SR2", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "¿Algunos siguen intactos, eh? Bueno, qué guay, iremos a darles una pequeña visita. Aquí está tu recompensa.", "6572e876dc0d635f633a5718": "Localiza el primer grupo de cajeros automáticos en la Calle Klimov de Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Explora la tienda Sparja en el Hotel Pinewood", "6572e876dc0d635f633a571e": "Explora la tienda Goshan en Concordia", "6572e876dc0d635f633a5720": "Entrega la Salchicha de res Salty Dog encontrada en incursión", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Cajero Automático N.º 11", "65733403eefc2c312a759df2": "Cajero Automático N.º 12", "65733403eefc2c312a759df4": "Cajero Automático N.º 14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Cajero Automático N.º 15", "65733403eefc2c312a759dfa": "Cajero Automático N.º 16", "65801ad655315fdce2096bec": "Descubre el secreto del éxito de la empresa", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "¿Lo encontraste? ¡Buen trabajo, tráelo acá! Y toma tu recompensa, te la mereces.", "6573397ef3f8344c4575cd88": "Localiza el fondo inmobiliario en Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Localiza y obtén el documento de transacciones inmobiliarias de Tarkov", "658167a0e53c40116f8632fa": "Entrega la información recuperada", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, sí, ya he escuchado los rumores. La gente pronto clavará a esos punks contra la pared. Hiciste un gran trabajo. Aquí está tu recompensa.", "65734c186dc1e402c80dc1a2": "Elimina a cualquier objetivo mientras llevas puesto un Gorro Bomber y Gafas de sol RayBench Hipster Reserve en Streets of Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Esconde el Gorro Bomber dentro de la barbería en Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Esconde las Gafas de sol RayBench Hipster Reserve dentro de la barbería en Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "¿Está en el puto pantano? Eso explica el maldito precio. ¡Me costará más sacarla de allí y limpiarla!... Bueno, toma, es por ayudarme con todo esto.", "65802b627b44fa5e1463889a": "Localiza el SUV de Ragman en Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Sobrevive y extrae de la localización", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Localiza y obtén el Paquete de pósteres de Bison VS Undertaker en el campamento USEC en Woods", "664bbb5f217c767c35ae3d51": "Localiza y obtén el Paquete de pósteres de Killa y Tagilla en el campamento USEC en Woods", "664bbb73c71d456fd03714ca": "Localiza y obtén el Paquete de pósteres de Dinero Fácil en el campamento USEC en Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "¡Buen trabajo! Kaban y Kollontay están montando toda una tormenta, buscando al que ordenó el ataque. Ya lo superarán y se darán cuenta de que se estaban pasando de la raya. Toma, esta es tu recompensa.", "660d5effb318c171fb1ca234": "Elimina a los guardias de Kaban en Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Elimina a los guardias de Kollontay en Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Gana 6 de 10 partidas en el Modo Clasificatorio en Arena", "662bb24b3d34cd5e19206e63": "Condición de fracaso: Perder 5 partidas", "6633a85e347a2a2b4051a26b": "Entrega Rublos del saldo de EFT", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Condición de Fracaso: Perder 5 partidas", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "Así que has encontrado un cadáver. ¿Lo registraste? ¿Revisaste alrededor? Solo estoy señalando que eres un ciego. El campeón, hasta donde sé, llevaba un diario. Sí, como un adolescente, pero la verdad es que esto juega a tu favor.\n\n¿Por qué no mejor vuelves y buscas con más cuidado? Debe haber más información sobre Ref en ese diario, algo sucio sobre él. ¿Quieres dejar de ser prescindible en la Arena? Entonces hazlo.\n\nY una cosa más: si me traes cualquier otra información sobre Ref que valga la pena, te pagaré bien.", "66058ccf06ef1d50a60c1f48 failMessageText": "¿Quieres quedarte bajo la falda de Ref? Vale, haz lo que quieras.", "66058ccf06ef1d50a60c1f48 successMessageText": "Bien hecho. Me alegra que hayas agarrado tu destino por los huevos.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Localiza y obtén la información comprometedora sobre Ref", "664fd7f0837ee02ad4c8e658": "Entrega la información recuperada", "66563f0a2684eee09e8dcd86": "Localiza la habitación del antiguo campeón", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "El móvil es falso. Alguien quería que Skier y sus hombres se centraran en esto de verdad. Tal parece que el juego tiene un nuevo jugador. Lo investigaremos.", "660ab9c4fcef83ea40e29efe": "Entrega el móvil", "660ac159205fdc5a2afb1665": "Localiza y obtén el Móvil de Los Inauditos en Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Vende cualquier arma a Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "Así que está vacía. Eso es algo bueno: si no hay cadáveres, es probable que los refugiados estén vivos aún. Conoces el principio de superposición, ¿no es así?\nBueno, volvamos al punto. Revisé el disco duro. Había una contraseña [bmV3ZGF3bi4u] tenía escrito \"importante\" en ella. Creo que puedes resolverlo por tu cuenta.", "6616a9a14df4f14a474c92ba": "Localiza y obtén el disco duro dentro del escondite en la casa de campo de Lighthouse", "6616a9a98a97f72b921665f2": "Entrega el disco duro", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Localiza y obtén el disco duro dentro del escondite en la casa de campo de Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "Así que está vacía. Eso es algo bueno: si no hay cadáveres, es probable que los refugiados estén vivos aún. Conoces el principio de superposición, ¿no es así?\nBueno, volvamos al punto. Revisé el disco duro. Había una contraseña [bmV3ZGF3bi4u] tenía escrito \"importante\" en ella. Creo que puedes resolverlo por tu cuenta.", "6616a9fdfd94e03533038dab": "Localiza y obtén el disco duro dentro del escondite en la casa de campo de Lighthouse", "6616a9fdfd94e03533038dac": "Entrega el disco duro", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Localiza y obtén el disco duro dentro del escondite en la casa de campo de Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Entrega el equipamiento", "6669769ff0cb253ff7649f27": "Encuentra en incursión el Chaleco portaplacas Crye Precision AVS (Edición Tagilla)", "666976ab1a6ef5fa7b813883": "Entrega el equipamiento", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Encuentra en incursión el Chaleco táctico LBT-1961A Load Bearing Chest Rig (Edición Goons)", "666977849154974010adb5ec": "Entrega el equipamiento", "666977bfe975ac480a8f914e": "Encuentra en incursión el Sistema de transporte Mystery Ranch NICE COMM 3 BVS (Coyote)", "666977ca5fa54985173f8e2c": "Entrega el equipamiento", "666977f2dd6e511e9f33005a": "Encuentra en incursión el Chaleco portaplacas Crye Precision CPC (Edición Goons)", "666978023255d2720cbdf76d": "Entrega el equipamiento", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "¡Qué tal, bandido! ¿Cómo te trata la vida? Me dijo un pajarito que hay una revista especial en el centro comercial ULTRA de Interchange. ¡Escribieron sobre nuestro videojuego ruso, siendo reconocido en todo el mundo! ¡Supongo que a los chavales se les ha ocurrido un gran concepto!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "¡Esto sí que es una victoria! ¡La revista se llevó el premio gordo! Parece una mierda histórica auténtica.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Localiza y obtén la edición especial de la revista de videojuegos en Interchange", "667a95972740eaeca1ecda21": "Entrega el objeto", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "Creo que estoy comenzando a entender por qué la gente ve estos \"live streams\". ¡Es muy adictivo!", "6667579086472aaf0bf7bef5": "Entrega el objeto", "666757c530b9b77ff2d9ac58": "Localiza y obtén el disco duro en la vieja casa de Shoreline", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Instala una Cámara WI-FI en la saliente de la montaña en Woods", "667bf840981b1c594af358ce": "Instala una Cámara WI-FI en la torre del muelle en Shoreline", "667bf845dc371ee9869f185e": "Instala una Cámara WI-FI en el pasillo de la oficina en Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "¡Bien hecho! Hasta dicen que en el mundo exterior se han enterado de nuestra pequeña jugarreta, ¡Ja-ja!", "667442da875be5fb415df535": "Esconde una Estatuilla de un gallo de oro en el sitio de la Cámara WI-FI de Prapor en Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Esconde una Estatuilla de un gallo de oro en el sitio de la Cámara WI-FI de Prapor en Shoreline", "66828746efaecf435dde20ca": "Esconde una Estatuilla de un gallo de oro en el sitio de la Cámara WI-FI de Prapor en Factory", "66d080533a3c33d823a3477d": "Esconde una Estatuilla de un gallo de oro en el sitio de la Cámara WI-FI de Prapor en Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hola, amigo. Las cosas han estado un poco difíciles últimamente. A partir de hoy, aumentaré temporalmente los precios de mis productos y servicios hasta que pueda resolver algunos asuntos urgentes. Un amigo mío que es mercenario está formando un equipo para incursionar al laboratorio subterráneo y necesita potencia de fuego fiable. ¿Puedes ayudarme con eso? Veo que sabes tanto sobre los AR como yo, así que pensé en confiarte esto. Necesito un M4A1 con una suma total del retroceso inferior a 300 y una ergonomía de no menor de 70. Lo sé, no es fácil. Ahora, asegúrate de ponerle una mira EOTech XPS3-0, porque el cliente se niega a usar otra mira.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Muchas gracias. Creo que esto me mantendrá bien durante un tiempo.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modifica un M4A1 para que cumpla con las especificaciones requeridas", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "No perdiste nada en el camino, ¿verdad? Muy bien, entonces es hora de enviar a los ingenieros a hacer algunas mediciones, estamos a punto de descubrir qué esconden estas paredes de la Fábrica. Gracias por tu ayuda, amigo.", "66aa74571e5e199ecd094f1b": "Usa el tránsito de Customs a Factory (En una sola incursión)", "66aa74571e5e199ecd094f1e": "Elimina Scavs en Factory (En una sola incursión)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Localiza y obtén el paquete con herramientas de precisión en el laboratorio de Customs", "66ab97d56cb6e3bfd7c79fbc": "Esconde el paquete en el almacén del laboratorio de Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "Así que, en efecto, lo has encontrado. ¡Excelente! ¿Cómo es el pasaje? ¿Es seguro? ¿En estado de deterioro, dices? Bueno, parece que esta oportunidad no durará por mucho. Enviaré a mis hombres lo antes posible.", "66aba85403e0ee3101042878": "Localiza el pasaje que conduce a The Lab en Streets of Tarkov (En una sola incursión)", "66aba85403e0ee310104287a": "Usa el tránsito de Streets of Tarkov a The Lab (En una sola incursión)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Localiza el pasaje que conduce a Streets of Tarkov en The Lab (En una sola incursión)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Explora la sala de servidores en The Lab (En una sola incursión)", "66b0910951c5294b9d213918": "Explora el domo de contingencias en The Lab (En una sola incursión)", "66b10eef0951e90ec383850b": "Explora la sala de control en The Lab (En una sola incursión)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "El comprador me ha dicho que todo está en su lugar. Te has ganado tu recompensa y puedes esperar que mis hombres te ayuden en los nuevos senderos.", "66abb32aeb102b9bcd088d62": "Usa el tránsito de Ground Zero a Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Usa el tránsito de Streets of Tarkov a Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Usa el tránsito de Interchange a Customs", "66abb3ac416b26ade4a1446c": "Usa el tránsito de Customs a Factory", "66abb3bf228ace5ca9f3d745": "Usa el tránsito de Factory a Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Instala una Cámara WI-FI en el oso que se sentó en un automóvil en llamas en Woods", "66debf2e1e254957b82711ff": "Instala una Cámara WI-FI en la silla al revés en Shoreline", "66debf30802386a45d0adb60": "Instala una Cámara WI-FI en el baño no tan solitario en Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "¡El soldado suertudo ha llegado para su nueva misión! Hay rumores de que Tarkov se ha vuelto aún más peligroso. ¿Quién lo hubiera pensado, verdad? Alguien ha comenzado a atacar ciertas áreas con fuego de mortero.\n\nSerá mejor que vayas a ver qué es lo que está pasando. Y sí, esto implica ir directamente al centro de esas zonas de ataque con morteros. Sip. Bueno, hemos observado los bombardeos en la reserva natural, la base militar, la oficina de aduanas y la línea costera. ¡Venga, ve de una vez!", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "¿Vivito y coleando? Bien, eso está guapo. Veamos con qué estamos tratando aquí. Alguien ha robado los morteros y ahora están atacando varios lugares justo antes de que lleguen los suministros aéreos.\n\nMuy sospechoso. No es posible que estos artilleros locales hayan conseguido comunicaciones seguras con el mundo exterior, ¿verdad? De cualquier manera, todo lo que podemos hacer por ahora es observar.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visita una zona de ataque de mortero activa en cualquier localización especificada (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Vale, me han dicho que hubo un follón. Puede que no sea tu culpa, pero ese no es el punto. Los gilipollas de la planta de tratamiento de agua interceptaron un montón de estas cajas que tenían equipamiento portátil de guerra electrónica.\n\nEs obvio que para el punto en el que estamos son inútiles, pero no voy a dejar que roben propiedad del gobierno solo porque sí.\n\nLa tarea es sencilla, para un guerrero como tú. Ve a la planta de tratamiento de agua y tráeme esas cositas de guerra electrónica. Y sí, hay que deshacernos de esas ratas.\n\nProbablemente el propio equipamiento de guerra electrónica ya fue entregado a sus comandantes, así que está garantizado que conseguirás este equipo de ellos. Asumiendo que no mueras, supongo.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Espléndido, han llegado los nuevos juguetes. Les van a encantar a mis muchachos. Hoy en día hay que estar preparado para cualquier cosa, y una protección como esta no está de más.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Entrega el objeto encontrado en incursión: Dispositivo portátil GARY ZONT para guerra electrónica", "66e19f359fee1e54e0e01f7c": "Elimina Rogues", "66e19f7d534a8ff2bb7e9f89": "Localiza y neutraliza a Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "Todo este tema de ser comerciante me está resultando bastante bien, ¿no te parece? Sabes, si no fuera por mi ingenio, hubiera muerto en este agujero infernal hace mucho tiempo. En fin, me ocuparé de los informes más tarde, no sería la primera vez.\n\nAhora mismo, necesito equipar a los muchachos apostados afuera de mi territorio. Llévales este nuevo equipo que encontramos. Te daré una parte, pero el resto debes conseguirlo tú mismo: ya sabes dónde buscar. No, no te encontrarás con ellos cara a cara. Solo esconde los objetos en el lugar designado.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Bien, ahora que están a salvo de las amenazas aéreas, su misión de combate se cumplirá sin problemas.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Esconde el Dispositivo portátil GARY ZONT para guerra electrónica dentro de la iglesia hundida en Woods", "66e071c8a9e80c3f25bb1bad": "Esconde las Piezas de repuesto para estaciones de radar dentro del hangar del viejo aserradero en Woods", "66e0735089627301d900ef1d": "Esconde el Dispositivo portátil GARY ZONT para guerra electrónica dentro de la torre de la estación meteorológica en Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "Ya era hora de que pasaras por aquí. También habrás notado que esos demonios nocturnos salen de todas partes, ¿no es así? Se están armando mucho mejor, ¿Eh? Es como si alguien estuviera trabajando con ellos. Desde arriba, ¿Me entiendes?\n\nDeberíamos investigar qué están tramando esos bastardos. Además, mucho mejor si puedes reducir su número. Solo ten cuidado.\n\nHay un rumor entre los carroñeros de que puedes encontrarte con una bestia invencible por la noche. Dicen que caza y devora humanos.\n\nRecuerdo una historia oriental sobre un demonio así, su apodo era, uh... \"El Oni\". No habría mencionado estas historias antes. Pero ahora definitivamente algo se está tramando, y los pensamientos oscuros no dejan de invadir mi cabeza.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "Entonces, ¿qué encontraste? Yo tampoco me quedé de brazos cruzados mientras no estabas, me reuní con Partisan. Dice que están preparando un ritual especial y que por eso están saliendo de sus guaridas. Todos mencionan una especie de \"Noche del Culto\".\n\nNo sé de qué se trata, pero definitivamente son malas noticias para Tarkov. Y algo me dice que hay alguien que está orquestando todo. Ese demonio no apareció en nuestras tierras sin ningún motivo.\n\nAnoche vi algo. Su rostro estaba rojo, como si estuviera ardiendo. Agarré mi arma y apunté, pero justo cuando parpadeé, no había nadie allí. Alucinaciones de un anciano, tal vez...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Elimina a la gente nocturna encapuchada", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Muy bien, tengo buenas noticias para ti.\nPartisan logró escuchar a escondidas la conversación de los sectarios antes de que el cable trampa los matara.\n\nEl Heraldo, como lo llaman, está a cargo de todo este desfile de terror. Les prometió que si hacían lo que les decía, recibirían el nuevo Regalo de los Inauditos. ¿Qué demonios? No tengo idea de qué significa esto. Pero estoy seguro de que si les dejas realizar el maldito ritual, habrá innumerables víctimas entre la gente decente. La gente ha comenzado a huir de las calles, dicen que un fantasma está buscando almas.\n\nNo conocemos los detalles de este misterio, ¡Pero definitivamente está conectado con todo el asunto! Y sabemos quién está detrás de esto. Necesitamos eliminar al Heraldo, y si encuentras alguna basura espeluznante cerca de él, intenta enterrarla profundamente en el suelo. Tal vez eso mantenga a raya a los sectarios.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "¿Ya te has encargado de esos cabronazos? De todos modos, esas malditas cosas pertenecen al infierno. Con suerte, el resto de los sectarios se darán por vencidos y volverán a sus guaridas.\n\nLo curioso es que Zryachiy también ha estado ausente últimamente. Me pregunto si bajó del faro para terminar el ritual y dejar que esos demonios salieran a la luz del día.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Localiza y neutraliza al Oni", "66e3eb4c4a5359f2db0be81a": "Localiza y neutraliza al Heraldo", "66e3eb65e385f94b38f061d7": "Localiza y neutraliza al Fantasma", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "Supongo que puedes ver lo que está pasando ahora que estás de vuelta. ¡Esos brutos no solo no se han dispersado, sino que han comenzado a organizar sus preparativos con más fuerza!\n\nAcabo de enterarme de que el pobre chico Ryzhy ha sido capturado por el propio Zryachiy. Dicen que será el sacrificio principal. ¡Eso significa que nos estamos quedando sin tiempo!\n\nPartisan sigue en el bosque buscando sectarios, pero ni siquiera él puede hacerlo solo. Ahora nos toca a nosotros limpiar la escoria con nuestras propias manos. Si no hay nadie que lleve a cabo el ritual, tal vez se acabe.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "¡No te muevas, bicho! Ah, eres tú. Están comenzando a aparecer por mi zona también. He tenido algunos de esos visitantes antes que tú.\n\n¿Dices que has limpiado Tarkov de los sectarios? Bueno, con pérdidas como esa, no podrán hacer nada en un futuro próximo. Se olvidarán por completo del Heraldo. Sin embargo, no sé si podré dormir tranquilo durante un tiempo.\n\nGracias por tu ayuda. No podría haberlo hecho sin ti.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Elimina a la gente nocturna encapuchada en Ground Zero", "66e3ec28ecbe7102342ea56a": "Elimina a la gente nocturna encapuchada en Ground Zero", "66e3ecad063ef452798d369d": "Elimina a la gente nocturna encapuchada en Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Bien, veo la conexión, así que has hecho todo bien... Oh, son a prueba de DDoS. Pero ¿qué pasa si podemos acceder a desde aquí, idiotas? Ahí es donde entra Mr. Kerman.\n\n¿Sigues aquí? Lo siento, no tengo tiempo para cháchara. Kerman acaba de enviar sus datos, dijo que no va a permitir que los proyectos de TerraGroup arruinen nuestra ciudad.\n\nMientras él deshabilita la seguridad, tengo que formatear los discos para darle a Therapist todo lo que podamos encontrar.", "670411a2cded018840f5b599": "Localiza el ordenador requerido en la oficina Cardinal de TerraGroup en Streets of Tarkov", "670411d819aafd130ebc4bb8": "Instala la memoria USB en el ordenador para descargar los archivos", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "¡Cómo te atreves! ¡Mi colega hizo una contribución fundamental para salvar la ciudad y no merecía este destino! No sé cómo puedo confiar en ti después de acciones tan atroces.", "67040cae4ac6d9c18c0ade2c successMessageText": "Tomaste la decisión correcta. Sé que Jaeger intentó engañarte para que dañaras a mi colega.\n\nPero te aseguro que esta versión del fármaco era la forma más segura de limpiar la ciudad del virus...", "6706a4ddec997e861c3f6f04": "Propaga la vacuna en Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Propaga la vacuna en Shoreline", "6706a51fa60dfe2fb85275ed": "Propaga la vacuna en Woods", "6706a52083168d9e8ed303d8": "Propaga la vacuna en Customs", "6706a61a5fb5eedf15ec6234": "Propaga la vacuna en Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Propaga la vacuna en The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "¡Espera! ¿No sabías que ella desarrolló esta \"cura\" junto con Sanitar?\n\nApuesto a que hicieron una versión simplificada para poder matar a todos los enfermos sin pestañear, ¡te lo aseguro! No permitiré que esto pase.\n\nConozco su naturaleza... Seguramente desarrolló una versión menos letal del fármaco para su propio uso o para venderlo.\n\n¡Pero si trabajó en esto con este gilipollas, eso significa que él es quien la guarda! Castiga a ese cabronazo y consigue la versión real del fármaco.\n\nSi no consigues el fármaco en sí, al menos encuentra la receta... ¡Nosotros lo resolveremos a partir de ahí!... ¡Probablemente!", "67040ccdcc1f3752720376ef failMessageText": "¿Qué tan estúpido tienes que ser como para creerle, incluso después de que te dije la verdad palabra a palabra? La sangre de quienes mueran por esta vacuna estará en tus manos, muchacho.\n\nCuando vengan por ti en tus sueños, te darás cuenta de lo que has hecho.", "67040ccdcc1f3752720376ef successMessageText": "Está hecho, ¿verdad? ¡Se lo hemos restregado en la cara a estos \"empresarios\"!\n\nEsto debería recordarle a la bruja que hizo el Juramento Hipocrático.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Localiza y obtén la vacuna verdadera en la oficina de Sanitar en Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Localiza y neutraliza a Sanitar", "6719135cfab45272c32a8c01": "Entrega el objeto encontrado", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Bueno, tal vez ahora finalmente se acabó. Lo único que importa es que elegiste el lado correcto, muchacho, y tu conciencia está tranquila.\n\nLa cura ciertamente debería funcionar si la crearon ellos mismos, solo tenemos que esperar un poco más.", "6707e6614e617ec94f0e63e0": "Propaga la verdadera vacuna en Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Propaga la verdadera vacuna en Shoreline", "6707e6614e617ec94f0e63e3": "Propaga la verdadera vacuna en Woods", "6707e6614e617ec94f0e63e4": "Propaga la verdadera vacuna en Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Localiza y explora los almacenes en el depósito de Woods", "673f2d9a73ff76dd6d5a6344": "Localiza y explora la oficina en el depósito de Woods", "673f2da118e615f9f5550544": "Localiza y explora los garajes en el depósito de Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Completa la misión: Una Mano Amiga", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Parece fácil. Yo me encargo.", "673f2cd5d3346c2167020484 declinePlayerMessage": "No puedo ayudarte ahora.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hola. Supongo que ya habrás visto el BTR que ha estado circulando por Tarkov. El conductor solía ofrecer sus servicios a PMC como tú, pero últimamente ha empezado a trabajar con Skier también. El conductor vino a verme cuando estaba restaurando el BTR. Fue un desafío muy interesante, déjame decirte. Pero ese no es el punto.\n\nNo ha estado en contacto durante bastante tiempo y ahora, de la nada, ha pedido ayuda. Aparentemente, ha sucedido algo grave. ¿Puedes hablar con él y averiguar qué está pasando? No quedan muchos hombres ingeniosos y ambiciosos en Tarkov. La gente como nosotros debería permanecer unida.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "Le dije que era peligroso formar parte de la pandilla de Skier... De acuerdo, tiene sus privilegios, pero es difícil mantenerse independiente en un negocio tan grande.\n\nMe pregunto quién podría haberse vuelto en contra Skier... Después de todo, el BTR debería estar bajo su protección...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Completa la misión: Retraso en el Envío - Parte 1", "6752f86d538945df8cc3fc3a": "Localiza y obtén el paquete de Prapor en Woods", "6756bcb3f93f4c1fc2b2d685": "Sobrevive y extrae de la localización", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Escucho la Voz de la Oscuridad", "6514134eec10ff011f17cc26 description": "Elimina a Knight 15 veces jugando como PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Eso es un Buen Tiro", "651413e9c31fcb0e163577c9 description": "Elimina a Zryachiy 15 veces jugando como PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/fr.json b/Libraries/SptAssets/Assets/database/locales/global/fr.json index e2ac4ca4..f20a4270 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/fr.json +++ b/Libraries/SptAssets/Assets/database/locales/global/fr.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Déposez le boitier dans la salle de repos de l'usine (1er étage proche de la porte 3)", "5968929e86f7740d121082d3": "Obtenez le boitier sécurisé dans le bureau du directeur de Tarcone dans l'entrepôt des douanes", "5977784486f774285402cf52": "Survivez et quittez l'usine", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Impressionnant, effectivement ! C'est presque une valise nucléaire ! Pas étonnant qu'il n'ait épargné personne en essayant de l'extraire.", "5968981986f7740d1648df42": "Obtenez l'objet de valeur dans la chambre 203 du dortoir dans les douanes", "5968988286f7740d14064724": "Livrez l'objet de valeur", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Accédez à la chambre 214", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Je te remercie du fond du cœur. Je ne peux même pas t'expliquer à quel point c'est énorme et si peu à la fois dans notre situation. La plupart des gens l'auraient gardé pour eux-mêmes, mais tu en as fait don à ceux qui en ont besoin. Merci.", "5969f98286f774576d4c9542": "Trouvez en raid des injecteurs de morphine", "5969f99286f77456630ea442": "Livrez les injecteurs de morphine", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Trouvez en raid des bougies d'allumage", "596b470c86f77457ca18618a": "Livrez les batteries de voiture", "596b472686f77457c7006f8a": "Livrez les bougies d'allumage", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "Et tu avais dit qu'il n'y avait rien ! Bien qu'elles puissent être vides, il faut vérifier. Dans tous les cas, voilà ta part.", "5979ee2986f7743ec214c7a4": "Trouvez en raid des clés USB", "5979ee4586f7743ec214c7a5": "Livrez les clés USB", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Balisez le troisième citerne de carburant dans les douanes", "59c128f386f774189b3c84bb": "Balisez la quatrième citerne de carburant dans les douanes", "5c92184386f7746afa2e7840": "Survivez et quittez la zone", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Nickel ! Tiens, prends ça comme récompense. Pendant ce temps, je vais donner ce disque dur à mes spécialistes pour qu'ils le décryptent.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Déposez le fusil de précision dans le bateau", "5a27d85286f77448d82084e7": "Déposez les pinces multifonctions dans le bateau", "5a3ba11786f7742c9d4f5d29": "Trouvez le bateau caché près des brise-lames sur le littoral", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Survivez et quittez la zone", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Génial, tu pourras toujours compter sur moi à partir de maintenant.", "5a56489d86f7740cfe70eba2": "Donnez des Dollars", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Tu l'as ? Laisse-le dans le coin, merci. Une arme magnifique, n'est-ce pas ? Bon, je suis pas mal occupé là, je ne peux pas discuter longtemps.", "5accd5e386f77463027e9397": "Modifiez un MP-133 pour se conformer aux spécifications requises", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Eh bien, entre des mains compétentes cette arme peut renverser des régimes et lancer des révolutions. Laisse-la dans le coin, je regarderai ça plus tard.", "5accd9b686f774112d7173d1": "Modifiez un AKS-74U pour se conformer aux spécifications requise", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Maniable en milieu restreint et silencieux. Ce sont de bonnes modifications, le client sera satisfait.", "5accde3686f7740cea1b7ec2": "Modifiez un MP5 pour se conformer aux spécifications requise", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Merci, laisse le fusil de précision sur la table, je vais le remettre à Di... euh, Sniper.", "5acce08b86f7745f8521fa64": "Modifiez un DVL-10 pour se conformer aux spécifications requise", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Ouais, tu ne peux pas te cacher de quelque chose comme ça. J'adore le 7,62, c'est un bon calibre. Merci pour ton travail. La prochaine commande devrait arriver demain.", "5acce11786f77411ed6fa6eb": "Modifiez un R11 RSASS pour se conformer aux spécifications requise", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Passe-la moi, voyons voir ta configuration. Yeah, l'arme de la démocratie... Merci.", "5accdfdb86f77412265cbfc9": "Modifiez un M4A1 pour se conformer aux spécifications requise", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Réparez le premier panneau de contrôle avec une trousse à outils dans l'usine", "5ac7a51a86f774738a4ffc96": "Réparez le second panneau de contrôle avec une trousse à outils dans l'usine", "5ac7a5d586f774383111ee63": "Survivez et quittez la zone", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Livrez les multiprises triplite", "5ac5061386f77417e429ce7a": "Trouvez en raid des circuits imprimés", "5ac5062586f774587c327395": "Livrez les circuits imprimés", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Trouvez l'entrepôt des marchandises saisies des douanes", "5ac6248586f77416781dd3a3": "Obtenez le colis contenant des cartes graphiques", "5ac624b286f77416781dd3ac": "Livrez le colis contenant les cartes graphiques", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Livrez les cartes graphiques", "5ac5083d86f7740be2744eed": "Trouvez en raid des ventilateurs de processeur", "5ac5084d86f7740bde1b0031": "Livrez les ventilateurs de processeur", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Trouvez la première source du signal", "5ac5e13586f7746074388f93": "Trouvez la seconde source du signal", "5ac5e18c86f7743ebd6c9575": "Survivez et quittez la zone", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Livrez les batteries rechargeables", "5ac5e98886f77479bc6ca201": "Livrez les circuits imprimés", "5ac5ea0586f774609f36280c": "Livrez les Gphone cassés", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Trouvez en raid des processeurs d'ordinateur", "5cb6f88d86f7747d215f09c1": "Trouvez en raid des batteries rechargeables", "5cb6f8de86f7740e9d452685": "Trouvez en raid des circuits imprimés", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Septième chiffre après la virgule du nombre Pi ? IIO ? Je te contacte dans un petit moment.", "5ac5eb3286f7746e7a509a09": "Augmentez la compétence attention au niveau requis", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Livrez les cigarettes Strike", "5ac5ef9886f7746e7a509a2d": "Trouvez en raid des cigarettes Wilston", "5ac5eff886f7740f43322559": "Livrez les cigarettes Wilston", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Localisez la deuxième extraction de l'usine", "5ac61adf86f774741c1bf096": "Localisez la troisième extraction de l'usine", "5ac61b1486f7743a8f30fc84": "Survivez et quittez la zone", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Localisez la quatrième extraction de l'usine", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "Je n'aime pas faire semblant, bien que nous le fassions tous. Parfois juste pour survivre, et parfois parce que nous avons peur. Tu sais, je ne suis pas très bavard, particulièrement avec les inconnus, mais tu as l'air d'un type bien. Si tu réussis à gagner ma confiance, je pense que tu seras capable d'en faire autant avec n'importe qui. Après tout, seuls ceux que nous connaissons personnellement nous aideront à survivre désormais. Parle à Pavel Yegorovich, s'il te fait confiance, je pourrais peut-être mettre en place l'approvisionnement en poudre sans fumée.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich est l'un des rares à être resté. Je me demande si c'est parce qu'il est militaire ou juste parce qu'il n'a pas eu le temps de partir. Même si je sens qu'il a juste des affaires louches à mener.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Obtenez le niveau 3 de loyauté avec Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Bonne arme, du solide. Il n'y a pas de nouvelle commande, mais tu peux repasser demain.", "5ae34b8b86f7741e5b1e5d48": "Modifiez un Remington Model 870 pour se conformer aux spécifications requise", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Une arme confortable, magistralement réalisée, merci. Je ferai savoir au client que l'arme est prête.", "5ae3550b86f7741cf44fc799": "Modifiez un AKM pour se conformer aux spécifications requise", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "Alors, l'AK Zenit est prête ? Super, laisse-la sur cette caisse, merci. Tu pourras venir pour la prochaine commande demain, si tu le souhaites.", "5ae3570b86f7746efa6b4494": "Modifiez un AKS-74N pour se conformer aux spécifications requise", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "On dirait que j'ai réussi à trouver comment former le réseau ! Oui, l'AK fera l'affaire, merci. Laisse-le quelque part dans le coin, je regarderai ça plus tard.", "5ae445f386f7744e87761331": "Modifiez un AK-105 pour se conformer aux spécifications requise", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Fini avec l'AS-VAL ? Bien, passe-le-moi. J'ai une clé intéressante, elle pourra t'être utile. Elle ouvre une armurerie du nom de Kiba dans le centre-commerciale Ultra. Il y a de belles armes dedans, elles pourraient d'être utiles pour nos futures modifications d'arme.", "5ae4479686f7744f6c79b7b3": "Modifiez un AS VAL pour se conformer aux spécifications requise", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Bienvenue au club, l'ami. Prêt à faire affaire ?", "5ae44c6886f7744f1a7eb2b8": "Obtenez le niveau 2 de loyauté avec Ragman", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Obtenez le niveau 2 de loyauté avec Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Tu tires tel un sniper, c'est bon ça. Mes gars disent que l'échangeur est rempli de cadavres de scavs et que le centre-commercial est plus calme désormais donc voilà ta récompense, tu l'as mérité.", "5ae44ecd86f77414a13c970e": "Éliminez des scavs dans la zone de l'échangeur", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Vérifiez le magasin DINO CLOTHES", "5ae4511d86f7740ffc31ccb5": "Vérifiez le magasin TOP BRAND", "5ae4514986f7740e915d218c": "Survivez et quittez la zone", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Balisez le deuxième camion-citerne dans l'échangeur", "5ae452fa86f774336a39758e": "Balisez le troisième camion-citerne dans l'échangeur", "5ae4531986f774177033c3e6": "Survivez et quittez la zone", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "La beauté sauvera le monde, qu'ils disent. Merci, tu m'as vraiment rendu service, frère. Les chapeaux vont se vendre en un rien de temps, fais-moi confiance. Tiens, prends ça comme récompense.", "5ae4543686f7742dc043c903": "Livrez les chapeaux cache-oreille Ushanka", "5ae454a086f7742be909a81a": "Livrez les chapeaux de cowboy", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Trouvez en raid des chapeaux cache-oreille Ushanka", "5fd89799c54dc00f463272d3": "Trouvez en raid des chapeaux de cowboy", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Livrez le manifeste de chargement du OLI", "5ae9b3b186f7745bbc722762": "Obtenez le manifeste de chargement du IDEA dans l'échangeur", "5ae9b3c986f77432c81e2ce6": "Livrez le manifeste de chargement du IDEA", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Tu as trouvé les documents ? Un grand merci. Donne-les-moi, voyons voir un peu où est passé notre petite cargaison.", "5ae9b5bd86f774307c29df37": "Obtenez les documents de l'itinéraire de chargement OLI", "5ae9b63286f774229110402d": "Livrez les documents", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Livrez le bonnet de ski avec une ouverture pour les yeux", "5ae455fb86f7744dd8242380": "Trouvez en raid un sac à dos Pilgrim", "5ae4562086f774498b05e0dc": "Livrez le sac à dos Pilgrim", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Livrez les gilets pare-balles BNTI Gzhel-K", "5ae9b91386f77415a869b3f3": "Obtenez un gilet pare-balles BNTI Gzhel-K avec 50-100% d'intégrité", "5ae9b93b86f7746e0026221a": "Livrez le gilet pare-balles BNTI Gzhel-K avec 50-100% d'intégrité", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Livrez les gilets tactiques Wartech (TV-109, TV-106)", "5af079e486f77434693ad7f8": "Trouvez en raid des gilets tactiques BlackRock", "5af07a0286f7747dba10d8ac": "Livrez les gilets tactiques BlackRock", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Livrez le précis de stylisme - Volume 1", "5ae9c0e186f7746419683c5e": "Obtenez le précis de stylisme - Volume 2 dans l'échangeur", "5ae9c10686f774703201f146": "Livrez le précis de stylisme - Volume 2", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Wow, wow, wow, doucement là, je suis de ton côté mec ! Désolé, je ne fais que plaisanter. Je vois que tu as amélioré ton charisme, c'est bien. Parlons business donc.", "5ae9c29386f77427153c7fb0": "Augmentez la compétence charisme au niveau requis", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "On dirait que ça s'est déroulé sans accroc, merci.", "5ae9c38e86f7743515398707": "Obtenez le niveau 3 de loyauté avec la Toubib", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Déposez la Shemagh sur place", "5ae9e2a286f7740de4152a0a": "Déposez les lunettes de soleil RayBench sur place", "5ae9e2e386f7740de4152a0d": "Déposez les lunettes de soleil rondes sur place", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Tu as déjà effrayé quelques scavs à l'ULTRA, tu te rappelles, mon frère ? Maintenant, les gens disent que ça s'empire. La rumeur dit que ça grouille de toute sorte de racailles. J'ai un boulot pour toi : va voir la situation à l'échangeur, vérifie qu'on peut au moins s'y déplacer. Trouve des passages sûrs ou quelque chose. J'ai vraiment besoin que tu y ailles en douceur, ok ?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Tu dois être l'homme invisible ou un fantôme, un truc dans le genre. Attends, laisse moi choper une carte. Donc, les routes les plus sûres sont ici et ici, c'est ça ? Parfait, j'informe mes gars. Merci, l'ami, tu m'as bien aidé ce coup-ci.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Survivez et quitter la zone de l'échangeur", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Ça, c'est du chiffre ! Je vais rassembler mes gars, ils vont rapporter pas mal de bons trucs du Goshan. Pour ta récompense, regarde les nouveaux stocks de gilets pare-balles, c'est tout pour toi.", "5ae9e55886f77445315f662a": "Obtenez la clé des caisses enregistreuses du Goshan", "5ae9e58886f77423572433f5": "Livrez la clé des caisses enregistreuses du Goshan", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "N'allume juste pas la lampe à moins que tu veuilles être aveugle pendant quelques jours ! Dans tous les cas, bien joué, laisse-le sur cette caisse.", "5b47796686f774374f4a8bb1": "Modifiez un AK-102 pour se conformer aux spécifications requises", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Allez, donne moi ça, j'ai besoin de le livrer au client, et rapidement. J'espère que tu n'as dit à personne dans quel but est fait ce MPX. Bien, souhaitons bonne chance à ce gars.", "5b477b3b86f77401da02e6c4": "Modifiez un SIG MPX pour se conformer aux spécifications requises", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Merci, laisse le quelque part par ici. Je suis occupé en ce moment, je te recontacte.", "5b477f1486f7743009493232": "Modifiez un AKMN pour se conformer aux spécifications requises", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "L'arme est prête ? Bien, je suppose que tu as déjà deviné que le véritable nom de Sniper est Dima, ça m'a échappé la dernière fois. Pas un mot à son sujet à qui que ce soit, j'espère que tu comprends.", "5b47824386f7744d190d8dd1": "Modifiez une M1A pour se conformer aux spécifications requises", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Ça me donne envie de la mettre dans une vitrine pour l'admirer. Chapeau l'artiste ! C'est clairement une œuvre d'art.", "5b4783ba86f7744d1c353185": "Modifiez une M4A1 pour se conformer aux spécifications requises", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, cool, pose les là. Le mécano me les a demandés, comme tu t'en doutes. Je les lui envoie aujourd'hui. Merci, ça m'aide beaucoup.", "5b47884886f7744d1c35327d": "Trouvez en raid des bidons d'additif pour carburant", "5b47886986f7744d1a393e65": "Livrez les bidons d'additif pour carburant", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Livrez la figurine de chat", "5b478a6c86f7744d190d8f4d": "Trouvez en raid une montre bracelet Roler Submariner en or", "5b478a8486f7744d1c35328b": "Livrez la montre bracelet en or Roler Submariner", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Trouvez en raid un œuf doré", "62a70058ec21e50cad3b6709": "Livrez l'œuf doré", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Déposez les casque antibruit Peltor ComTac 2 à l'endroit prévu", "5b478c7386f7744d1a393fb1": "Déposez les casque 6B47 Ratnik-BSh à l'endroit prévu", "5b478cb586f7744d1a393fb5": "Déposez les gilets pare-balles BNTI Gzhel-K à l'endroit prévu", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Trouvez et balisez le deuxième minibus dans la zone de l'échangeur", "5b478dca86f7744d190d91c2": "Trouvez et balisez le troisième minibus dans la zone de l'échangeur", "5b478de086f7744d1c3533a1": "Survivez et quittez la zone", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Obtenez le troisième conteneur de produits chimiques dans l'échangeur", "5b4c832686f77419603eb8f0": "Livrez le deuxième conteneur de produits chimiques", "5b4c836486f77417063a09dc": "Livrez le troisième conteneur de produits chimiques", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Nickel, c'est pile ce qu'il me faut ! J'espère que mes gars vont se remettre sur pied, c'est un sacré nid de bactéries qu'ils risquent de choper avec la transfusion, mais ils n'ont pas vraiment le choix.", "5b47905886f7746807461fe2": "Livrez les masques de protection respiratoire", "5b4790a886f774563c7a489f": "Livrez les kits de transfusion sanguine", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Trouvez en raid des masques de protection respiratoire", "5ec1388d83b69d213d3c2ee0": "Trouvez en raid des kits de transfusion sanguine", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Placez une caméra WI-FI pour surveiller le ponton de la scierie dans les bois", "5b47936686f77427fd044025": "Placez une caméra WI-FI pour surveiller la route vers le port dans les douanes", "5b47938086f7747ccc057c22": "Placez une caméra WI-FI pour surveiller l'armurerie Kiba Arms dans l'échangeur", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Livrez le troisième boitier de commande moteur", "5b4c7aec86f77459732b4b08": "Livrez le second gyroscope à fibre optique 1 axe", "5b4c8e6586f77474396a5400": "Obtenez le second gyroscope à fibre optique 1 axe sur le littoral", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtenez le premier boitier de commande moteur dans les bois", "66d07de6c7ef9040fff0b789": "Livrez le premier boitier de commande moteur", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Déposez des colliers dorés sous le matelas près du BTR-82A dans le magasin Generic de l'échangeur", "5b4796c086f7745877352c2c": "Déposez des colliers dorés dans le micro-onde au 3e étage des dortoirs des douanes", "5b47971086f774587877ad34": "Déposez des colliers dorés dans la cabine en bois du milieu dans la scierie dans les bois", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Éliminez des opérateurs d'une SMP dans l'échangeur entre 22h et 10h", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "Alors, tu te sent comme Zaitsev maintenant ? Sniper est satisfait des tes premiers résultats et t'as déjà préparé une autre épreuve.", "5bc850d186f7747213700892": "Tuez des scavs à plus de 40 mètres avec un fusil de précision à verrou avec une mire métallique", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Pas mal, pas mal. Même moi, mes tirs n'auraient pas été si précis, je suis trop vieux maintenant. Pendant que tu tirais, Sniper t'a préparé le test suivant.", "5bd983d886f7747ba73fc246": "Effectuez des tirs dans les jambes à plus de 40 mètres avec un fusil de précision à verrou", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Effectuez des tirs à la tête à plus de 40 mètres avec un fusil fusil de précision à verrou", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Tu dois avoir un bon temps de réaction puisque tu est toujours là. Attrape ton nouveau chapeau, comme promis. Continue, tireur, des nouvelles épreuves t'attendent.", "5bc47e3e86f7741e6b2f3332": "Tuez des opérateurs d'une SMP à moins de 25 mètres avec un fusil de précision à verrou", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Prêt ? Alors au boulot. Sniper te porte beaucoup d'intérêt.", "5bc4813886f774226045cb9a": "Éliminez des opérateurs d'une SMP à plus de 80 mètres avec un fusil de précision à verrou", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Éliminez des opérateurs d'une SMP à plus de 80 mètres avec un fusil de précision à verrou", "657b0567ec71635f16471dd2": "Éliminez des opérateurs d'une SMP à plus de 80 mètres avec un fusil de précision à verrou", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Bon travail, œil de chouette. T'as décimé ces prédateurs nocturnes.", "5bc84f7a86f774294c2f6862": "Tuez des scavs dans les douanes avec un fusil de précision à verrou entre 21h et 05h", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "Il ne fait pas bon à jouer les sniper du dimanche. Bien joué, petit.", "5bc483ba86f77415034ba8d0": "Tuez des scavs sniper avec un fusil de précision à verrou", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "L'ennemi est complétement impuissant quand il ne sait pas d'où viennent les tirs. Tu t'es bien débrouillé, tireur.", "5bc485b586f774726473a858": "Tuez 5 opérateurs d'une SMP à plus 45 mètres avec un fusil de précision à verrou muni d'un réducteur de son", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Ce n'est pas une tâche facile. Essai encore.", "5bc4893c86f774626f5ebf3e successMessageText": "Il semblerait que parfois être intelligent n'est pas assez pour agir intelligemment. Bien, un bon vieux verrou peux nous aider avec ça. Sniper est discret en ce moment, alors attendons un peu avec ta prochaine épreuve. Je te le dirai quand il y aura des nouveaux tests pour toi.", "5bc48aed86f77452c947ce67": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou sans mourir", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "Vous ne devez pas mourir ni vous extraire du raid avec le statut \"Mort\", \"Abandon\", \"Touriste\" ou \"Disparu\" tant que la tâche est active", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Déposez la montre bracelet en or Roler Submariner dans la pile de sacs poubelle en face des escaliers du dortoirs au 2e étage", "5c12320586f77437e44bcb15": "Déposez la clé USB falsifiée dans la pile de sacs poubelle en face des escaliers du dortoirs au 2e étage", "5c1233ac86f77406fa13baea": "Ne tuez pas de scavs dans les douanes tant que la quête n'est pas complétée", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Obtenez clé USB falsifiée dans les douanes", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "Tu as fait du bon boulot, maintenant, tu as mon respect ! Je te contacterai si j'ai quelque chose d'intéressant.", "5c0bc95086f7746e784f39ec": "Éliminez des scavs avec un fusil de calibre 12 muni d'un réducteur de son", "5c0bcc9c86f7746fe16dbba9": "Éliminez des opérateurs d'une SMP avec un fusil de calibre 12 muni d'un réducteur de son", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Bon travail mon ami ! Tout s'est passé comme prévu.", "5c1242fa86f7742aa04fed52": "Éliminez des opérateurs d'une SMP entre 21:00 et 06:00 (hors usine et labo)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "Alors, tu en penses quoi ? C'est du sérieux, ouais ? Bien, passe-moi l'arme donc. Voilà pour ton aide. On reste en contact, je vais peut-être avoir besoin d'aide pour d'autres essais.", "5c1b765d86f77413193fa4f2": "Éliminez des opérateurs d'une SMP à plus de 60 mètres avec un M1A équipé d'un RDS Hybrid 46 et d'une lunette Schmidt & Bender PM II 1-8 x 24", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "Et voilà ! Désormais, je suis certain que tu ne te barreras pas quand les choses sérieuses commenceront.", "5c0bdbb586f774166e38eed5": "Augmentez la compétence résistance au stress au niveau requis", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou dans la base militaire", "5c137ef386f7747ae10a821e": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou sur le littoral", "5c137f5286f7747ae267d8a3": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou dans les douanes", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou dans la zone du phare", "63aec6f256503c322a190374": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou dans les rues de Tarkov", "64b694c8a857ea477002a408": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou dans l'échangeur", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Un sniper expérimenté ne se laissera pas abattre comme ça. Reprends ton souffle et essaie encore.", "5c0be13186f7746f016734aa successMessageText": "Franchement, je n'étais pas sûr que tu puisses le faire. Mais il semble bien que tu ne viennes pas de la plèbe ordinaire.", "5c0be2b486f7747bcb347d58": "Augmentez la compétence fusil de précision à verrou au niveau requis", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Éliminez des opérateurs d'une SMP avec un fusil de précision à verrou sans mourir", "64b67fcd3e349c7dbd06bd16": "Vous ne devez pas mourir ni vous extraire du raid avec le statut \"Mort\", \"Abandon\" ou \"Disparu\" tant que la tâche est active", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Tu as tout apporté ? Bien, laisse-le dans le coin. Fais attention, cet équipement est très fragile. Même si toute cette histoire de clinique ne fonctionne pas, des gens peuvent être intéressés par le matériel, mais ça reste entre toi et moi. Pourquoi gâcher un équipement si onéreux ?", "5c0be66c86f7744523489ab2": "Livrez l'ophtalmoscope", "5c0be69086f7743c9c1ecf43": "Livrez le trans-illuminateur de peau LEDX", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Trouvez en raid un ophtalmoscope", "5fd8935b7dd32f724e0fe7ee": "Trouvez en raid un trans-illuminateur de peau LEDX", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "Pour être honnête, je n'avais aucun doute sur le fait que tu sois la personne en qui je peux avoir confiance et pas uniquement pour le travail.", "5c0d0dfd86f7747f482a89a5": "Augmentez la compétence santé au niveau requis", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Très bien, très bien ! Les clients sont contents de toi, mercenaire. Voilà ta récompense.", "5c138c4486f7743b056e2943": "Livrez les processeurs programmables Virtex", "5c138d4286f774276a6504aa": "Livrez le transmetteur militaire sans-fil COFDM", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Trouvez en raid des processeurs programmables Virtex", "5ec13da983b69d213d3c2ee4": "Trouvez en raid un transmetteur militaire sans-fil COFDM", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Bien joué, tu es toujours en un seul morceau, et le bruit que devait être fait a été fait. Tu seras utile plus tard pour ce genre de choses, guerrier. Voilà ta récompense, tu l'as mérité.", "5c1b760686f77412780211a3": "Éliminez des opérateurs d'une SMP avec une grenade", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Déjà fini ? Tu sais, ça a vraiment fonctionné, la façon de parler de leurs meneurs a fortement changé. Ne m'en veux pas, dans ce monde il faut négocier même avec ce genre d'ordures. Voilà ta récompense.", "5c1b778286f774294438b536": "Éliminez des scavs dans l'échangeur à courte distance (moins de 60m) en portant un équipement spécifique", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Tuez des scavs dans l'échangeur en portant l'uniforme UN (casque UNTAR, gilet pare-balles UNTAR, Colt M4A1)", "5c1b713f86f774719c22e8a0": "Tuez des scavs sur le littoral en portant l'uniforme UN (casque UNTAR, gilet pare-balles UNTAR, Colt M4A1)", "5c1fd66286f7743c7b261f7b": "Tuez des scavs dans les bois en portant l'uniforme UN (casque UNTAR, gilet pare-balles UNTAR, Colt M4A1)", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Tuez des scavs dans les rues de Tarkov en portant l'uniforme UN (casque UNTAR, gilet pare-balles UNTAR, Colt M4A1)", "65e08aa9f5879b2586d5fd4c": "Tuez des scavs dans le Point Zéro en portant l'uniforme UN (casque UNTAR, gilet pare-balles UNTAR, Colt M4A1)", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Survivez et quittez le littoral avec le statut \"Survivant\"", "5c13989886f7747878361a50": "Survivez et quittez l'usine avec le statut \"Survivant\"", "5c1931e686f7747ce71bcbea": "Survivez et quittez le labo avec le statut \"Survivant\"", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Survivez et quittez la base militaire avec le statut \"Survivant\"", "629f08e7d285f377953b2af1": "Survivez et quittez le phare avec le statut \"Survivant\"", "63aec66556503c322a190372": "Survivez et quittez les rues de Tarkov avec le statut \"Survivant\"", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Trouvez et balisez la deuxième cache de carburant dans les bois", "5c10f94386f774227172c576": "Trouvez et balisez la troisième cache de carburant dans les bois", "5c10f94386f774227172c577": "Survivez et quittez la zone", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Maintenant on parle ! Je vais prendre un fer à souder et me mettre au travail. Peut-être que le marché sera stable à nouveau d'ici à ce que j'ai terminé.", "5c1129ed86f7746569440e88": "Livrez les fils conducteurs", "5c112a1b86f774656777d1ae": "Livrez les condensateurs", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Trouvez en raid des fils conducteurs", "5ca71a1e86f7740f5a5b88a2": "Trouvez en raid des condensateurs", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "Voilà, maintenant, je suis absolument sûr que tu peux revenir d'un raid et avec du bon matériel dans ton sac à dos. Bien joué, frère !", "5c112dc486f77465686bff38": "Augmentez la compétence fouille au niveau requis", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Tu as tout ? Cool. Va savoir ce qu'il va me demander la prochaine fois, une cuvette de toilette en diamant ? Mais eh, s'il le demande vraiment, tu vas devoir en trouver une. Merci pour ton aide, frère.", "5c11427386f77430ff393793": "Livrez les théières antiques", "5c122c5f86f77437e44bcb0e": "Livrez les vases antiques", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Trouvez en raid des théières antiques", "5ca7258986f7740d424a2044": "Trouvez en raid des vases antiques", "62a700893e015d7ce1151d90": "Trouvez en raid une figurine d'Axel le perroquet", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Mes gars disent que c'est la 3e guerre mondiale dans les douanes en ce moment, les opérateurs BEAR et USEC butent les scavs de tous les côtés, bon travail. Voilà ton prix, comme promis.", "5c1fa9c986f7740de474cb3d": "Éliminez des opérateurs d'une SMP dans les douanes en portant un équipement spécifique", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Obtenez le niveau 4 de loyauté avec Peacekeeper", "5c12489886f77452db1d2b05": "Obtenez le niveau 4 de loyauté avec Prapor", "5c1248ef86f77428266184c2": "Obtenez le niveau 4 de loyauté avec la Toubib", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Obtenez le niveau 4 de loyauté avec Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "Tu les as vraiment apportés ! J'en suis ravi ! Laisse-moi y jeter un coup d'œil de plus près.", "5c139eb686f7747878361a72": "Livrez le lecteur RFID UHF", "5c139eb686f7747878361a73": "Livrez le module de stockage flash VPX", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Trouvez en raid un lecteur RFID UHF", "5ec14080c9ffe55cca300867": "Trouvez en raid un module de stockage flash VPX", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Salut, mercenaire. Je t'observe depuis un bon moment maintenant, et je sais que tu es capable de résoudre les tâches qui te sont assignées. Mais ne sois pas trop arrogant, tu n'es pas le seul à savoir suivre les ordres. Il y a d'autres combattants comme toi, encore plus compétents. Je veux t'offrir un travail, te donner une chance de faire partie de quelque chose de plus grand que tu ne puisses l'imaginer. Si tu es prêt, alors voici une mission pour toi : mes gars opèrent partout dans Tarkov et laissent souvent des souvenirs derrière eux. La mission est d'obtenir et de me livrer ces articles sans me poser de questions. Ces choses sont extrêmement rares. J'espère que je n'ai pas à te rappeler que tu dois te procurer tous ces objets par toi-même ? Crois-moi, je n'aime pas savoir quand les gens mentent. Tu seras informé du point de livraison. Et encore une chose, tous mes partenaires ont déjà maîtrisé leurs compétences il y a longtemps et ont fait leurs preuves, et si tu veux être l'un d'entre eux, alors prouve-moi que tu n'es pas inférieur à eux en formation. N'essaye pas de me contacter, je le ferai moi-même le moment venu.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Tu as tout ? Bien, mercenaire. Ta récompense durement gagnée t'attend au point de dépôt spécifié, comme promis. Félicitations et bienvenue.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Livrez le livre antique abimé", "5c51bf8786f77416a11e5cb2": "Livrez la bouteille d'huile pour arme #FireKlean", "5c51bf9a86f77478bf5632aa": "Livrez le coq doré", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Livrez la conserve de sprats", "5c51c24c86f77416a11e5cb7": "Livrez la moustache factice", "5c51c25c86f77478bf5632af": "Livrez le bonnet Kotton", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Livrez la vieille pierre à feu", "5c52da5886f7747364267a14": "Livrez la hache antique", "5cb5ddd386f7746ef72a7e73": "Trouvez en raid une vieille pierre à feu", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Trouvez en raid une boite de sprats", "5cb5df7186f7747d215eca08": "Trouvez en raid une moustache factice", "5cb5df8486f7746ef82c17ea": "Trouvez en raid un bonnet Kotton", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Trouvez en raid une figurine de de corbeau", "5ec7998dc1683c0db84484e7": "Livrez la figurine de corbeau", "5ec79aaac1683c0db84484e8": "Trouvez en raid un masque de peste Pestily", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Livrez le portefeuille WZ", "60d0748820a6283a506aebb1": "Trouvez en raid une bouteille de raticide LVNDMARK", "60d074ef401d874962160aee": "Livrez la bouteille de raticide LVNDMARK", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Trouvez en raid une cagoule Smoke", "60e827faf09904268a4dbc40": "Livrez la cagoule Smoke", "62a6ff004de19a4c3422ea5d": "Livrez l'objet trouvé en raid : Clé de chariot élévateur Missam", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Tu l'as ? Bien joué. Bon, je pense que tu as mérité d'être mis en contact avec Jaeger. Il aura sûrement pas mal de boulot pour toi.", "5d249a6e86f774791546e952": "Obtenez le message crypté de Jaeger", "5d249aa286f77475e8376399": "Livrez le message", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Trouvez le camp de Jaeger dans les bois", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Trouvez en raid et livrez des rations militaires Iskra", "5d24bb4886f77439c92d6bad": "Trouvez en raid et livrez des paquets de nouilles instantanées", "5d24bb7286f7741f7956be74": "Trouvez en raid et livrez des grandes conserves de ragoût de bœuf", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Comme le disait une personne célèbre \"Vole comme le papillon, pique comme l'abeille\". Un bon conseil, mieux vaut s'en souvenir. Alors, sens-tu à quel point il est facile de se déplacer sans toutes ces plaques sur toi ? Si tu te déplaces rapidement, tu n'as même pas besoin d'un gilet pare-balles pour faire face à la crasse.", "5d25af3c86f77443ff46b9e7": "Éliminez des scavs dans les bois en ne portant aucun gilet pare-balles", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Déposez une bouteille d'eau dans le bunker ZB-016 dans les bois", "5d2deedc86f77459121c3118": "Déposez une ration militaire Iskra dans le bunker ZB-014 dans les bois", "5d2defc586f774591510e6b9": "Déposez une bouteille d'eau dans le bunker ZB-014 dans les bois", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "Impossible que tu puisses survivre pendant si longtemps ! Impressionnant. Tiens, bois ça, histoire de regagner des forces.", "5d25c5a186f77443fe457661": "Survivez pendant 5 minutes en état de déshydratation complète (hors usine)", "5d9f035086f7741cac4a9713": "Survivez et quittez la zone", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Tu maîtrises ? Bien joué. Ton entraînement est presque terminé. Si tu continues comme ça, il se peut même que nous puissions commencer à mettre un peu d'ordre dans la ville plus tôt que nous ne le pensions.", "5d25c8c986f77443e47ad47a": "Éliminez des scavs en subissant les effets de la douleur", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "C'est réussi ? Super ! La sueur sauve le sang ! Ne reste pas planté là maintenant, il y a d'autres tâches pour toi.", "5d25d09286f77444001e284c": "Tuez des scavs dans les bois au cours d'un seul raid sans utiliser de soins", "5d25d0d186f7740a22515975": "N'utilisez aucun soin tant que la quête n'est pas complétée", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "Donc tu gères les tremblements ? Bien, pour être honnête, je ne pensais pas que tu allais réussir, la tâche n'était pas aisée.", "5d25d4e786f77442734d335d": "Éliminez des opérateurs d'une SMP d'un tir à la tête en souffrant de tremblements", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Tu as survécu ? Qui l'eût cru.", "5d25dc2286f77443e7549028": "Éliminez des opérateurs de SMP en étant aveuglé par une grenade incapacitante", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "Combien dis-tu qu'il y en avait ? Six ? Et tout ça sans aucun \"appareil\" ? Il semblerait bien que tu aies révélé le chasseur nocturne qui sommeille en toi.", "5d25fd8386f77443fe457cae": "Éliminez des scavs entre 21:00 et 04:00 sans utiliser de dispositif de vision nocturne ou thermique (hors usine)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "Que disent les gens déjà ? Entrainement difficile, bataille facile. Cette compétence te sera bien utile, fais-moi confiance. Ton entraînement est presque terminé. Il semblerait que tu sois prêt à devenir le Chasseur.", "5d2605ef86f77469ef0f7622": "Augmentez la compétence vitalité au niveau requis", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Beau travail ! D'autres viendront, c'est certain, mais au moins ils réfléchiront à deux fois avant de piller l'endroit.", "5d26143c86f77469ef0f894c": "Tuez des opérateurs d'une SMP dans la zone des bureaux de l'usine (n'importe quel étage)", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Localisez et éliminez Reshala", "5d2710e686f7742e9019a6b2": "Livrez le pistolet TT doré de Reshala", "5d66741c86f7744a2e70f039": "Trouvez en raid le pistolet TT doré de Reshala", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "Ils ont fait leur choix en prenant la mauvaise voie. Tu as fait la bonne chose, chasseur, merci.", "5d2701b586f77469f1599fe2": "Éliminez des scavs sur tout le territoire de Tarkov", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Tu as retenu la leçon ? Bien. Tu vois, tu peux désarmer un ennemi de plusieurs façons.", "5d307fc886f77447f15f5b23": "Éliminez des opérateurs d'une SMP alors qu'ils sont aveuglés par une grenade incapacitante", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Localisez et éliminez Killa", "5d271a3486f774483c7bdb12": "Livrez le casque de Killa", "5d667a8e86f774131e206b46": "Trouvez en raid le casque de Killa", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Localisez et éliminez Shturman", "5d272a0b86f7745ba2701532": "Livrez la clé de la cache de Shturman", "5d2f464e498f71c8886f7656": "Trouvez en raid la clé de la cache de Shturman", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Tu as défendu l'honneur de l'uniforme ? Très bien. Qu'ils aillent se faire foutre, il n'y a rien de pire que ceux qui ont prêté serment et qui tombent dans la criminalité par la suite.", "5d272bd386f77446085fa4f9": "Éliminez des scavs portant un uniforme de police (gardes de Reshala)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "J'ai eu vent de ce que tu as fait. Il semblerait que ça soit plus calme dorénavant, bien moins de pillards. Tu as ma gratitude.", "5d2733c586f7741dea4f3072": "Tuez des opérateurs d'une SMP au niveau des dortoirs de la zone des douanes", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Bon retour parmi nous, chasseur. Donc tu t'es chargé des bandits ? Je n'imagine même pas à quel point ça a dû être fastidieux, tu as fait du bon boulot.", "5d27369586f774457411b264": "Localisez et éliminez Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Donc ils opèrent près des laboratoires et des installations militaires... Oh, j'espère que ça ne déclenchera pas une autre guerre, en plus de celle qui est déjà en cours. Eh bien, gamin, ce n'est pas à nous de résoudre ça, du moins pour le moment.", "5d273a4d86f774457411b266": "Éliminez des scavs raider", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Tu as tout ça ? Nickel. J'espère que je n'aurai plus à regarder des gens mourir juste sous mes yeux sans ne rien pouvoir faire.", "5d27446f86f77475a86565a3": "Livrez le défibrillateur portable", "5d7782c686f7742fa732bf07": "Livrez les kits chirurgicaux CMS", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Trouvez en raid un défibrillateur portable", "5ec1538a92e95f77ac7a2529": "Trouvez en raid des kits chirurgicaux CMS", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Trouvez la maison du président du comité local dans le village abandonné du littoral", "5d357b9586f7745b422d653f": "Trouvez la maison du pêcheur dans le village abandonné du littoral", "5d357bb786f774588d4d7e27": "Trouvez la maison du prêtre dans le village abandonné du littoral", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Survivez et quittez le littoral avec le statut \"Survivant\"", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Tu les as ? Bien, voyons ce qu'il trame. Reviens dans un moment, le mécano et moi vérifierons les clés USB, puis nous te le ferons savoir aussi.", "5d27491686f77475aa5cf5b9": "Livrez les clés USB", "5d6949e786f774238a38d9e0": "Trouvez en raid des clés USB", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Livrez l'album photo", "5d357e0e86f7745b3f307c56": "Localisez la chambre de Jaeger ayant une vue sur la baie dans la station thermale du littoral", "5d357e8786f7745b5e66a51a": "Obtenez l'album photos de Jaeger", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "Tu les as ? Bon travail gamin. Maintenant, il nous faut trouver un moyen de trouver ces laboratoires. Bien, je m'en occuperai de mon côté, ne t'en fais pas.", "5d2f375186f7745916404955": "Trouvez en raid des cartes d'accès aux laboratoires TerraGroup", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Livrez les cartes d'accès", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Rentre. Tu veux du thé ? Bien, peu importe. Donc écoute, voilà le topo. Prochainement, je vais héberger quelques-uns de mes amis. Je veux aller à la chasse avec eux, mais il n'y a clairement pas moyen que je les emmène chasser avec ces fusils MP. Je veux que tu m'apportes deux beaux fusils de précision occidentaux, mais il faut qu'ils soient réglés correctement d'abord. Et nous avons le client parfait pour ça. Son nom est Shturman. Donc essaie ma configuration (M700 etl Lunette Burris FullField TAC30 1-4 x 24) sur cette raclure. La lunette possède un fort grossissement, tu pourrais même compter les grains de beauté sur le visage des gens, donc il va te falloir effectuer un tir depuis une longue distance. Ne t'en fais pas, la récompense ne te décevra pas, petit.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Ce sont de sacrés beaux fusils de précision ! Bon travail ! Tu sais, je pense qu'il est temps pour moi de me mettre à la modification d'armes, j'ai bien apprécié faire ça. Donc, pour ce qui est de la récompense, mate-moi ces petites choses que je t'ai dégottées, tu pourrais en avoir besoin.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Éliminez Shturman d'un tir à la tête à plus de 75 mètres avec un M700 muni de la lunette spécifiée", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Regardez qui arrive ! Salut ! Écoute, tu connais la base militaire pas loin de la station thermale ? Tu y es même sûrement déjà allé. Du coup, j'ai eu des infos. Il se dit qu'il reste toujours beaucoup de nourriture dans les vieux entrepôts, et que des groupes de bandits ont commencé à traîner dans les alentours à la recherche, mais pas des scavs lambda, ceux-ci sont bien équipés. J'aimerais que tu ailles y faire un tour afin de vérifier s'il reste quelque chose dans ces entrepôts. Sois prudent, il y a un tas de mecs dangereux dans le coin.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Ils ont déjà commencé à tout récupérer ? Merde ! Il faut qu'on agisse rapidement.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Trouvez la zone des entrepôts de nourriture dans la base militaire", "629f1259422dff20ff234b4d": "Survivez et quittez la zone", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Livrez la batterie militaire 6-STEN-140-M", "5d4c020a86f77449c463ced6": "Trouvez en raid des munitions 30 x 165 mm OFZ", "5d4c028c86f774389001e027": "Livrez les munitions 30 x 160 mm OFZ", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "Alors, tu as fait ton choix ? Quelques petites injections et ce sera bon. Et voilà. Reste tranquille pendant au moins quelques jours, repose-toi et prends tes vitamines.", "5d6fb8a886f77449db3db8b6": "Livrez les roubles", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Donc, on m'a dit que tu avais suivi l'entraînement. Eh bien, avec tes compétences, je suis sûr que tu apprendras vite.", "5d6fbf0f86f77449d97f738e": "Livrez les euros", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "C'est fait ? Bon travail ! Attend un peu... j'ai besoin de prendre tes mesures et de trouver la bonne technique de couture pour cette tenue. Comme promis. Mais hey, tu devrais le savoir, ces matériaux ne sont pas bon marché de nos jours, alors attend toi au prix. Il a trois bandes, une icône de style, tu sais.", "5dc53fd386f77469c87589a3": "Localisez et éliminez Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Livrez les pièces de tissus", "5e38356d86f7742993306cac": "Livrez les pièces de tissus", "5e3835e886f77429910d4465": "Livrez les paracordes", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Livrez les tissus", "5e383a6386f77465910ce1f8": "Trouvez en raid des paracordes", "5e383a6386f77465910ce1f9": "Livrez les paracordes", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Livrez les tissus", "5e4d4ac186f774264f75833b": "Trouvez en raid des rouleaux de ruban adhésif KEKTAPE", "5e4d4ac186f774264f75833c": "Livrez les rouleaux de ruban adhésif KEKTAPE", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Livrez les tissus", "5e4d515e86f77438b2195249": "Trouvez en raid des rouleaux de ruban adhésif KEKTAPE", "5e4d515e86f77438b219524a": "Livrez les rouleaux de ruban adhésif KEKTAPE", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, juste à temps. Tu as peut-être entendu qu'un nouveau docteur s'est ramené dans le coin ? Mais ce n'est pas vraiment un Asclépios bien intentionné, il traite certains de ses patients, et estropie les autres. On raconte qu'il vend des drogues et fait ses chirurgies en pleine rue. Ils l'appellent Sanitar, tu imagines ? Il s'est installé sur le littoral et on dirait que les locaux sont contents de lui, pas étonnant vu qu'il les soigne et leur vend des drogues et des fournitures médicales de toute sorte. Cela signifie que ses stocks sont probablement pleins. Cherche des informations sur Sanitar, mais en silence. Pour l'instant, trouve où cette racaille traîne. Je pense qu'il vend au même endroit qu'il opère ses patients. Ça t'intéresse ?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "Donc tu dis qu'il y a pas mal de fournitures ? Je suppose qu'il s'est trouvé un nouvel entrepôt médical qui n'a pas été pillé et qu'il en vend maintenant le contenu. Si seulement je pouvais trouver cet entrepôt... Eh bien, ce n'est pas ton problème de toute façon. Pour l'instant.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Balisez le premier point d'échange sur le littoral", "5eda1da9a58a4c49c74165ee": "Balisez le deuxième point d'échange sur le littoral", "5eda1dd3317f6066993c1744": "Balisez le troisième point d'échange sur le littoral", "5f0389268580cc37797e0026": "Survivez et quittez la zone", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "Donc tu as cru cette femme ? Tu réalises qu'elle te manipule pour son propre bénéfice ? Tu crois que c'est parce que Sanitar guéri certaines personnes qu'il ne peut pas en tuer d'autres ? Tu as complètement disjoncté avec ta guerre, tu n'arrives même plus à faire la différence entre le bien et le mal. Dégage de ma vue, j'ai envie d'être seul.", "5edab4b1218d181e29451435 successMessageText": "Tu as fait le bon choix. Même si les autres disent que Sanitar était un gars bien, il a fait bien plus de mal que de bien. Ne crois pas les mensonges des autres. J'ai déjà eu affaire à ce genre de type, une fois qu'ils pètent un câble, aucun moyen de ramener à la raison, il ne reste plus qu'à les abattre comme un chien.", "5edab5a6cecc0069284c0ec2": "Localisez et éliminez Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Localisez le groupe envoyé à la station thermale du littoral", "5edab8890880da21347b3826": "Localisez le groupe envoyé à la jetée du littoral", "5edab8e216d985118871ba18": "Localisez le groupe envoyé dans les villas du littoral", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Survivez et quittez la zone", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "La perte de mes gars sur le littoral est vraiment un événement regrettable, mais trouver une nouvelle source de médicaments est plus important. Il nous faut juste une approche différente. Mon assistant a réussi à soudoyer un local du littoral en échange d'informations sur Sanitar, le médecin qu'on recherche. Il a une petite équipe de sécurité, quelques planques sur le littoral, mais ce qui est étrange est qu'il opère ses patients en plein milieu de la rue, et cache ses outils dans des bâtiments alentours. Trouve ses outils. Sanitar sera beaucoup plus coopératif s'il se rend compte qu'on peut mettre fin à son commerce et prendre contrôle de son territoire.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Tu as apporté les outils ? Mets-les dans cette boîte, il faut que je les nettoie correctement, on ne sait pas où ils ont traîné. On voit tout de suite que c'était des conditions difficiles, tout est couvert de sang, vraiment pas hygiénique. Bref, c'est mon problème. Je vais lui envoyer ses outils avec une lettre via l'homme que l'on a payé afin qu'il sache ce qu'on attend de lui.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Localisez et obtenez le kit chirurgical marqué d'un symbole bleu appartenant à Sanitar sur le littoral", "5edabb950c502106f869bc04": "Livrez le kit chirurgical appartenant à Sanitar", "5edabbff0880da21347b382b": "Localisez et obtenez l'ophtalmoscope appartenant à Sanitar sur le littoral", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hey toi, le dur à cuire ! Ramène tes fesses par ici, j'ai un boulot pour toi. J'ai entendu dire que Prapor t'a envoyé récupérer les médicaments d'un certain Sanitar. Ne fais pas déjà la grimace, je n'ai aucun intérêt dans ces drogues, laisse Prapor les avoir et se les carrer dans le cul, tu as déjà une compensation de sa part de toute façon, n'est-ce pas ? Tout ce que je veux que tu fasses, c'est de placer ces balises dans les conteneurs qui sont dans les caches de Sanitar. Prapor n'en saura rien, ça ne prend pas longtemps mais les profits seront instantanés. Faut juste le faire rapidement, avant qu'ils ne déplacent ces conteneurs.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Putain ! Oui ! Enfin ! Les caches de Prapor vont être dévoilées au grand jour, il y a certainement des tonnes de came là-dedans. Armes, munitions, nourriture... Putain de génial ! On prend le relais pour la suite, ne le prend pas mal. Merci.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Survivez et quittez la zone", "5f071a9727cec53d5d24fe3b": "Balisez le conteneur médical à la station thermale du littoral", "5f071ae396d1ae55e476abc4": "Balisez le conteneur médical aux villas du littoral", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Jeune homme, attends. Je savais que Jaeger allait te demander de tuer Sanitar, mais tu n'y es pas obligé. Je comprends ce que tu penses, de ce que t'en a dit Jaeger, ce n'est qu'un monstre, mais ce n'est pas le cas. Je suis certaine que Sanitar essaie seulement d'aider les locaux. Étant donné la situation actuelle, il pratique les opérations chirurgicales les plus complexes et ce n'est pas surprenant qu'elles se terminent souvent mal. Il s'agit d'un médecin possédant un savoir inestimable qui a la capacité de sauver beaucoup de vies. Un médecin avec un accès à un entrepôt de médicaments qui nous sont extrêmement importants. Nous sommes déjà entrés en négociation et il va très bientôt commencer à coopérer. Mais pour ça, il me faut quelque chose qui puisse l'intéresser et je pense qu'il s'agit d'un laboratoire. Il me faut donc les cartes d'accès et des échantillons de stimulants militaires, je pense qu'ils sont la base sur laquelle il conduit ses expériences. Peux-tu les trouver pour moi ? Les cartes d'accès et les stimulants doivent être scellés, tu dois donc les trouver toi-même.", "5edac34d0bb72a50635c2bfa failMessageText": "C'est dommage que tu aies écouté Jaeger et pas la voix de la raison. Sanitar avec ses connaissances et ses médicaments aurait pu nous aider de biens des façons. Il n'était pas vraiment un saint, mais tout le monde n'a-t-il pas droit à une chance de racheter ses péchés ? Mais vous lui avez pris sa chance. Je suis très mécontente de toi.", "5edac34d0bb72a50635c2bfa successMessageText": "Merci, je savais que tu comprendrais à quel point Sanitar et ses...médicaments sont importants à l'heure actuelle. Il a déjà montré un grand intérêt pour les cartes d'accès et les stimulants et vient d'envoyer la première fournée de ses créations. Tiens, voilà ta part.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Ne tuez pas Sanitar", "5f04935cde3b9e0ecf03d864": "Livrez les cartes d'accès", "5f04944b69ef785df740a8c9": "Livrez la carte d'accès", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Bien le bonjour à toi, mercenaire. Parce que cette journée est vraiment bonne. J'avais raison, ces nouveaux stimulants sont liés à TerraGroup. Le Mécano a trouvé quelques informations sur Sanitar. Assez peu, et ça nous a coûtés extrêmement cher, mais c'est mieux que rien. Sanitar travaillait pour TerraGroup, et pas juste comme simple employé, on parle d'une formation médicale, spécialisation en maladies infectieuses, divorcé ... Et c'est tout ce qu'on sait sur lui. Trouve-m'en plus l'ami, j'ai besoin de savoir où il a trouvé l'accès à de telles ressources. Trouve son lieu de travail, et plus d'informations.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "On a déchiffré la clé USB. Il y a beaucoup d'informations importantes là-dessus, mais je ne peux pas tout te dire. C'est confidentiel. Par contre, je peux te parler de Sanitar, c'est un scientifique. Il a étudié les développés des médicaments, puis les a testées sur des gens. Très ... téméraire, ou comme on dit parfois, pas très éthique comme recherches.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Livrez la clé USB marquée d'un ruban adhésif bleu", "5eec9d054110547f1f545c99": "Trouvez l'atelier de Sanitar dans le laboratoire", "5eff5674befb6436ce3bbaf7": "Obtenez des informations sur le travail de Sanitar", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Salutation guerrier. Voilà le topo, un petit oiseau m'a dit que les anciens militaires ayant sécurisé la base militaire ont creusé quelques tunnels menant vers un bunker. Bien entendu, ils ne l'ont pas fait eux-mêmes, ils ont forcé des scavs à le faire, et aucun d'entre eux ne s'en est sorti très probablement. Dans tous les cas, je n'ai aucune idée de quel bunker il s'agit. Il y a des rumeurs disant qu'il s'agirait de celui ayant une salle de commande, mais je ne suis pas sûr que ce soit ce bunker exactement, ce pourrait être un simple abri anti-bombes pour le personnel de la base. Il n'y a aucune utilité à envoyer un groupe de reconnaissance à l'heure actuelle pour qu'ils se fassent descendre par les raiders. Va vérifier ces catacombes et fais-moi savoir s'il est judicieux d'y envoyer un groupe. La paie sera bonne. Tu en es ?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "Donc tu dis que c'est une salle de commande ? Les rumeurs ne mentaient donc pas, hein ? Je vais y envoyer mes hommes dans la journée pour aller fouiller l'endroit. Il pourrait y avoir du bon matos là-dedans ! Tiens, prends ta récompense, comme promis.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Survivez et quittez la zone", "5ee8eea538ca5b3b4f3c4647": "Trouvez le bunker souterrain", "5ee8eecc0b4ef7326256c660": "Localisez la salle de contrôle dans le bunker souterrain", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Salut mercenaire, tu arrives juste à temps, tu es exactement l'homme dont j'ai besoin. Tu te souviens de ce putain de panneau de commande trouvée dans le bunker sous la base militaire ? Pour résumer la chose, mes gars y sont allés, et il s'avère que c'est un sacré bordel. La pièce est hautement sécurisée : filtres, générateurs, toutes les entrées sont bloquées par des portes hermétiques extrêmement solides, c'est comme une forteresse souterraine. Mais les raiders ont réussi à l'ouvrir et ont creusé tout ça tels des foreurs de pétrole, donc mes gars ont eu de sérieux ennuis, moins de la moitié s'en est sortie. Maintenant, s'en est d'autant plus intrigant, bordel de merde. Mes gars n'y retourneront pas sans raison, mais si tu pouvais trouver un passage sécurisé pour eux... Tu es un gars expérimenté, donc tu pourrais y aller discrètement, avancer à tâtons et repérer tous les points d'entrée. Les survivants de mon groupe disent qu'il y a de très grosses portes hermétiques. C'est toi qui vois pour partir en repérage.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Bon retour parmi nous, je t'écoute. Ah, donc c'est comme ça... La porte est juste là, non ? Dessine-la sur ma carte, ne t'inquiète pas. Alors ce bunker relie presque toutes les installations de la base ? Putain, comme c'est pratique, tu pourrais traverser la moitié de la base au nez et à la barbe de tout le monde. Maintenant, je comprends pourquoi les raiders sont là, tu peux contrôler toute la base d'en bas. Merci, guerrier ! Voici ta récompense.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Survivez et quittez la zone", "5ee8ec5ed72d953f5d2aabd1": "Localisez la porte hermétique menant à l’hôpital (fou blanc)", "5ee8ecd75eb3205dae135d17": "Localisez une des deux portes hermétiques menant au bâtiment de l'Académie (fou noir)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "Alors c'est aussi simple que ça, à droite au rez-de-chaussée ? Combien de fois mes gars sont passé juste devant sans rien voir. T'es rentré dans la pièce ? T'as trouvé des trucs intéressants ? Bref, ça ne fait rien, je vais envoyer mes gars pour tout vérifier ça de toute façon. Voilà ta récompense, tu l'as mérité. Merci.", "5f0488c590eea473df674002": "Trouvez le bureau de Sanitar dans la station thermale", "5f04983ffbed7a08077b4367": "Survivez et quittez la zone", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Salutation soldat, j'ai un job pour toi. Pour faire court, j'ai perdu le contact avec un de mes groupes, ça fait maintenant quelque temps. Quand c'était la merde, je les envoyais dans les bois pour ramasser quelques cargaisons. J'ai bien peur qu'ils aient été pris en embuscade, la dernière fois que j'ai eu des nouvelles de leur part, ils me disaient que des opérateurs de l'USEC se rapprochaient d'eux. Va voir si certains d'entre eux ont survécu. Ils avaient un VBL, un minibus et une sorte de camion, je ne me rappelle plus exactement du modèle. Je pense aussi que l'USEC a établi un camp à proximité, alors reste attentif. Trouve mon convoi et le camp de ces USEC, s'il est vraiment là.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Ça veut donc dire que mes gars ne sont s'en pas sortis et que le convoi a été pillé... et il y a bien un camp de l'USEC à côté ? Ça craint, la cargaison était très importante. Eh bien, t'as fait ta part du marché, alors voici la récompense. Tu peux allez flâner maintenant.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Localisez le convoi manquant dans les bois", "5fd9fad9c1ce6b1a3b486d05": "Localisez le camp temporaire USEC", "5fd9fad9c1ce6b1a3b486d0d": "Survivez et quittez la zone", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "L'air de toute la zone des bois tremblait tellement cette fusillade était folle ! La vermine a eu ce qu'elle méritait et c'est grâce à toi. Voilà, une récompense appropriée pour un tel fait. Ne sois pas timide, tu peux aussi acheter de nouveaux fusils.", "600303250b79c6604058ce30": "Localisez et éliminez Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Trouvez et inspectez le second LAV III dans la base militaire", "608925d455f4ac386d7e7fc4": "Balisez le premier LAV III", "608930aa1124f748c94b801e": "Trouvez et inspectez le T-90 dans la base militaire", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Super, super, super ! Prends mon argent ! Ma seule demande c'est que tu ne dises pas un mot au sujet de cet accord.", "60929ad46342771d851b827a": "Obtenez le colis contenant le boitier de contrôle T-90M dans la base militaire", "60929afc35915c62b44fd05c": "Livrez le colis", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Obtenez les documents militaires №3 de la base militaire", "60ae0f0586046842a754e21e": "Livrez les deuxièmes documents", "60ae0f17b809a4748759078c": "Livrez les troisièmes documents", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Bon travail. J'espère qu'ils ont compris ce qui arrivait et qu'ils ne peuvent pas buter mes gars sans rester impunis. Voilà la récompense.", "608bffeee0cc9c2d4d2ccb29": "Éliminez des raiders dans le bunker de contrôle de la base militaire", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Livrez le premier dossier", "60ae12ffb809a474875907aa": "Obtenez le dossier médical №2 dans la base militaire", "60ae134cabb9675f0062cf6e": "Livrez le second dossier", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "Alors c'est à ça que ça ressemble ! Bien. Merci. Je vais l'étudier plus en détails plus tard. Voilà ta récompense, comme promis.", "6092942fb0f07c6ea1246e3a": "Obtenez le système de navigation intégré MBT dans la base militaire", "6092947635915c62b44fd05b": "Livrez le système de navigation", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "Donc la sortie fonctionne toujours ? Excellent ! Je prépare encore ta récompense, dis m'en plus concernant le fonctionnement de cette porte de bunker.", "608a94101a66564e74191fc3": "Trouvez l'extraction nécessitant d'être alimentée dans la base militaire", "608a94ae1a66564e74191fc6": "Utilisez cette extraction", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Génial ! Mes gars viennent de revenir de leur raid sains et saufs, pas une égratignure. Voilà ta récompense !", "608ab22755f4ac386d7e7fdc": "Éliminez des scavs dans les entrepôts souterrains de la base militaire", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Vérifiez le second arsenal du baraquement sud (pion blanc) de la base militaire", "608bd2465e0ef91ab810f98a": "Vérifiez la salle de contrôle du baraquement est (pion noir) de la base militaire", "608c187853b9dd01a116f480": "Survivez et quittez la zone", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Survivez et quittez la zone", "60a4dc7e4e734e57d07fb335": "Balisez le premier groupe de citernes de carburant dans la base militaire", "60b90232ec7c6f5eb510c195": "Balisez le second groupe de citernes de carburant dans la base militaire", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "C'est fait ? L'air semble presque plus frais désormais. C'est dommage que nous n'ayons pas pu recadrer ces pillards d'une autre manière.", "608a8356fa70fc097863b8f8": "Éliminez des scavs dans la zone des baraquements de la base militaire", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "C'est une bonne nouvelle. Le monde n'en sera que meilleur. J'espère que ce bâtard ne t'a pas eu avec sa masse ?", "60c0d187938d68438757cda2": "Localisez et éliminez Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Trouvez en raid une casquette BOSS", "60cfa5a85f9e6175514de2e3": "Livrez la casquette BOSS", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Éliminez des opérateurs d'une SMP dans l'échangeur", "60ec0b1871035f300c301acd": "Éliminez des opérateurs d'une SMP dans le labo", "60ec2b04bc9a8b34cd453b81": "Vous ne devez pas mourir ou quitter le raid tant que la quête est active (KIA ; Abandon ; MIA ; Touriste)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Éliminez des opérateurs d'une SMP dans le Point Zéro", "65e19abadf39d26751b3bb1e": "Éliminez des opérateurs d'une SMP dans le Point Zéro", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Éliminez des opérateurs d'une SMP dans la base scav des douanes", "60ec1e72d7b7cb55e94c1764": "Éliminez des opérateurs d'une SMP dans la base scav des bois", "60ec2229fd1bf4491c4e4552": "Éliminez des opérateurs d'une SMP dans la station thermale du littoral", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Et voilà, c'est bien mieux. Merci, guerrier. Les gars disent que ça s'est calmé, donc il semblerait que ces abrutis aient compris le message.", "60e8650e5d67b234af3d3926": "Éliminez des scavs d'un tir dans la tête", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Bordel, tu les as récupérés toi-même ? Tu as des tripes, c'est certain. Quelque chose cloche avec ces psychos, je te le dis...", "60e82c12fd1bf4491c4e4547": "Trouvez les étranges couteaux", "60e82c5926b88043510e0ad7": "Livrez les couteaux", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Livrez les trans-illuminateur de peau LEDX", "60f028ca86abc00cdc03ab89": "Trouvez en raid des piles de soins", "60f028f85caf08029e0d6277": "Livrez les piles de soins", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Trouvez en raid des boites de vitamines OLOLO", "62a70168eb3cb46d9a0bba7a": "Livrez les boites de vitamines OLOLO", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Merveilleux, mercenaire. Il va être désormais bien plus facile pour mes gars d'intervenir dans la zone. Merci pour ton travail.", "60e745d6479eef59b01b0bdc": "Éliminez des raiders dans la base militaire", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Bien bien ! Les clients nous ont déjà récom...euh remerciés pour la réussite de la mission. Bon travail, mercenaire.", "60e8174d0367e10a450f7818": "Trouvez en raid et livrez des dogtags BEAR de niveau 50 ou supérieur", "60e81795479eef59b01b0bdf": "Trouvez en raid et livrez des dogtags USEC de niveau 50 ou supérieur", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Trouvez en raid des transmetteurs militaires sans-fil COFDM", "60e7449875131b4e61703b7e": "Livrez les processeurs programmables Virtex", "60e744c9d1a062318d3d2262": "Livrez les transmetteurs militaires sans-fil COFDM", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Trouvez en raid des clés USB militaires", "62a7019ea9a0ea77981b57da": "Livrez les clés USB militaires", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Bien, ce sont tous les résultats dont j'avais besoin, passe-moi le carnet. Merci, mercenaire.", "60e740b8b567ff641b129573": "Éliminez des opérateurs d'une SMP à une distance d'au moins 100 mètres", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Bien, merci beaucoup mon ami. Le client m'a déjà signalé qu'il avait bien eu les colis. Je ne pense pas que ce sera leur dernière commande, donc je compte sur toi dans le futur.", "60e84ba726b88043510e0ad8": "Déposez une lunette thermique Trijicon REAP-IR sous le pied de la grue jaune du site de construction des douanes", "60e85b2a26b88043510e0ada": "Déposez une lunette thermique Trijicon REAP-IR derrière les bennes à ordures de la \"nouvelle\" station-service des douanes", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respect mon frère, tu m'as bien aidé ! Si tu vois des types dangereux dans l'ULTRA, fais le moi savoir. J'aurais peut-être besoin que tu t'en occupes à nouveau.", "60e73ee8b567ff641b129570": "Éliminez des opérateurs d'une SMP à l'intérieur du centre-commercial ULTRA dans l'échangeur", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Livrez les bouteilles de whisky", "60f028268b669d08a35bfad8": "Trouvez en raid des bidons d'eau purifiée", "60f0284e8b669d08a35bfada": "Livrez les bidons d'eau purifiée", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Trouvez en raid des bouteilles de bière Pevko Light", "62a70110eb3cb46d9a0bba78": "Livrez les bouteilles de bière Pevko Light", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Localisez et éliminez Shturman", "60e7261eb567ff641b129557": "Localisez et éliminez Glukhar", "60e72629465ea8368012cc47": "Localisez et éliminez Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Te voilà, le rapide. Tu fais plaisir au vieil homme que je suis. J'espère que tu as aussi tiré tes propres conclusions. C'est ton mental qui fait de toi une arme, pas la quantité d'acier que tu portes.", "60e729cf5698ee7b0505743c": "Éliminez des opérateurs d'une SMP sans porter de casque ni gilet pare-balles dans les bois", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Un brave décision, mercenaire.", "60effdac12fec20321367038": "Livrez le conteneur sécurisé Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Écoute frère, tu peux m'aider à trouver les bonnes informations sur un mec ? Il a déjà quitté la ville. Pourquoi je ne peux pas le trouver moi-même ? Parce que son putain de nom, c'est Ivan Ivanov. Sérieusement, je ne déconne pas. Il y en a deux cent mille dans le pays avec ce nom. Si nous pouvions trouver son ancienne adresse dans Tarkov, nous pourrions possiblement le passer dans notre base de données. Voyons voir ce que je peux trouver sur lui. Je pense qu'il avait un bar, en effet. Je ne connais pas le nom du bar cependant... Écoute, je ne sais pas comment tu vas faire pour savoir de quel bar il s'agit. Oh, ça me rappelle, il aimait le ballet. Sans blague. Il allait à Mariinsky à chaque saison. Il a même tenté d'organiser quelque chose au théâtre local, mais les gens n'étaient pas chauds pour voir des filles en tutu. Plus spécifique ? Frère, je suis déjà spécifique ! Je crois en toi, utilise ton intuition.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Tu as trouvé le bar et l'adresse du gars ? Tiens, note les moi. Tu es encore plus fort que ces médiums à la télé qui retrouvent les personnes disparues. Tu ne voudrais pas devenir détective quand tout ça sera terminé ? Je te fournirai le chapeau de Poirot, promis.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Localisez l'appartement du maître de ballet dans les rues de Tarkov", "63a7daae04d3dc28a52a2109": "Survivez et quittez la zone", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Viens ici, mon cher employé. Tout va bien dans la ville ? J'ai quelques-unes de mes équipes qui sont manquantes. Au départ, je pensais : \"mais pourquoi bordel quelqu'un veut-il me faire mettre la clé sous la porte ?\". À moins qu'ils se jouent de moi ou un truc du genre. J'ai supposé dans un premier temps que c'était ce punk du phare, mais j'ai ensuite reçu un message de Seva Shket. Il me disait qu'ils étaient gardés dans une sorte de prison privée. Tu en as entendu parlé ? Elle est cachée quelque part dans les vieux immeubles d'appartements. Je les buterais bien si c'était un si gros problème, honnêtement. Mais il semblerait que quelqu'un préfère les garder en prison plutôt que de tuer les connards qui les emmerdent. Voilà le topo : Shket est le seul dans le groupe qui s'est échappé, mais maintenant, il est en fuite, il ne nous a pas contactés depuis le message qu'il a envoyé. Il ne nous a même pas dit où trouver les gars, cette tête de rat. C'est de la faute des gars s'ils se sont fait choper comme des salopes, et je leur aurais bien dit d'aller se faire foutre pour avoir autant merdé. Mais le fait que quelqu'un essai de me baiser est inacceptable. Bien, assez avec des conneries. Trouve où se trouvent mes gars.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Bordel, pourquoi est-ce que quelqu'un les garderait là ? Je comprendrais s'ils m'envoyaient une lettre disant qu'ils tueraient mes gars si je ne payais pas ou ce genre de connerie. Un tueur en série ou un truc du genre ? Dans tous les cas, viens dans quelque temps, je vais trouver ce qu'il se passe.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Survivez et quittez la zone", "63a7d767f32fa1316250c3da": "Localisez l'endroit où le groupe disparu a été retenu captif dans les rues de Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "C'est encore et toujours la même histoire, de nouveaux enregistrements, mais maintenant avec un étrange symbole. Qu'est-ce qu'il se passe bordel ? Des gens sont sacrifiés. À qui ? Pourquoi ? Tant de questions sans réponse. Je m'entête à penser que j'ai vu le pire, mais à chaque fois on me prouve le contraire. Nous avons combattu les pillards qui n'avaient que l'argent en tête ou encore des meurtriers qui ne voulaient exclusivement tuer des innocents, au moins leurs motivations étaient compréhensibles dans ces cas. Mais là, il semblerait que la bête ait vaincu l'humain dans leur âme. Mais à quelle fin des gens deviennent de tels... Je ne peux pas comprendre. Donc soldat, je vais aller les chercher dans les bois, fais de même dans la ville. Il doit y avoir leur planque dans le coin. Cherche les mêmes symboles, je suis sûr qu'on les reverra à nouveau.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Tu l'as trouvé ? Où ça ? Il y avait quelqu'un sur place ? Que veut dire le symbole ? D'autant plus de questions...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Survivez et quittez la zone", "63a7d6d61f06d111271f5aeb": "Localisez le lieu de rassemblement des cultistes dans les rues de Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Salutations ! Continuons dans la lancée, tu es impatient ? La tâche est assez spécifique, il nous faut essayer un joujou russe pour le combat rapproché en environnement urbain. J'ai des clients qui ne croient pas en l'efficacité de ce joujou... Tu peux leur faire changer d'avis ?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Alors ? Il fonctionne bien ? Il est approprié pour le combat rapproché en environnement urbain ?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Éliminez des opérateurs d'une SMP en utilisant un SR-2M \"Veresk\" muni d'un réducteur de son et d'un viseur reflex KP-SR2 dans les rues de Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Certains sont encore intacts, hein. Bon, c’est cool, on va aller leur rendre une petite visite. Ta récompense.", "6572e876dc0d635f633a5718": "Localisez le premier groupe de DAB de la rue Klimov dans les rues de Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Visitez le magasin Sparja de l'hôtel Pinewood", "6572e876dc0d635f633a571e": "Visitez le magasin Goshan du Concordia", "6572e876dc0d635f633a5720": "Livrez la saucisse de bœuf Salty Dog trouvée en raid", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "DAB №11", "65733403eefc2c312a759df2": "DAB №12", "65733403eefc2c312a759df4": "DAB №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "DAB №15", "65733403eefc2c312a759dfa": "DAB №16", "65801ad655315fdce2096bec": "Percez le secret du succès de la firme", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Tu l'as trouvé ? Beau travail, maintenant apporte-le ici ! Et prends ta récompense, tu la mérites.", "6573397ef3f8344c4575cd88": "Localisez l'agence immobilière dans les rues de Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Localisez et obtenez le document des transactions immobilières", "658167a0e53c40116f8632fa": "Livrez les informations trouvées", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, yeah, j’ai déjà entendu les rumeurs. Les gens vont bientôt clouer ces punks au mur. Tu as fait un excellent travail. Voici ta récompense.", "65734c186dc1e402c80dc1a2": "Éliminez toute cibles en portant un bonnet Bomber et des lunettes de soleil RayBench Hipster Reserve dans les rues de Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Déposez le bonnet Bomber dans le salon de coiffure des rues de Tarkov", "657356d0a95a1e7e1a8d8d99": "Déposez les lunettes de soleil RayBench Hipster Reserve dans le salon de coiffure des rues de Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "Elle est dans le putain de marais ? C’est ce qui explique ce putain de prix. Cela coûterait plus cher de la sortir de là et de la nettoyer ! Très bien, voilà, c’est pour l'aide.", "65802b627b44fa5e1463889a": "Localisez le SUV de Ragman sur le littoral", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Survivez et quittez la zone", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Localisez et obtenez le poster \"Bison VS Undertaker\" dans le camp USEC des bois", "664bbb5f217c767c35ae3d51": "Localisez et obtenez le poster \"Killa et Tagilla\" dans le camp USEC des bois", "664bbb73c71d456fd03714ca": "Localisez et obtenez le poster \"Argent facile\" dans le camp USEC des bois", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Bon travail ! Kaban et Kollontay sont déjà en train de déclencher une tempête, à la recherche de celui qui a ordonné l'attaque. Ils s'en remettront et se rendront compte qu'ils franchissent la ligne. Voilà ta récompense.", "660d5effb318c171fb1ca234": "Éliminez des gardes de Kaban dans les rues de Tarkov", "660d5f5a99b1db9725ca1543": "Éliminez des gardes de Kollontay dans les rues de Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Gagner 6 matchs sur 10 en mode de jeu classé dans Arena", "662bb24b3d34cd5e19206e63": "Condition d'échec : Perdez 6 matchs", "6633a85e347a2a2b4051a26b": "Livrez des Roubles depuis la réserve EFT", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Condition d'échec : Perdez 5 matchs", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "Donc tu as vu un cadavre. Tu l'as cherché ? Tu as vérifié autour de lui ? Je souligne simplement que tu es aveugle. Le champion, pour autant que je sache, tenait un journal. Oui, comme un adolescent, mais cela joue en ta faveur. \n\nPourquoi ne pas y retourner et y regarder de plus près ? Il doit y avoir plus d'informations dans le journal sur Ref, des dossiers sur lui. Fais ça si tu veux arrêter d'être remplaçable dans l'arène. \n\nEt encore une chose : si tu m'apportes des informations sur Ref qui seront dignes de mon temps, je te paierai bien.", "66058ccf06ef1d50a60c1f48 failMessageText": "Tu souhaites rester dans les jupons de Réf ? Fais bien comme tu veux.", "66058ccf06ef1d50a60c1f48 successMessageText": "Bien joué, content que tu aies saisi ton destin par les couilles.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Localisez et obtenez les informations compromettantes sur Ref", "664fd7f0837ee02ad4c8e658": "Livrez les informations trouvées", "66563f0a2684eee09e8dcd86": "Localisez la planque de l'ancien champion", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Livrez l'équipement", "6669769ff0cb253ff7649f27": "Trouvez en raid un gilet tactique porte-plaque Crye Precision AVS (édition Tagilla)", "666976ab1a6ef5fa7b813883": "Livrez l'équipement", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Trouvez en raid un harnais tactique LBT-1961A (édition sbire)", "666977849154974010adb5ec": "Livrez l'équipement", "666977bfe975ac480a8f914e": "Trouvez en raid un sac à dos Mystery Ranch et système NICE COMM 3 BVS (Coyote)", "666977ca5fa54985173f8e2c": "Livrez l'équipement", "666977f2dd6e511e9f33005a": "Trouvez en raid un gilet tactique porte-plaque Crye Precision CPC (édition sbire)", "666978023255d2720cbdf76d": "Livrez l'équipement", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Salut, bandit ! Comment ça va ? Un petit oiseau m'a dit qu'il y a un magazine spécial dans le centre commercial ULTRA à l'échangeur. Ils ont écrit sur notre jeu vidéo russe, qui est reconnu dans le monde entier ! J'imagine que les gars ont vraiment eu une idée géniale !", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Ça, c'est une vraie victoire ! Le magazine a fait un carton ! On dirait un truc vraiment historique.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Localisez et obtenez l'édition spéciale du magazine de jeux vidéo dans l'échangeur", "667a95972740eaeca1ecda21": "Livrez le magazine", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "Je pense que je commence à comprendre pourquoi les gens regardent ces « flux en direct ». C'est addictif !", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Placez une caméra WI-FI sur le rebord de la montagne des bois", "667bf840981b1c594af358ce": "Placez une caméra WI-FI sur la tour de la jetée du littoral", "667bf845dc371ee9869f185e": "Placez une caméra WI-FI dans le couloir des bureaux de l'usine", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Bien joué ! On dit que même le monde extérieur a vu notre coup, haha !", "667442da875be5fb415df535": "Placez une figurine de coq doré au niveau de la caméra WI-FI de Prapor dans les bois", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Placez une figurine de coq doré au niveau de la caméra WI-FI de Prapor sur le littoral", "66828746efaecf435dde20ca": "Placez une figurine de coq doré au niveau de la caméra WI-FI de Prapor dans l'usine", "66d080533a3c33d823a3477d": "Placez une figurine de coq doré au niveau de la caméra WI-FI de Prapor dans l'usine", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hello, friend. Things have been a little bumpy for me lately. I will be temporarily raising the prices of my products and services from today until I can solve some pressing matters. A mercenary friend of mine is putting together a team to raid the underground lab, and he needs reliable firepower. Can you help? I see you know as much about the ARs as I do, so I thought I'd entrust this to you. I need an M4A1 with no more than 300 total recoil and ergonomics no less than 70. Not easy, I know. Now, be sure to put an EOTech XPS 3-0 on it, since the client refuses to use any other scope.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Many thanks. I think this will keep me on track for some time.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modify an M4A1 to comply with the given specifications", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "Tu n’as rien perdu en chemin, n’est-ce pas ? Parfait, il est temps d’envoyer les ingénieurs faire quelques relevés. On va enfin découvrir ce que cachent les murs de l’usine. Merci pour ton aide, mon ami.", "66aa74571e5e199ecd094f1b": "Utilisez le transit des douanes vers l'usine (en un raid)", "66aa74571e5e199ecd094f1e": "Éliminez des scavs dans l'usine (en un raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Localisez et obtenez la mallette d'outils de précision dans le laboratoire des douanes", "66ab97d56cb6e3bfd7c79fbc": "Déposez la mallette dans l'entrepôt du laboratoire de l'usine", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "Tu l'as donc trouvé. Excellent ! Comment se passe le passage, est-il sûr ? Dans un état de délabrement, tu dis ? Eh bien, il semble que cette opportunité ne sera pas avec nous pour longtemps. J'enverrai mes hommes dès que possible.", "66aba85403e0ee3101042878": "Localisez le passage menant au labo dans les rues de Tarkov (en un raid)", "66aba85403e0ee310104287a": "Utilisez le transit entre les rues de Tarkov et le labo (en un raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Localisez le passage menant aux rues de Tarkov dans le labo (en un raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Repérez la salle des serveurs dans le labo (en un raid)", "66b0910951c5294b9d213918": "Repérez le dome de danger dans le labo (en un raid)", "66b10eef0951e90ec383850b": "Repérez la salle de contrôle dans le labo (en un raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "The buyer has told me everything is in place. You've earned your reward, and you can expect my men to help you on the new trails.", "66abb32aeb102b9bcd088d62": "Use the transit from Ground Zero to Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Use the transit from Streets of Tarkov to Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use the transit from Interchange to Customs", "66abb3ac416b26ade4a1446c": "Use the transit from Customs to Factory", "66abb3bf228ace5ca9f3d745": "Use the transit from Factory to Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Placez une caméra WI-FI au niveau de l'ours s'étant assis dans une voiture en feu dans les bois", "66debf2e1e254957b82711ff": "Placez une caméra WI-FI au niveau de la chaise à l'envers sur le littoral", "66debf30802386a45d0adb60": "Placez une caméra WI-FI dans les toilettes co-op sur le littoral", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "Le soldat de fortune est venu pour sa nouvelle tâche ! Selon les rumeurs, Tarkov est devenu encore plus dangereux. Qui l'aurait cru, n'est-ce pas ? Quelqu'un a commencé à cibler certaines zones avec des tirs de mortier. \n\nTu ferais mieux d'aller voir ce qui se passe. Et oui, cela signifie aller en plein milieu de ces zones de frappe de mortier. Oui. D'accord, nous avons remarqué des frappes dans la réserve naturelle, la base militaire, les douanes et le littoral. C'est parti.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Vivant et en bonne santé, c'est génial. Voyons donc avec quoi nous travaillons ici. Quelqu'un a volé les mortiers et maintenant ils frappent divers endroits juste avant que les largages aériens n'arrivent.\n\nTrès suspect. Ces poudriers locaux n'auraient certainement pas pu assurer des communications avec le monde extérieur, n'est-ce pas ? Quoi qu'il en soit, tout ce que nous pouvons faire pour l'instant est de regarder.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visitez une zone active de frappe de mortier dans n'importe quelle zone (littoral, bois, base militaire ou douanes)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "D'accord, j'ai entendu parler d'une grosse merde. Ce n'est peut-être pas de ta faute, mais ce n'est pas la question. Les trous du cul de la station d'épuration ont intercepté un tas de ces caisses contenant du matériel de guerre électronique portable. \n\nIls sont évidemment inutiles à ce stade, mais je ne vais pas les laisser voler des biens du gouvernement comme ça.\n\nPour un guerrier comme toi, la tâche est réalisable. Vas à la STEP et rapporte-moi ces trucs de guerre électronique. Et oui, ces rats doivent être abattus.\n\nLes unités portables elles-mêmes ont probablement déjà été remises à leurs commandants, tu es donc assuré d'obtenir cet équipement sur eux. En supposant que tu ne meures pas, je suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendide, les nouveaux jouets sont arrivés. Mes gars vont les adorer. De nos jours, tu dois être prêt à tout, et une telle protection n'est certainement pas superflue.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Livrez l'objet trouvé en raid : Dispositif de guerre électronique portable GARY ZONT", "66e19f359fee1e54e0e01f7c": "Éliminez des renégats", "66e19f7d534a8ff2bb7e9f89": "Localisez et éliminez Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "Toute cette histoire de marchands se passe plutôt bien pour moi, tu ne penses pas ? Tu sais, si je ne me préoccupais pas de moi, je serais mort dans cet enfer il y a longtemps. Quoi qu'il en soit, je m'occuperai des rapports plus tard, pas la première fois.\u00A0\n\nEn ce moment, j'ai besoin d'équiper les gars postés en dehors de mon territoire. Apporte-leur ce nouvel équipement que nous avons trouvé. Je vais t'en donner une partie, mais le reste, tu devras te procurer par tes propres moyens. Tu sais déjà où chercher. Non, tu ne les rencontreras pas face à face. Il suffit de planquer le matos à l'endroit désigné.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Bien, maintenant qu'ils sont à l'abri des menaces aériennes, leur mission de combat sera accomplie sans problème.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Placez un dispositif de guerre électronique portable GARY ZONT dans la tour de la station météo du littoral", "66e071c8a9e80c3f25bb1bad": "Placez des pièces détachées de station radar dans le hangar de l'ancienne scierie des bois", "66e0735089627301d900ef1d": "Placez des pièces détachées de station radar dans le hangar de l'ancienne scierie des bois", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "Il était temps que tu viennes. Tu as aussi remarqué ces démons de la nuit qui sortent de partout, n'est-ce pas ? Ils s'armement bien mieux, hein. On dirait que quelqu'un travaille réellement avec eux. D'en haut, tu sais ?\n\nOn devrait se pencher sur ce que ces salauds manigancent. De plus, ce serait mieux si tu pouvais réduire leurs effectifs. Fais juste attention.\n\nIl y a une rumeur parmi les scavs disant que tu pourrais tomber sur une bête invincible la nuit. Ils disent qu'elle chasse et dévore les humains. \n\nJe me souviens d'une histoire orientale à propos d'un tel démon, son surnom était, euh... \"L'Oni\". Je ne l'aurais pas évoquée avant. Mais maintenant, quelque chose se prépare, et des pensées sombres ne cessent de m'assaillir.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "Alors, qu'as-tu trouvé ? Je ne suis pas resté à rien faire pendant que tu étais parti, j'ai rencontré Partisan. Il dit qu'ils préparent un rituel spécial, et c'est pour cela qu'ils sortent de leurs tanières. Ils parlent tous d'une sorte de \"Nuit du culte\".\n\nJe ne sais pas de quoi il s'agit, mais c'est certainement une mauvaise nouvelle pour Tarkov. Et quelque chose me dit qu'il y a quelqu'un qui orchestre tout cela. Ce démon n'est pas apparu chez nous par hasard.\n\nJ'ai vu quelque chose moi-même la nuit dernière. Son visage était rouge, comme s'il brûlait. J'ai pris mon arme et j'ai visé, mais au moment où j'ai cligné des yeux, il n'y avait plus personne. Peut-être des hallucinations de vieux...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Éliminez les hommes de la nuit encapuchés", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Bon, j'ai de bonnes nouvelles pour toi. Partisan a réussi à espionner une conversation des cultistes avant que le piège ne les tue.\n\nLe Présage, comme ils l'appellent, est à la tête de cette parade de terreur. Il leur a promis que s'ils faisaient ce qu'il leur disait, ils recevraient le nouveau Don de l'Unheard. C'est quoi ce délire ? J'en ai aucune idée. Mais je suis certain que si tu les laisses accomplir leur fichu rituel, il y aura d'innombrables victimes parmi les braves gens. Les gens commencent à fuir les rues, ils disent qu'un fantôme chasse les âmes.\n\nOn ne connaît pas encore les détails de ce mystère, mais c'est sûrement lié à tout ça ! Et on sait qui est derrière tout ça. Il faut éliminer le Présage, et si tu trouves quelque chose de lugubre près de lui, enterre-le bien profond. Ça les tiendra peut-être à distance.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "Les salauds sont neutralisés ? Ces trucs devaient bien finir en Enfer de toute façon. Espérons que le reste des cultistes recule et retourne dans leurs tanières.\n\nC'est marrant, Zryachiy a été absent récemment aussi. Je me demande s'il est descendu du phare pour finir le rituel et libérer ces démons à la lumière du jour.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Localisez et neutralisez l'Oni", "66e3eb4c4a5359f2db0be81a": "Localisez et neutralisez le Présage", "66e3eb65e385f94b38f061d7": "Localisez et neutralisez le Fantôme", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "Je suppose que tu vois ce qu'il se passe maintenant que tu es de retour. Non seulement ces brutes ne se sont pas dispersées, mais elles ont commencé à organiser leurs préparatifs avec encore plus d'ardeur !\n\nJe viens d'apprendre que le pauvre gamin Ryzhy a été capturé par Zryachiy en personne. Ils disent qu'il sera le sacrifice principal. Ça veut dire que notre temps est compté !\n\nPartisan est toujours dans la forêt en train de chasser les cultistes, mais même lui ne peut pas le faire seul. Maintenant, c'est à nous de nettoyer cette vermine de nos propres mains. S'il n'y a plus personne pour réaliser le rituel, peut-être que ce sera terminé.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Arrête-toi, vermine ! Ah, c'est toi. Ils commencent à apparaître dans mon coin, eux aussi. J'en ai croisé quelques-uns juste avant que tu n'arrives.\n\nTu dis avoir nettoyé Tarkov des cultistes ? Eh bien, avec des pertes pareilles, ils ne pourront plus rien tenter de si tôt. Ils vont oublier le Présage pendant un bon moment. Par contre, je ne suis pas certain de retrouver le sommeil de sitôt.\n\nMerci pour ton aide. Sans toi, ça n'aurait pas été possible.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Éliminez des hommes de la nuit encapuché dans le Point Zéro", "66e3ec28ecbe7102342ea56a": "Éliminez des hommes de la nuit encapuché dans la zoen du phare", "66e3ecad063ef452798d369d": "Éliminez des hommes de la nuit encapuché sur le littoral", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "D'accord, je vois la connexion, tu as bien fait ton travail… Oh, ils sont protégés contre les attaques DDoS. Mais et si on y accédait depuis ici, bande d’idiots ? Hm, c’est là que M. Kerman entre en jeu. \n\nTu es toujours là ? Désolé, je n'ai plus de temps pour discuter. Kerman vient d'envoyer ses données, il a dit qu’il ne laissera pas les projets de TerraGroup détruire notre ville. \n\nPendant qu’il désactive la sécurité, je dois formater les disques pour fournir à la Toubib tout ce qu’on peut découvrir.", "670411a2cded018840f5b599": "Localisez l'ordinateur en question dans les bureaux Terragroup du bâtiment Cardinal des rues de Tarkov", "670411d819aafd130ebc4bb8": "Installez la clé USB sur l'ordinateur pour télécharger les fichiers", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "Comment oses-tu ! Mon collègue a joué un rôle crucial dans le sauvetage de la ville et ne méritait pas un tel sort ! Je ne sais pas comment je peux encore te faire confiance après des actes aussi scandaleux.", "67040cae4ac6d9c18c0ade2c successMessageText": "Tu as fait le bon choix. Je sais que Jaeger a essayé de te manipuler pour nuire à mon collègue. \n\nMais je t’assure que cette version du remède était la méthode la plus sûre pour débarrasser la ville du virus...", "6706a4ddec997e861c3f6f04": "Répandez le véritable vaccin dans la zone du phare", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Répandez le véritable vaccin sur le littoral", "6706a51fa60dfe2fb85275ed": "Répandez le véritable vaccin dans les bois", "6706a52083168d9e8ed303d8": "Répandez le véritable vaccin dans les douanes", "6706a61a5fb5eedf15ec6234": "Répandez le véritable vaccin dans l'usine", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Répandez le véritable vaccin dans le labo", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Attends ! Tu ne savais pas non plus qu'elle avait développé ce \"remède\" avec Sanitar ?\n\nJe parie qu'ils ont fait une version simplifiée pour pouvoir éliminer tous les malades sans remords, hein ? Je ne vais pas laisser ça arriver.\n\nJe connais son tempérament... Elle a sûrement conçu une version moins létale du remède pour son propre usage ou pour la vendre.\n\nMais si elle a travaillé là-dessus avec ce type, ça veut dire que c'est lui qui la garde ! Punis ce salaud et récupère la vraie version du remède.\n\nSi ce n'est pas le remède lui-même, trouve au moins la recette... On se débrouillera avec ça.", "67040ccdcc1f3752720376ef failMessageText": "Il faut être sacrément stupide pour la croire, même après que je t'aie littéralement dévoilé la vérité. Le sang de ceux qui mourront à cause de ce vaccin sera sur tes mains, gamin.\n\nQuand ils viendront te hanter dans tes rêves, tu comprendras ce que tu as fait.", "67040ccdcc1f3752720376ef successMessageText": "C'est fait, non ? On leur a vraiment mis une bonne claque à ces \"hommes d'affaires\" !\n\nÇa devrait rappeler à la vieille qu'elle a prêté le serment d'Hippocrate.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Localisez et obtenez le véritable vaccin dans le bureau de Sanitar sur le littoral", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Localisez et éliminez Sanitar", "6719135cfab45272c32a8c01": "Livrez l'objet trouvé", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Eh bien, c’est peut-être enfin terminé ! Ce qui compte, c’est que tu as choisi le bon camp, gamin, et que tu aies la conscience tranquille.\n\nLe remède devrait certainement fonctionner s’ils l’ont fabriqué pour eux-mêmes. Maintenant, il ne reste plus qu’à attendre un peu.", "6707e6614e617ec94f0e63e0": "Répandez le véritable vaccin dans la zone du phare", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Répandez le véritable vaccin sur le littoral", "6707e6614e617ec94f0e63e3": "Répandez le véritable vaccin dans les bois", "6707e6614e617ec94f0e63e4": "Répandez le véritable vaccin dans les douanes", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Salut. Je suppose que tu as déjà vu le BTR qui circule dans Tarkov. Le conducteur offrait autrefois ses services à des opérateurs comme toi, mais dernièrement, il a commencé à travailler aussi avec Skier. Ce conducteur est venu me voir lorsqu'il restaurait le BTR. Laisse-moi te dire que c'était un défi assez intéressant. Mais ce n’est pas le sujet.\n\nIl n’a pas donné signe de vie depuis un bon moment, et voilà qu’il demande soudain de l’aide. Apparemment, il se passe quelque chose de grave. Peux-tu aller le voir et découvrir ce qui se passe ? Il ne reste plus beaucoup d’hommes d’esprit et d’ambition à Tarkov. Les gens comme nous devraient se serrer les coudes.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "Je lui ai dit que c'était dangereux de rejoindre la bande de Skier... Certes, ça offre certains privilèges, mais il est difficile de rester indépendant dans une affaire d'une telle envergure.\n\nJe me demande qui aurait pu se retourner contre Skier ? Après tout, le BTR devrait être sous sa protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Compléter la quête « Délai de livraison - Partie 1 »", "6752f86d538945df8cc3fc3a": "Localisez et obtenez le colis de Prapor dans les bois", "6756bcb3f93f4c1fc2b2d685": "Survivez et quittez la zone", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "J'entends les voix des ténèbres", "6514134eec10ff011f17cc26 description": "Éliminez Knight 15 fois en tant qu'opérateur d'une SMP", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Ça c'est un bon tir", "651413e9c31fcb0e163577c9 description": "Éliminez Zryachiy 15 fois en tant qu'opérateur d'une SMP", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/ge.json b/Libraries/SptAssets/Assets/database/locales/global/ge.json index 18933b4d..d3422e26 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/ge.json +++ b/Libraries/SptAssets/Assets/database/locales/global/ge.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Hinterlasse die Kassette im Pausenraum auf Factory (2. Stock nahe Tor 3)", "5968929e86f7740d121082d3": "Besorge die geschützte Dokumentenkassette im Büro des Tarcone Direktors am Zoll-Terminal-Warenhaus", "5977784486f774285402cf52": "Überlebe und entkomme aus Factory", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Wirklich beeindruckend! Geradezu ein Atomkoffer! Kein Wunder, dass er niemanden verschont hat um das rauszuschleusen.", "5968981986f7740d1648df42": "Besorge den wertvollen Gegenstand aus Wohnheimzimmer 203 in Customs", "5968988286f7740d14064724": "Übergebe den wertvollen Gegenstand", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Verschaffe dir Zutritt zu Wohnheimzimmer 214", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Ich dank’ dir aus tiefstem Herzen. Ich kann nicht beschreiben, wie viel und doch gleichzeitig wie wenig es unter unseren Umständen ist. Die meisten Menschen würden es für sich selbst behalten, aber du hast es mit den Bedürftigen geteilt. Danke sehr.", "5969f98286f774576d4c9542": "Finde Morphium-Injektoren im Raid", "5969f99286f77456630ea442": "Übergebe die Injektoren", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Finde Zündkerzen im Raid", "596b470c86f77457ca18618a": "Übergebe die Batterien", "596b472686f77457c7006f8a": "Übergebe die Zündkerzen", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "Und er sagte da war nichts! Auch wenn die Sticks unbeschrieben sein könnten, überprüfe ich sie trotzdem. Egal was rauskommt, hier ist dein Anteil.", "5979ee2986f7743ec214c7a4": "Finde geschützte USB-Sticks im Raid", "5979ee4586f7743ec214c7a5": "Übergebe die USB-Sticks", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Markiere den dritten Tanker mit einem MS2000 Marker in Customs", "59c128f386f774189b3c84bb": "Markiere den vierten Tanker mit einem MS2000 Marker in Customs", "5c92184386f7746afa2e7840": "Überlebe und entkomme aus dem Bereich", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Großartig! Hier, nimm dies als deine Belohnung. In der Zwischenzeit werde ich den USB-Stick von meinen Spezialisten entschlüsseln lassen.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Verstaue das SV-98 Scharfschützengewehr im Boot", "5a27d85286f77448d82084e7": "Verstaue das Multitool im Boot", "5a3ba11786f7742c9d4f5d29": "Lokalisiere das versteckte Boot nahe dem Wellenbrecher auf Shoreline", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Überlebe und entkomme aus dem Bereich", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Großartig, kannst von jetzt an immer auf mich zählen.", "5a56489d86f7740cfe70eba2": "Übergebe USD", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Du hast sie? Lass’ sie in der Ecke, Danke. Ein wunderschönes Teil, etwa nicht? Wie auch immer, ich bin gerade etwas beschäftigt, kann nicht lange reden.", "5accd5e386f77463027e9397": "Modifiziere eine MP-133, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Gut, in fähigen Händen kann diese Waffe Regime stürzen und Revolutionen auslösen. Lass’ sie in der Ecke, ich prüf’ sie später.", "5accd9b686f774112d7173d1": "Modifiziere eine АКS-74U, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Handlich für CQB und leise... Gute Modifikation, der Kunde wird zufrieden sein.", "5accde3686f7740cea1b7ec2": "Modifiziere eine MP5, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Thank you, leave the rifle on the table, I'll hand it over to Di— ahem, Sniper.", "5acce08b86f7745f8521fa64": "Modifiziere eine DVL-10, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Ja, du kannst dich vor sowas nicht verstecken. Liebe 7,62, ein gutes Kaliber. Danke für die Arbeit. Morgen sollte die nächste Bestellung sein.", "5acce11786f77411ed6fa6eb": "Modifiziere eine R11 RSASS, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Hand it over, let's check out your build. Yeah, the weapon of democracy... Thank you.", "5accdfdb86f77412265cbfc9": "Modifiziere eine M4A1, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Repariere die erste Steuerplatine mit einem Werkzeug-Set in Factory", "5ac7a51a86f774738a4ffc96": "Repariere die zweite Steuerplatine mit einem Werkzeug-Set in Factory", "5ac7a5d586f774383111ee63": "Überlebe und entkomme aus dem Bereich", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Übergebe die Stecker", "5ac5061386f77417e429ce7a": "Finde Leiterplatten im Raid", "5ac5062586f774587c327395": "Übergebe die Leiterplatten", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Lokalisiere das Warenhaus mit den beschlagnahmten Waren in Customs", "5ac6248586f77416781dd3a3": "Besorge das Paket mit Grafikkarten", "5ac624b286f77416781dd3ac": "Übergebe das Paket", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Übergebe die Grafikkarten", "5ac5083d86f7740be2744eed": "Finde CPU-Lüfter im Raid", "5ac5084d86f7740bde1b0031": "Übergebe die CPU-Lüfter", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Lokalisiere die erste Signalquelle auf Shoreline", "5ac5e13586f7746074388f93": "Lokalisiere die zweite Signalquelle auf Shoreline", "5ac5e18c86f7743ebd6c9575": "Überlebe und entkomme aus dem Bereich", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Übergebe die Batterien", "5ac5e98886f77479bc6ca201": "Übergebe die Leiterplatten", "5ac5ea0586f774609f36280c": "Übergebe die Smartphones", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Finde Prozessoren (CPUs) im Raid", "5cb6f88d86f7747d215f09c1": "Finde Wiederaufladbare Batterien im Raid", "5cb6f8de86f7740e9d452685": "Finde Leiterplatten im Raid", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Seventh digit after the decimal separator in the pi number? IIO? Okay, when the time comes, I'll contact you.", "5ac5eb3286f7746e7a509a09": "Erreiche die benötigte Stufe der Fähigkeit „Sorgfältigkeit“", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Übergebe die „Strike“ Zigaretten", "5ac5ef9886f7746e7a509a2d": "Finde „Wilston“ Zigaretten im Raid", "5ac5eff886f7740f43322559": "Übergebe die „Wilston“ Zigaretten", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Lokalisiere den zweiten Ausgang aus Factory", "5ac61adf86f774741c1bf096": "Lokalisiere den dritten Ausgang aus Factory", "5ac61b1486f7743a8f30fc84": "Überlebe und entkomme aus dem Bereich", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Lokalisiere den vierten Ausgang aus Factory", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "I don't like to pretend, although we all do. Sometimes in order to survive, and sometimes because we’re just afraid. You know, I'm not exactly much of a talker, especially with strangers, but you seem like a nice guy. If you managed to earn my trust, I think you'll come to terms with just about anyone. After all, only personal relationships will help us survive now. Speak with Pavel Yegorovich. When he starts to trust you, perhaps I will be able to set up the supply of gunpowder. I know, he's not a saint, but his gunpowder is essential for me.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich is one of the few who stayed. I wonder if it’s because he’s military or just didn't have time to leave. Although, I feel he just has some shady business going.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Erreiche Ansehensstufe 3 bei Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Großartige Waffe, solide gebaut. Es gibt keine weiteren Aufträge, aber du kannst morgen nochmal vorbeischauen.", "5ae34b8b86f7741e5b1e5d48": "Modifiziere eine Remington Model 870, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Eine komfortable Waffe, meisterhaft gemacht, danke sehr. Ich lass’ es den Klienten wissen, dass die Waffe bereit ist.", "5ae3550b86f7741cf44fc799": "Modifiziere eine AKM, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "Und, ist die Zenit AK soweit? Großartig, lass' sie auf dieser Kiste, danke sehr. Du kannst morgen für die nächste Bestellung kommen, wenn du möchtest.", "5ae3570b86f7746efa6b4494": "Modifiziere eine АКS-74N, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "I think i figured how to train the network! Ah, yes, this AK will do, thank you. Leave it somewhere in the corner, I'll look into it later.", "5ae445f386f7744e87761331": "Modifiziere eine AK-105, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Finished with the rifle? Great, hand it to me. I've got an interesting key here, might come in handy to you. It opens the gun store in Ultra, the KIBA store. It's got some great weapon mods in there, could be useful for our future gunsmithing.", "5ae4479686f7744f6c79b7b3": "Modifiziere eine AS VAL, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Willkommen in der Crew, Bruder. Also, bereit für paar Geschäfte?", "5ae44c6886f7744f1a7eb2b8": "Erreiche Ansehensstufe 2 bei Ragman", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Reach level 2 loyalty with Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Shooting like a sniper, good shit. My guys are saying that Interchange is filled with Scav bodies and Ultra is quieter now, so here's your reward, you've earned it.", "5ae44ecd86f77414a13c970e": "Eliminiere Scavs auf Interchange", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Finde das „DINO CLOTHES\"-Geschäft im Einkaufszentrum auf Interchange", "5ae4511d86f7740ffc31ccb5": "Finde das „TOP BRAND\"-Geschäft im Einkaufszentrum auf Interchange", "5ae4514986f7740e915d218c": "Überlebe und entkomme aus dem Bereich", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Markiere den zweiten Tanker mit einem MS2000 Marker auf Interchange", "5ae452fa86f774336a39758e": "Markiere den dritten Tanker mit einem MS2000 Marker auf Interchange", "5ae4531986f774177033c3e6": "Überlebe und entkomme aus dem Bereich", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Beauty will save the world, as they say. Thank you, really helped me out, brother. The hats are gonna be sold in just one day, trust me. Here, take this as a reward.", "5ae4543686f7742dc043c903": "Übergebe die Uschankas", "5ae454a086f7742be909a81a": "Übergebe die Hüte", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Finde Uschanka Ohrklappen-Mützen im Raid", "5fd89799c54dc00f463272d3": "Finde Hüte nach Cowboy-Art im Raid", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Übergebe die Frachtlisten von „OLI\"", "5ae9b3b186f7745bbc722762": "Besorge die Frachtlisten vom „IDEA\"-Geschäft im Einkaufszentrum auf Interchange", "5ae9b3c986f77432c81e2ce6": "Übergebe die Frachtlisten von „IDEA\"", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Found the docs? Big thanks. Hand them over, let's see where our little cargo disappeared.", "5ae9b5bd86f774307c29df37": "Finde die „OLI\"-Frachtroutendokumente im Einkaufszentrum auf Interchange", "5ae9b63286f774229110402d": "Übergebe die Dokumente", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Übergebe die Skimützen", "5ae455fb86f7744dd8242380": "Finde einen Pilgrim Wanderrucksack im Raid", "5ae4562086f774498b05e0dc": "Übergebe den Rucksack", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Übergebe die Schutzweste", "5ae9b91386f77415a869b3f3": "Besorge eine BNTI Gzhel-K Schutzweste mit 50-100% Haltbarkeit", "5ae9b93b86f7746e0026221a": "Übergebe die Schutzweste", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Übergebe die Tragesysteme", "5af079e486f77434693ad7f8": "Finde BlackRock Tragesysteme im Raid", "5af07a0286f7747dba10d8ac": "Übergebe die Tragesysteme", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Übergebe das erste Buch", "5ae9c0e186f7746419683c5e": "Finde das Handbuch „Kleidungsdesign - Teil 2\" im Einkaufszentrum auf Interchange", "5ae9c10686f774703201f146": "Übergebe das zweite Buch", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Wow wow, easy there, I'm on your side, man! Sorry, I'm just fucking around. I see you have mastered your charisma, that's good. Let's talk about business then.", "5ae9c29386f77427153c7fb0": "Erreiche die benötigte Stufe der Fähigkeit „Charisma“", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Seems like it went without a hitch, thanks.", "5ae9c38e86f7743515398707": "Erreiche Ansehensstufe 3 bei Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Verstaue ein grünes Shemagh am angegebenen Ort", "5ae9e2a286f7740de4152a0a": "Verstaue RayBench Hipster Reserve Sonnenbrillen am angegebenen Ort", "5ae9e2e386f7740de4152a0d": "Verstaue runde Sonnenbrillen am angegebenen Ort", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "You scared off some Scavs at Ultra once, remember, brother? Now people say it’s getting worse. Word is it’s crawling with all sorts of scum. Got a task for you: check out the situation on Interchange, make sure it's clear to walk around at least. Find safe paths or something. I really need it to go smoothly, okay?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "You're like some Invisible Man or a ghost or something. Hold on, lemme grab a map. So, the safest roads are here and here, right? Awesome, I'll let my guys know. Thank you, friend, really helped me out here.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Überlebe und entkomme von Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Now that’s a true djigit! I'll assemble my guys, they'll bring so much good stuff from Goshan! So, about your reward: check out the new stock of body armor, all for you.", "5ae9e55886f77445315f662a": "Besorge den „Goshan\"-Kassenschlüssel", "5ae9e58886f77423572433f5": "Übergebe den Schlüssel", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Just don't turn on the flashlight unless you want to get blinded for days! Anyway, well done, leave it on that crate.", "5b47796686f774374f4a8bb1": "Modifiziere eine AK-102, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Come on, give it here, I need to hand it over to the client and fast. I hope you haven’t told anyone what this MPX is built for. Well, let's wish the guy luck.", "5b477b3b86f77401da02e6c4": "Modifiziere eine SIG MPX, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Danke, lass' sie irgendwo hier. Ich bin gerad etwas beschäftigt, meld' mich später.", "5b477f1486f7743009493232": "Modifiziere eine AKMN, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "The rifle is ready? Great. I guess you have already figured out that Sniper's real name is Dima, I let it slip a while ago. Not a word about him to anybody, I hope you understand.", "5b47824386f7744d190d8dd1": "Modifiziere eine M1A, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Makes me want to put it on a showcase display. Masterful work, it truly did turn out to be a masterpiece.", "5b4783ba86f7744d1c353185": "Modifiziere eine M4A1, um die vorgeschriebenen Spezifikationen zu erfüllen", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, cool, give 'em here. Mechanic asked for it, as you've probably figured. I’ll send it to him today. Thank you, big help.", "5b47884886f7744d1c35327d": "Finde Kraftstoffzusätze im Raid", "5b47886986f7744d1a393e65": "Übergebe die Kraftstoffzusätze", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Übergebe die Katzenfiguren", "5b478a6c86f7744d190d8f4d": "Finde goldene Roler Submariner Armbanduhren im Raid", "5b478a8486f7744d1c35328b": "Übergebe die Armbanduhr", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Finde Goldene Eier im Raid", "62a70058ec21e50cad3b6709": "Übergebe die Goldenen Eier", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Verstaue die Peltor ComTac 2 Kopfhörer im Müllhaufen in AVOKADO", "5b478c7386f7744d1a393fb1": "Verstaue 6B47 Ratnik-BSh Helme im Müllhaufen in AVOKADO", "5b478cb586f7744d1a393fb5": "Verstaue die BNTI Gzhel-K Schutzweste im Müllhaufen an der Bühne", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Markiere den zweiten gelben Minibus mit einem MS2000 Marker auf Interchange", "5b478dca86f7744d190d91c2": "Markiere den dritten gelben Minibus mit einem MS2000 Marker auf Interchange", "5b478de086f7744d1c3533a1": "Überlebe und entkomme aus dem Bereich", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Besorge den dritten Chemikalienbehälter vom Einkaufszentrum auf Interchange", "5b4c832686f77419603eb8f0": "Übergebe den zweiten Behälter", "5b4c836486f77417063a09dc": "Übergib den dritten Behälter", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Nice, spot on! Hopefully my boys will recover, quite some gene pool they'll get from the new blood, but heck, they don't have much choice.", "5b47905886f7746807461fe2": "Übergebe die Atemschutzmasken", "5b4790a886f774563c7a489f": "Übergebe die Bluttransfusionskits", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Finde Atemschutzmasken im Raid", "5ec1388d83b69d213d3c2ee0": "Finde medizinische Bluttransfusionskits im Raid", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Platziere eine WiFi-Kamera mit Blick auf die Sägewerk-Anlegestelle in Woods", "5b47936686f77427fd044025": "Platziere eine WiFi-Kamera mit Blick auf die Straße zum Port in Customs", "5b47938086f7747ccc057c22": "Platziere eine WiFi-Kamera mit Blick auf das „KIBA ARMS\"-Geschäft im Einkaufszentrum auf Interchange", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Übergebe das dritte Steuergerät", "5b4c7aec86f77459732b4b08": "Übergebe das zweite Gyroskop", "5b4c8e6586f77474396a5400": "Besorge das zweite einachsige Faseroptik-Gyroskop von Shoreline", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Besorge das erste Motorsteuergerät aus Woods", "66d07de6c7ef9040fff0b789": "Übergebe das erste Steuergerät", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Verstaue Goldketten unter der Matratze beim BTR-82A im „Generic\"-Geschäft im Einkaufszentrum auf Interchange", "5b4796c086f7745877352c2c": "Verstaue Goldketten in der Mikrowelle im 3. Stock des Wohnheims in Customs", "5b47971086f774587877ad34": "Verstaue Goldketten in der mittleren Holzbaracke der Sägemühle in Woods", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Eliminiere PMCs zwischen 22:00 - 10:00 Uhr auf Interchange", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "So, do you feel like Zaitsev yet? Sniper is satisfied with the first test results and has already prepared the next task.", "5bc850d186f7747213700892": "Eliminiere Scavs aus über 40 Metern mit einem Repetier-Scharfschützengewehr, ohne ein Visier zu nutzen", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Not bad, not bad. Even I wouldn't be so accurate with my shots, I'm way too old now. While you were shooting, Sniper has prepared the next test for you.", "5bd983d886f7747ba73fc246": "Schieße beliebigen Gegnern mit einem Repetier-Scharfschützengewehr aus über 40 Metern in die Beine", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Schieße beliebigen Gegnern mit einem Repetier-Scharfschützengewehr aus über 40 Metern in den Kopf", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "You have got a good reaction time since you're still standing here. Grab your new hat, as promised! Go on, shooter, new tests await you.", "5bc47e3e86f7741e6b2f3332": "Eliminiere PMCs aus weniger als 25 Metern mit einem Repetier-Scharfschützengewehr", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Ready? Then let’s get to work. Sniper took a big interest in you.", "5bc4813886f774226045cb9a": "Eliminiere PMCs aus über 80 Metern mit einem Repetier-Scharfschützengewehr", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Eliminiere PMCs aus über 80 Metern mit einem Repetier-Scharfschützengewehr", "657b0567ec71635f16471dd2": "Eliminiere PMCs aus über 80 Metern mit einem Repetier-Scharfschützengewehr", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Good work, owl eyes. You thinned out those night predators.", "5bc84f7a86f774294c2f6862": "Eliminiere Scavs mit einem Repetier-Scharfschützengewehr zwischen 21:00 und 05:00 Uhr in Customs", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "There are no foul tricks in the sniper play. Good work, kid.", "5bc483ba86f77415034ba8d0": "Eliminiere Scav-Scharfschützen mit einem Repetier-Scharfschützengewehr", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "The enemy is absolutely helpless when they don't know where they get shot from. You did well, shooter.", "5bc485b586f774726473a858": "Eliminiere PMCs aus mehr als 45 Metern mit einem schallgedämpften Repetier-Scharfschützengewehr", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Dies ist keine einfache Aufgabe. Versuche es nochmal.", "5bc4893c86f774626f5ebf3e successMessageText": "It seems that sometimes being smart isn’t enough to act smart. Well, a good old bolty can be of help with this. Sniper is silent for now, so let's wait for a little before your next tasks. I will let you know when there are new tests for you.", "5bc48aed86f77452c947ce67": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr ohne zu Sterben", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "Du darfst weder sterben noch den Raid verlassen, bis die Aufgabe abgegeben ist (Status: KIA, MIA und Vorzeitige Flucht sind nicht erlaubt)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Platziere Roler Submariner Armbanduhren im Müll gegenüber den Treppen im 3. Stock des Wohnheims", "5c12320586f77437e44bcb15": "Platziere den präparierten USB-Stick im Müll gegenüber den Treppen im 3. Stock des Wohnheims", "5c1233ac86f77406fa13baea": "Du darfst keine Scavs eliminieren, bis die Aufgabe abgegeben ist", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Finde den präparierten USB-Stick im angegebenem Ort in Customs", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "You did good, now you got my respect! I'll keep you in mind if I have something interesting.", "5c0bc95086f7746e784f39ec": "Eliminiere Scavs mit einer schallgedämpften Kaliber 12 Schrotflinte", "5c0bcc9c86f7746fe16dbba9": "Eliminiere PMCs mit einer schallgedämpften Kaliber 12 Schrotflinte", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Gute Arbeit, mein Freund! Alles verlief nach Plan.", "5c1242fa86f7742aa04fed52": "Eliminiere PMCs zwischen 21:00 und 06:00 Uhr (außer in Factory und in The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "So, what do you think? Some serious toy, yeah? Great, hand it over then. Here, that's for the help. Keep in touch, I might need more help to test some other things.", "5c1b765d86f77413193fa4f2": "Eliminiere PMCs von mehr als 60 Metern mit einer M1A, ausgestattet mit einem Hybrid 46 Schalldämpfer und einem Schmidt & Bender PM II 1-8x24 Zielfernrohr", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "There you go. Now I'm certain you won't piss your pants if some shit hits the fan.", "5c0bdbb586f774166e38eed5": "Erreiche die benötigte Stufe der Fähigkeit „Stressresistenz“", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr auf Reserve", "5c137ef386f7747ae10a821e": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr auf Shoreline", "5c137f5286f7747ae267d8a3": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr in Customs", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr auf Lighthouse", "63aec6f256503c322a190374": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr in Streets of Tarkov", "64b694c8a857ea477002a408": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr auf Interchange", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Ein erfahrener Scharfschütze lässt sich nicht so einfach aus der Ruhe bringen. Atme tief durch und versuche es nochmal.", "5c0be13186f7746f016734aa successMessageText": "Frankly speaking, i wasn't sure you could do it. But it sure seems that you're no regular pleb.", "5c0be2b486f7747bcb347d58": "Erreiche die benötigte Stufe der Fähigkeit „Repetiergewehre“", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Eliminiere PMCs mit einem Repetier-Scharfschützengewehr ohne zu Sterben", "64b67fcd3e349c7dbd06bd16": "Du darfst den Raid weder frühzeitig verlassen (z.B. Im Einsatz vermisst (MIA) oder Desertiert (D)) noch im Raid sterben, solange diese Aufgabe aktiv ist", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Did you bring it? Great, put it all down there in the corner. Careful, the equipment is very fragile. Even if the whole clinic thing fails, I know some people who may be interested in this equipment, but that’s between you and me. Why waste such expensive hardware?", "5c0be66c86f7744523489ab2": "Übergebe die Ophthalmoskope", "5c0be69086f7743c9c1ecf43": "Übergebe die LEDX Haut-Transilluminatoren", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Finde Ophthalmoskope im Raid", "5fd8935b7dd32f724e0fe7ee": "Finde LEDX Haut-Transilluminatoren im Raid", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "To be fair, I did not doubt that you are the person I can trust, not only in work.", "5c0d0dfd86f7747f482a89a5": "Erreiche die benötigte Stufe der Fähigkeit „Gesundheit“", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Sehr gut, sehr gut! Die Kunden werden mit dir zufrieden sein, Soldat. Hier, deine Belohnung.", "5c138c4486f7743b056e2943": "Übergebe die programmierbaren Prozessoren", "5c138d4286f774276a6504aa": "Übergebe die Funksender", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Finde programmierbare Prozessoren (Virtex) im Raid", "5ec13da983b69d213d3c2ee4": "Finde militärische COFDM-Funksender im Raid", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Good, limbs are still attached, and the needed noise has been made. You'll be useful in these matters then, warrior. Here's the reward, you earned it.", "5c1b760686f77412780211a3": "Eliminiere PMCs mit Granaten", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Done already? You know, it actually worked, the way their leaders talk has changed a lot. Do not blame me, in this world you have to negotiate even with such scum. Your reward, mercenary.", "5c1b778286f774294438b536": "Trage die spezifizierte Ausrüstung und eliminiere Scavs aus weniger als 60 Metern auf Interchange", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Trage die UN-Uniform (UNTAR Helm, UNTAR Schutzweste, M4A1-Gewehr) und eliminiere Scavs auf Interchange", "5c1b713f86f774719c22e8a0": "Trage die UN-Uniform (UNTAR-Helm, UNTAR Schutzweste, M4A1-Gewehr) und eliminiere Scavs auf Shoreline", "5c1fd66286f7743c7b261f7b": "Trage die UN-Uniform (UNTAR Helm, UNTAR Schutzweste, M4A1-Gewehr) und eliminiere Scavs in Woods", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Trage die UN-Uniform (UNTAR Helm, UNTAR Schutzweste, M4A1-Gewehr) und eliminiere Scavs auf Streets of Tarkov", "65e08aa9f5879b2586d5fd4c": "Trage die UN-Uniform (UNTAR Helm, UNTAR Schutzweste, M4A1-Gewehr) und eliminiere Scavs auf Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Überlebe und entkomme von Shoreline", "5c13989886f7747878361a50": "Überlebe und entkomme aus Factory", "5c1931e686f7747ce71bcbea": "Überlebe und entkomme aus The Lab", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Überlebe und entkomme aus Reserve", "629f08e7d285f377953b2af1": "Überlebe und entkomme von Lighthouse", "63aec66556503c322a190372": "Überlebe und entkomme aus Streets of Tarkov", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Markiere das zweite Treibstofflager mit einem MS2000 Marker in Woods", "5c10f94386f774227172c576": "Markiere das dritte Treibstofflager mit einem MS2000 Marker in Woods", "5c10f94386f774227172c577": "Überlebe und entkomme aus dem Bereich", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Now we’re talking! I’ll grab a soldering iron and get to work. Perhaps the market's gonna stabilize already by that time.", "5c1129ed86f7746569440e88": "Übergebe die Drähte", "5c112a1b86f774656777d1ae": "Übergebe die Kondensatoren", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Finde Drähte im Raid", "5ca71a1e86f7740f5a5b88a2": "Finde Kondensatoren im Raid", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "There you go, now I'm absolutely sure that you can return from a raid and with some good stuff in your backpack. Well done, brother!", "5c112dc486f77465686bff38": "Erreiche die benötigte Stufe der Fähigkeit „Durchsuchen“", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Do you have it? Great. I wonder what he would ask next time, a diamond-coated toilet? But hey, if he does ask for it, you actually will have to look for it. Thanks for the help, brother.", "5c11427386f77430ff393793": "Übergebe die Teekannen", "5c122c5f86f77437e44bcb0e": "Übergebe die Vasen", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Finde antike Teekannen im Raid", "5ca7258986f7740d424a2044": "Finde antike Vasen im Raid", "62a700893e015d7ce1151d90": "Finde eine Papageienfigur von Axel im Raid", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "My guys are saying that Customs is at World War 3 right now, BEARs and USECs are dropping Scavs left and right! Good shit, nice work. Here's your prize, as promised.", "5c1fa9c986f7740de474cb3d": "Trage die spezifizierte Ausrüstung und eliminiere PMCs in Customs", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Erreiche Ansehensstufe 4 bei Peacekeeper", "5c12489886f77452db1d2b05": "Erreiche Ansehensstufe 4 bei Prapor", "5c1248ef86f77428266184c2": "Erreiche Ansehensstufe 4 bei Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Erreiche Ansehensstufe 4 bei Jäger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "You actually brought them! I'm pleased! Let me have a closer look at them.", "5c139eb686f7747878361a72": "Übergebe die Lesegeräte", "5c139eb686f7747878361a73": "Übergebe die Speichermodule", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Finde UHF-RFID-Lesegeräte im Raid", "5ec14080c9ffe55cca300867": "Finde VPX-Flashspeichermodule im Raid", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Hallo, Soldat. Ich beobachte dich jetzt schon eine ganze Weile und weiß, dass du in der Lage bist, die dir gestellten Aufgaben zu lösen. Werde jetzt nicht übermütig, du bist nicht der Einzige, der weiß, wie man Befehle befolgt. Es gibt noch mehr Kämpfer wie dich, manche sogar noch kompetenter. Ich möchte dir einen Job anbieten, um dir die Chance zu geben, Teil von etwas Größerem zu werden, als du dir vorstellen kannst. Wenn du bereit bist, dann habe ich einen Auftrag für dich: Meine Leute operieren in ganz Tarkov und hinterlassen oft Andenken an sich selbst. Deine Aufgabe ist es, diese Gegenstände zu beschaffen und zu mir zu bringen. Stell keine Fragen. Die Gegenstände sind extrem selten. Ich hoffe, ich muss dich nicht daran erinnern, dass du all diese Gegenstände selbst beschaffen musst? Glaube mir, ich weiß wie kein anderer, wenn jemand lügt. Du wirst über den Ablageort in Kenntnis gesetzt werden. Und noch etwas, alle meine Partner haben ihre Fähigkeiten schon vor langer Zeit gemeistert und sich als zuverlässig erwiesen, und wenn du einer von ihnen sein willst, dann beweise mir, dass du ihnen in der Disziplin nicht nachstehst. Versuche nicht, mich zu kontaktieren, ich werde es selbst tun, wenn die Zeit gekommen ist.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Alles besorgt? Gut, Soldat. Deine hart verdiente Belohnung erwartet dich wie versprochen an der vereinbarten Stelle. Gratulation und sei herzlich willkommen.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Übergebe das im Raid gefundene ramponierte antike Buch", "5c51bf8786f77416a11e5cb2": "Übergebe das im Raid gefundene #FireKlean Waffenschmieröl", "5c51bf9a86f77478bf5632aa": "Übergebe die im Raid gefundene goldene Hahnfigur", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Übergebe die im Raid gefundene Dose mit Sprotten", "5c51c24c86f77416a11e5cb7": "Übergib den im Raid gefundenen Fake-Schnurrbart", "5c51c25c86f77478bf5632af": "Übergebe das im Raid gefundene „Kotton“-Beanie", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Übergebe den im Raid gefundenen alten Feuerstahl", "5c52da5886f7747364267a14": "Übergebe das im Raid gefundene antike Beil", "5cb5ddd386f7746ef72a7e73": "Finde einen alten Feuerstahl im Raid", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Finde eine Dose mit Sprotten im Raid", "5cb5df7186f7747d215eca08": "Finde einen Fake-Schnurrbart im Raid", "5cb5df8486f7746ef82c17ea": "Finde ein „Kotton“-Beanie im Raid", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Finde eine Rabenfigur im Raid", "5ec7998dc1683c0db84484e7": "Übergebe die im Raid gefundene Rabenfigur", "5ec79aaac1683c0db84484e8": "Finde Pestilys Pestmaske im Raid", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Übergebe die im Raid gefundene WZ Geldbörse", "60d0748820a6283a506aebb1": "Finde LVNDMARK's Rattengift im Raid", "60d074ef401d874962160aee": "Übergebe das im Raid gefundene LVNDMARK Rattengift", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Finde eine Smoke-Sturmhaube im Raid", "60e827faf09904268a4dbc40": "Übergebe die im Raid gefundene Smoke-Sturmhaube", "62a6ff004de19a4c3422ea5d": "Übergebe den im Raid gefundenen DanExert Missam Gabelstapler-Schlüssel", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Hast du es? Gute Arbeit. Also, ich glaube, du bist würdig mit Jäger in Kontakt zu treten. Er müsste einiges an Arbeit für dich haben.", "5d249a6e86f774791546e952": "Finde Jägers verschlüsselte Nachricht", "5d249aa286f77475e8376399": "Übergebe die Nachricht", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Finde Jägers Lager am angegebenen Ort in Woods", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Übergebe die im Raid gefundenen Iskra Rationspackungen", "5d24bb4886f77439c92d6bad": "Übergebe die im Raid gefundenen Instantnudel-Packungen", "5d24bb7286f7741f7956be74": "Übergebe die im Raid gefundenen großen Dosen mit Rindereintopf", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Wie eine berühmte Person zu sagen pflegte: „Schwebe wie ein Schmetterling, steche wie eine Biene“. Ein guter Rat, den du dir besser merken solltest. Spürst du, wie leicht es ist, sich ohne die ganzen Platten zu bewegen? Wenn du dich schnell bewegst, brauchst du nicht einmal eine Schutzweste, um mit dem Abschaum fertig zu werden.", "5d25af3c86f77443ff46b9e7": "Eliminiere Scavs in Woods, ohne eine Schutzweste zu tragen", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Verstaue eine Wasserflasche (0,6l) im ZB-016 Bunker in Woods", "5d2deedc86f77459121c3118": "Verstaue eine Iskra Rationspackung in dem ZB-014 Bunker in Woods", "5d2defc586f774591510e6b9": "Verstaue eine Wasserflasche (0,6l) im ZB-014 Bunker in Woods", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "No way you can survive for so long! Impressive. Here you go, drink this, regain your strength.", "5d25c5a186f77443fe457661": "Überlebe für 5 Minuten, während du an kompletter Dehydrierung leidest (außer in Factory)", "5d9f035086f7741cac4a9713": "Überlebe und entkomme aus dem Bereich", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Handled it? Nicely done. Your training is almost done, friend. If we keep it that way, we may start taking care of the order in the city earlier than planned.", "5d25c8c986f77443e47ad47a": "Eliminiere Scavs, während du unter Schmerzen leidest", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Successful? Great! Sweat saves the blood! Don't get too ecstatic now, there are some more tasks for you.", "5d25d09286f77444001e284c": "Eliminiere Scavs innerhalb eines Raids in Woods, ohne Medizin oder Stimulatoren zu nutzen", "5d25d0d186f7740a22515975": "Du darfst keine medizinischen Produkte oder Stimulatoren nutzen, bis die Aufgabe abgegeben ist", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "So you can even handle tremors? Great! To be honest, I didn't think you would succeed, the task was very difficult.", "5d25d4e786f77442734d335d": "Eliminiere PMCs durch Kopfschüsse während du unter dem Zittereffekt leidest", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Du hast also überlebt? Wer hätte das gedacht.", "5d25dc2286f77443e7549028": "Eliminiere PMCs während du durch eine Blendgranate gestunned bist", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "How many you say there were, six? And you got them all without the \"goggles\"? Indeed, you are a great night hunter, kid.", "5d25fd8386f77443fe457cae": "Eliminiere Scavs zwischen 21:00 - 04:00 Uhr ohne Nachtsicht- oder Thermalgeräte zu verwenden (außer in Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "How do people say? What is difficult in training will become easy in a battle! This skill will come in handy, trust me on this one. Your training is almost complete. Looks like you are ready to become the Hunter.", "5d2605ef86f77469ef0f7622": "Erreiche die benötigte Stufe der Fähigkeit „Vitalität“", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Good job! Of course, there is enough scum in Tarkov, others will come for sure. But at least they will think twice before tearing the place apart.", "5d26143c86f77469ef0f894c": "Eliminiere PMCs im Bürobereich in Factory (jedes Stockwerk erlaubt)", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Finde und eliminiere Reshala", "5d2710e686f7742e9019a6b2": "Übergebe Reshalas goldene TT Pistole", "5d66741c86f7744a2e70f039": "Finde Reshalas goldene TT Pistole im Raid", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "They made their choice when they stepped on the wrong path. You have done the right thing, hunter, thank you.", "5d2701b586f77469f1599fe2": "Eliminiere Scavs im gesamten Gebiet Tarkovs", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Learned the lesson? Good. See, you can disarm an enemy in many ways.", "5d307fc886f77447f15f5b23": "Eliminiere gestunnte PMCs", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Finde und eliminiere Killa", "5d271a3486f774483c7bdb12": "Übergebe Killas Helm", "5d667a8e86f774131e206b46": "Finde Killa's \"Maska-1SCh\" kugelsicheren Helm im Raid", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Finde und eliminiere Shturman", "5d272a0b86f7745ba2701532": "Übergebe Shturmans Schlüssel", "5d2f464e498f71c8886f7656": "Finde Shturmans Schlüssel im Raid", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Protected the honor of the uniform? That's great. Screw them, there is nothing worse than giving the oath and then falling into crime.", "5d272bd386f77446085fa4f9": "Eliminiere Scavs, die eine Polizeiuniform tragen (Reshalas Leibwächter)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "I've heard what you did. Looks like it's calmer out there now, with way fewer looters. You have my gratitude.", "5d2733c586f7741dea4f3072": "Eliminiere PMCs im Bereich des Wohnheims in Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Welcome back, hunter. So you've dealt with the bandits? Can't even imagine how much of a hassle that was, you did a great job.", "5d27369586f774457411b264": "Finde und eliminiere Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "So they're operating near laboratories and military facilities... Oh, I hope it won't start another war, on top of the one already going on. Well, kid, it's not for us to resolve this, at least for now.", "5d273a4d86f774457411b266": "Eliminiere Raider", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Got it? Great. Hopefully, I won't have to watch people die helplessly anymore.", "5d27446f86f77475a86565a3": "Übergebe die Defibrillatoren", "5d7782c686f7742fa732bf07": "Übergebe die CMS-Kits", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Finde tragbare Defibrillatoren im Raid", "5ec1538a92e95f77ac7a2529": "Finde CMS Feldchirurgie-Ausrüstungen im Raid", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Finde das Haus des Ortsvorsitzenden im verlassenden Dorf auf Shoreline", "5d357b9586f7745b422d653f": "Finde das Haus des Fischers im verlassenen Dorf auf Shoreline", "5d357bb786f774588d4d7e27": "Finde das Haus des Priesters im verlassenen Dorf auf Shoreline", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Überlebe und entkomme von Shoreline", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Alles erledigt? Gut, dann wollen wir mal sehen, was er so treibt. Komm bald wieder, Mechanic und ich werden die USB-Sticks überprüfen und geben dir dann auch Bescheid.", "5d27491686f77475aa5cf5b9": "Übergebe die USB-Sticks", "5d6949e786f774238a38d9e0": "Finde geschützte USB-Sticks im Raid", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Übergebe das Fotoalbum", "5d357e0e86f7745b3f307c56": "Finde Jägers Zimmer mit Blick auf eine Bucht im Resort auf Shoreline", "5d357e8786f7745b5e66a51a": "Finde Jägers Fotoalbum", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "You got them? Good work, kid. Now we just have to figure out how to find this laboratory. Well, I'll deal with this matter myself, don't worry.", "5d2f375186f7745916404955": "Finde Terragroup Labs Zugangskarten im Raid", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Übergebe die Zugangskarten", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Come on in. Want some tea? Well, whatever. So listen, here's the deal. Soon I will be hosting a few friends of mine. I want to go hunting with them, but there's just no way I can take them hunting with these MP shotguns, right? I have a couple of nice western rifles here, but I need them to be zeroed properly first. And we have just the client for that, his name is Shturman. So, test my build (Remington M700 sniper rifle with a FullField TAC30 1-4x24 scope) on this scum. Find a long-range position and make a precise shot to the head, so that the bastard wouldn't even have a chance. Don't worry, I won't disappoint you with the reward, kid.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Those are damn great rifles! Good work! You know, I think I might get into gunsmithing myself, I took quite a liking to this thing. So, about the reward: check out the little things I found, you might need them.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Eliminiere Shturman aus über 75 Meter Entfernung mittels Kopfschuss. Verwende ein M700 Scharfschützengewehr mit dem angegebenen Zielfernrohr", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Seht mal, wen wir hier haben! Hallo du! Hör mal, du weißt von der Militärbasis in der Nähe des Resorts an der Küste? Wahrscheinlich warst du selbst dort. Also, ich habe ein paar Neuigkeiten. Es heißt, dass in den alten Lagerhäusern dort noch eine Menge Lebensmittel lagern und dass Banditengruppen dort ihr Unwesen treiben, und zwar nicht die üblichen Scavs, sondern gut ausgerüstete. Ich möchte, dass du nachsiehst, ob in den Lagerhäusern noch etwas zu finden ist. Aber sei vorsichtig, es gibt dort wirklich eine Menge gefährlicher Leute.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Haben die schon angefangen, alles auszuräumen? Verstanden, wir müssen schnell handeln.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Finde das Lebensmittellager in Reserve", "629f1259422dff20ff234b4d": "Überlebe und entkomme aus dem Bereich", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Übergebe die Militär-Batterie", "5d4c020a86f77449c463ced6": "Finde 30x165mm OFZ Geschosse im Raid", "5d4c028c86f774389001e027": "Übergebe die OFZ Geschosse", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "So, have you decided? Just a couple of injections. Here and here. Keep yourself calm, at least a couple of days, relax more and take your vitamins.", "5d6fb8a886f77449db3db8b6": "Übergebe Rubel", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "So, I've been told you took up the training. Well, with your skills, I'm sure you'll learn quick.", "5d6fbf0f86f77449d97f738e": "Übergebe Euro", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Got it done already? Nice job. Wait here a minute, I need to measure your sizes and figure out the sewing technique for this one. As promised. But hey, you gotta understand that the materials ain't cheap these days, so be prepared for the price. Still, it's got three stripes, an icon of style, you know.", "5dc53fd386f77469c87589a3": "Finde und eliminiere Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Übergebe die Stoffe", "5e38356d86f7742993306cac": "Übergebe die Gewebe", "5e3835e886f77429910d4465": "Übergebe die Paracord-Schnuren", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Übergebe die Gewebe", "5e383a6386f77465910ce1f8": "Finde Paracord-Schnuren im Raid", "5e383a6386f77465910ce1f9": "Übergebe die Paracord-Schnuren", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Übergebe die Gewebe", "5e4d4ac186f774264f75833b": "Finde KEKTAPE Gewebeklebebänder im Raid", "5e4d4ac186f774264f75833c": "Übergebe die Klebebänder", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Übergebe die Gewebe", "5e4d515e86f77438b2195249": "Finde KEKTAPE Gewebeklebebänder im Raid", "5e4d515e86f77438b219524a": "Übergebe die Klebebänder", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, you're just in time. Maybe you have already heard that a new doctor has shown up? But this one is not some good-willed Aesculapius - he helps some people but cripples others. They say he sells medicine and does surgeries right on the street. They call him Sanitar, can you imagine? He settled on the Shoreline and interestingly enough, the local punks are very happy with him, and it's clear why: he patches them up, and even sells them drugs and first-aid kits of all sorts. This means that he has quite an inventory with him. Find out about this Sanitar, but quietly. For now, just find out where this scum hangs out. I think that he does both the selling and healing at the same spots. You interested?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "So you're saying there's quite a lot of supplies? Guess he found himself a fresh unopened medical warehouse and is now selling everything out from it. If only I could find that warehouse... well, that's not your problem anyway. For now.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Markiere den ersten Handelsstand mit einem MS2000 Marker auf Shoreline", "5eda1da9a58a4c49c74165ee": "Markiere den zweiten Handelsstand mit einem MS2000 Marker auf Shoreline", "5eda1dd3317f6066993c1744": "Markiere den dritten Handelsstand mit einem MS2000 Marker auf Shoreline", "5f0389268580cc37797e0026": "Überlebe und entkomme aus dem Bereich", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "So you believed that woman? You do realise that she's just deceiving you for her own benefit? Do you think that because Sanitar treats some people, he can't kill others? You've completely gone insane with that war or yours, can't distinguish black from white. Get out of my sight, I want to be alone.", "5edab4b1218d181e29451435 successMessageText": "You did the right thing. Even if others say that Sanitar did good deeds, he brought much more evil. Don't believe those people's lies. I've seen people like Sanitar before: once they go crazy, there's no turning back. You can only shoot them like rabid dogs.", "5edab5a6cecc0069284c0ec2": "Finde und eliminiere Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Lokalisiere die Gruppe, die zum Resort nach Shoreline geschickt wurde", "5edab8890880da21347b3826": "Lokalisiere die Gruppe, welche zum Pier auf Shoreline geschickt wurde", "5edab8e216d985118871ba18": "Lokalisiere die Gruppe, welche zu den Landhäusern auf Shoreline geschickt wurde", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Überlebe und entkomme aus dem Bereich", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "Der Verlust meiner Leute an der Küste ist sicherlich ein sehr unangenehmes Ereignis, aber eine neue Quelle für Medikamente ist wichtiger. Wir brauchen nur einen anderen Ansatz für diese Angelegenheit. Meinem Assistenten ist es gelungen, einen Einheimischen von der Küste zu bestechen, damit er uns von Sanitar erzählt, dem Mediziner, den wir suchen. Er hat ein kleines Sicherheitskommando, ein paar Orte an der Küste, aber was seltsam ist, ist, dass er Operationen direkt auf der offenen Straße durchführt und seine Werkzeuge oft in der Nähe solcher Orte versteckt, in Gebäuden in der Umgebung. Besorg mir diese Werkzeuge. Sanitar wird kooperativer sein, wenn er merkt, dass wir seinen Handel jederzeit stoppen und die Kontrolle über das Gebiet übernehmen können.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Hast du die Werkzeuge mitgebracht? Leg sie in diese Kiste, ich muss sie ordentlich reinigen, es ist unklar, zu welchem Zweck sie vorher benutzt wurden. Man sieht deutlich, dass er in einer schwierigen Situation ist, alles ist blutverschmiert, eindeutig unhygienische Verhältnisse. Nun, das ist jetzt meine Angelegenheit. Ich werde Sanitar seine Werkzeuge zusammen mit dem Brief über den einen Einheimischen, den wir bestochen haben, zurückgeben, damit er versteht, was wir von ihm wollen.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Finde das mit einem blauen Symbol markierte Feldchirurgie-Kit von Sanitar auf Shoreline", "5edabb950c502106f869bc04": "Übergebe Sanitars Feldchirurgie-Kit", "5edabbff0880da21347b382b": "Besorge Sanitars Ophtalmoskop auf Shoreline", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hey you, tough guy! C'mere, I have a job for you. I've heard Prapor sent you to get a supply of drugs from some Sanitar dude. Don't make that face! I ain't got no interest in those drugs, let Prapor collect it and put it up his ass, you have already received profit from him anyway, haven't you? You just need to put these smart little things in containers that are in Sanitar's stashes. Prapor won't get wind of anything, it's a two-minute job, but the profit is good. Just gotta do it fast, before they move those containers.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Good stuff, good stuff! Finally, Prapor will get his caches exposed, there are probably whole mountains of loot. Guns, ammo, food, dope. Out fucking standing! We'll do this one ourselves though, without you. No offense. Thanks.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Überlebe und entkomme aus dem Bereich", "5f071a9727cec53d5d24fe3b": "Markiere den Medizinbehälter beim Resort auf Shoreline mit einem MS2000 Marker", "5f071ae396d1ae55e476abc4": "Markiere den Medizinbehälter bei den Landhäusern auf Shoreline mit einem MS2000 Marker", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Junger Mann, warte. Ich wusste, dass Jäger dich bitten würde, Sanitar zu töten, aber du musst es nicht tun. Ich verstehe Jägers Ansicht, dass er nur ein Ungeheuer ist, aber das ist er nicht. Ich bin sicher, dass Sanitar nur den Einheimischen helfen will. Unter den gegebenen Umständen führt er die kompliziertesten Operationen durch, und es ist nicht verwunderlich, dass sie oft schlecht enden. Er ist ein Arzt mit dem wertvollsten Wissen, das noch viele Leben retten kann. Ein Arzt, der Zugang zu einem Lager mit Medikamenten hat, die für uns sehr wichtig sind. Und er hat bereits Verhandlungen mit mir aufgenommen und wird bald mit mir zusammenarbeiten. Aber dafür brauche ich etwas, das ihn interessieren wird, und ich glaube, ich weiß, was das sein wird: das Labor. Die Grundlage für seine Experimente sind die Zugangskarten und die Proben der Stimulatoren, glaube ich. Kannst du sie für mich finden? Du musst die Zugangskarten und Proben selbst besorgen, bediene dich nicht an Gebrauchtware.", "5edac34d0bb72a50635c2bfa failMessageText": "Es ist sehr bedauerlich, dass du auf diesen Jäger statt auf die Stimme der Vernunft gehört hast. Sanitar hätte uns mit seinem Wissen und seinen Medikamenten in vielerlei Hinsicht helfen können. Er war kein Engel, aber jeder hat die Chance, für seine Sünden zu büßen. Aber du hast ihm diese Möglichkeit genommen. Ich bin sehr enttäuscht von dir.", "5edac34d0bb72a50635c2bfa successMessageText": "Ich danke dir. Ich wusste, dass du verstehst, wie wichtig Sanitar und seine... Arzneimittel im Moment sind. Er hat bereits großes Interesse an Zugangskarten und Stimulatoren gezeigt und die erste Ladung geschickt. Hier, das ist dein Anteil.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Du darfst Sanitar nicht töten", "5f04935cde3b9e0ecf03d864": "Übergebe die Zugangskarten", "5f04944b69ef785df740a8c9": "Übergebe die Schlüsselkarte", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Guten Tag, Soldat. Denn der Tag ist tatsächlich gut. Ich hatte recht, die neuen Stimulatoren stehen in Verbindung mit der TerraGroup. Mechanic hat Informationen über Sanitar gefunden. Nicht sehr viel, und es hat uns sehr viel gekostet, aber besser als nichts. Sanitar arbeitete für die TerraGroup, und zwar nicht als gewöhnlicher Angestellter. Er hat einen Abschluss in Medizin, ist Spezialist für Infektionskrankheiten, geschieden... Das sind alle Informationen, die wir über ihn haben. Ich will mehr wissen, mein Freund, es interessiert mich sehr, woher er Zugang zu solchen Ressourcen hatte. Finde seinen Arbeitsplatz und finde mehr heraus.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Wir haben den USB-Stick entschlüsselt. Es gibt eine Menge wichtiger Informationen, aber ich kann dir nicht alles sagen. Es ist geheim. Ich kann dir aber etwas über Sanitar sagen, er ist Wissenschaftler. Er hat Drogen erforscht und entwickelt und sie dann an Menschen getestet. Eine sehr... gewagte oder, wie man manchmal sagt, eine sehr unmoralische Forschungsarbeit.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Übergebe den mit blauen Klebeband markierten USB-Stick", "5eec9d054110547f1f545c99": "Finde Sanitars Arbeitsplatz in The Lab", "5eff5674befb6436ce3bbaf7": "Besorge Informationen über Sanitars Arbeit", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Greetings, warrior. So here's the deal, a birdy told me that those ex-army guys who secured Reserve base dug out some pass to the underground bunker. Of course, they didn't do it with their own hands, they forced the Scavs to do the job, and most likely none of the poor bastards made it back out. So anyway, I've got no idea what sort of bunker that is. I've had some information that it could be the command bunker. But I'm not sure if it's exactly that bunker or just a bomb shelter for the base personnel. For now, there's no use to send a big group there for them to just die to those raiders. Check those catacombs out and let me know if it's worth sending a group there. The pay is good. You in?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "So you say it's a command shelter? Rumors don't lie, huh... God damn! I'll send my men there today, let them check the place out. There could be so much valuable shit there! Anyway, here, take your reward. As promised.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Überlebe und entkomme aus dem Bereich", "5ee8eea538ca5b3b4f3c4647": "Lokalisiere den unterirdischen Bunker auf Reserve", "5ee8eecc0b4ef7326256c660": "Finde den Kontrollraum im unterirdischen Bunker auf Reserve", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hey, merc, you are just in time, you are exactly who I need. Do you remember that fucking command bunker you found under the Reserve base? Long story short, my guys went there, and it turned out to be a real nasty place. Built with a high level of protection: filters, generators, all entrances are blocked by extremely strong hermetic locks, it's like an underground fortress. But the raiders opened the fucking thing and dug in like Alabama ticks. So, my men got in serious trouble, less than half made it out of there. But you know, now it's even more intriguing, for fuck's sake. So my people will not go there anymore for no reason, but if you could find a safe route for them... You are an experienced guy, so I need you to quietly, on those soft paws of yours, find out where all the entrances are. The guys said the entrances had those big hermetic doors. So it's up to you to scout the way in.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Welcome back, I'm listening. Aha, so that's how it is... The door is right there, right? Just draw it right on top of my map, don't worry. So this bunker connects almost all facilities of the base? Fuck, how convenient, you could travel half the base under everyone's nose. Now it's clear why the raiders are there, you can control the entire base from under there. Thank you, warrior! Here's your reward.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Überlebe und entkomme aus dem Bereich", "5ee8ec5ed72d953f5d2aabd1": "Lokalisiere die hermetische Tür, welche zum Krankenhaus führt (Weißer Läufer)", "5ee8ecd75eb3205dae135d17": "Lokalisiere eine der zwei hermetische Türen, welche zum Gebäude der Akademie führen (Schwarzer Läufer)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "So that's how it is, it's right on the first floor? How many times have my people been there and found nothing. Did you get inside the room? Found anything interesting in there? Well, doesn't matter, I'll send my boys to check it out anyway. Here's your reward, you've earned it. Thank you.", "5f0488c590eea473df674002": "Finde Sanitars Büro im Resort", "5f04983ffbed7a08077b4367": "Überlebe und entkomme aus dem Bereich", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Sei gegrüßt, Soldat. Ich habe eine Aufgabe für dich. Lange Rede, kurzer Sinn: Ich habe den Kontakt zu einer meiner Gruppen verloren, und das ist schon eine ganze Weile her. Als die Kacke am Dampfen war, schickte ich sie nach Woods, um eine Fracht abzuholen. Ich befürchte, dass sie in einen Hinterhalt geraten sind. Als ich das letzte Mal Kontakt hatte, berichteten sie, dass die USECs sich ihnen von den Hügeln aus genähert hätten. Geh der Sache nach und überprüfe, ob jemand überlebt hat. Der Konvoi bestand aus einem BRDM, einem Bukhanka-Van und einer Art Lastwagen, ich weiß nicht mehr genau, was für einer. Ich denke, dass sich die USECs auch irgendwo in der Nähe niedergelassen haben müssen, also sei wachsam. Finde meinen Konvoi und das Lager der USECs, sofern es wirklich dort ist. Wegtreten.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Meine Jungs haben es also nicht geschafft und der Transport wurde geplündert... Und ein USEC-Lager in der Nähe, sagst du? Das ist scheiße, die Fracht war sehr wichtig. Nun, du hast deinen Teil der Abmachung erfüllt, also hier ist die Belohnung. Du kannst jetzt verschwinden.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Lokalisiere Prapors verschwundenen Konvoi in Woods", "5fd9fad9c1ce6b1a3b486d05": "Lokalisiere das temporäre USEC-Camp", "5fd9fad9c1ce6b1a3b486d0d": "Überlebe und entkomme aus dem Bereich im gleichen Raid", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "The air in the whole Woods trembled from such furious firefight. The scum got what he deserved, and all thanks to you. Here, the appropriate reward for such a feat. Don't be shy, you can buy the new rifles too.", "600303250b79c6604058ce30": "Finde und eliminiere Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Lokalisiere und untersuche den zweiten LAV III auf Reserve", "608925d455f4ac386d7e7fc4": "Markiere den ersten LAV III mit einem MS2000 Marker", "608930aa1124f748c94b801e": "Lokalisiere und untersuche den T-90 Panzer auf Reserve", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Ist ja gut! Nimm das Geld! Meine einzige Bedingung ist, dass du niemandem von diesem Deal erzählst.", "60929ad46342771d851b827a": "Besorge das Paket mit dem zentralen Kontrollpanel des T-90M in der Militärbasis", "60929afc35915c62b44fd05c": "Übergebe das Paket", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Finde das Militärdokument #3 im Kommandobunker auf Reserve", "60ae0f0586046842a754e21e": "Übergebe die zweiten Dokumente", "60ae0f17b809a4748759078c": "Übergebe die dritten Dokumente", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Good work out there. I hope they get what's going on now and that they can't just kill my people like that. Here's the reward.", "608bffeee0cc9c2d4d2ccb29": "Eliminiere Raider im Kommandobunker der Militärbasis", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Übergebe die erste Krankenakte", "60ae12ffb809a474875907aa": "Finde die Krankenakte #2 auf Reserve", "60ae134cabb9675f0062cf6e": "Übergebe die zweite Krankenakte", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "So sieht es also aus! Gut. Danke dir, ich werde sie später eingehend studieren. Hier ist deine Bezahlung, wie versprochen.", "6092942fb0f07c6ea1246e3a": "Finde den Steuerblock des MBT-Navigationskomplexes auf Reserve", "6092947635915c62b44fd05b": "Übergebe den Navigationskomplex", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "So the exit works? Excellent. I'm still preparing your reward, so tell me more about the opening mechanism for that bunker door in the meantime.", "608a94101a66564e74191fc3": "Finde den geheimen stromlosen Ausgang auf Reserve", "608a94ae1a66564e74191fc6": "Entkomme durch diesen Ausgang", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Sauber, meine Jungs sind gesund und munter wieder zurück, nicht ein Kratzer. Hier ist deine Belohnung!", "608ab22755f4ac386d7e7fdc": "Erledige Scavs im unterirdischen Lager von Reserve", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Überprüfe das zweite Arsenal in den südlichen Baracken (Weißer Bauer) auf Reserve", "608bd2465e0ef91ab810f98a": "Überprüfe das Dienstzimmer in den östlichen Baracken (Schwarzer Bauer) auf Reserve", "608c187853b9dd01a116f480": "Überlebe und entkomme aus dem Bereich", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Überlebe und entkomme aus dem Bereich", "60a4dc7e4e734e57d07fb335": "Markiere das erste Treibstofftank-Lager mit einem MS2000 Marker auf Reserve", "60b90232ec7c6f5eb510c195": "Markiere das zweite Treibstofftank-Lager mit einem MS2000 Marker auf Reserve", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Erledigt? Die Luft riecht fast schon frischer. Es ist eine Schande, dass es keinen anderen Weg für sie gab.", "608a8356fa70fc097863b8f8": "Eliminiere Scavs im Baracken-Areal auf Reserve", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Das sind gute Neuigkeiten. Die Welt ist jetzt ein bisschen sauberer. Hoffe, dass dich dieser Bastard nicht mit seinem Vorschlaghammer erwischt hat?", "60c0d187938d68438757cda2": "Finde und eliminiere Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Finde Tagillas BOSS Kappe im Raid", "60cfa5a85f9e6175514de2e3": "Übergebe die BOSS Kappe", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Eliminiere PMCs auf Interchange", "60ec0b1871035f300c301acd": "Eliminiere PMCs in The Lab", "60ec2b04bc9a8b34cd453b81": "Du darfst weder sterben noch den Raid verlassen, bis die Aufgabe abgegeben ist (Status: KIA, MIA und Vorzeitige Flucht sind nicht erlaubt)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Eliminiere PMCs auf Ground Zero", "65e19abadf39d26751b3bb1e": "Eliminiere PMCs auf Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Eliminiere PMCs in der Scavbasis im Baustellenbereich auf Customs", "60ec1e72d7b7cb55e94c1764": "Eliminiere PMCs in der Scavbasis bei der Straßensperre auf Woods", "60ec2229fd1bf4491c4e4552": "Eliminiere PMCs im Resort auf Shoreline", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "There you go, that's way better. Thank you, warrior. The guys are saying it's calmed down now, so looks like the morons understood your message.", "60e8650e5d67b234af3d3926": "Eliminiere Scavs mit Kopftreffer", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Bloody hell... You got them all by yourself? You've got guts, that's for sure. Somethin' ain't right about those psychos, I'm tellin' you...", "60e82c12fd1bf4491c4e4547": "Finde ungewöhnliche Messer im Raid", "60e82c5926b88043510e0ad7": "Übergebe die Messer", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Übergebe die LEDX Haut-Transilluminatoren", "60f028ca86abc00cdc03ab89": "Finde Haufen von Medikamenten im Raid", "60f028f85caf08029e0d6277": "Übergebe die Medikamente", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Finde OLOLO Multivitaminpräparate im Raid", "62a70168eb3cb46d9a0bba7a": "Übergebe die Multivitamine", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Marvelous, mercenary. Now it will be much easier for my people to operate on the location! Thank you for your work.", "60e745d6479eef59b01b0bdc": "Eliminiere Raider auf Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Great, great! The clients have already rewa– uh, thanked us for the successful mission. Good job, mercenary.", "60e8174d0367e10a450f7818": "Übergebe im Raid gefundene Dogtags von BEAR PMCs der Stufe 50 oder mehr", "60e81795479eef59b01b0bdf": "Übergebe im Raid gefundene Dogtags von USEC PMCs der Stufe 50 oder mehr", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Finde militärische COFDM-Funksender im Raid", "60e7449875131b4e61703b7e": "Übergebe die programmierbaren Prozessoren", "60e744c9d1a062318d3d2262": "Übergebe die Funksender", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Finde Militär-USB-Sticks im Raid", "62a7019ea9a0ea77981b57da": "Übergebe die USB-Sticks", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Great, that's all the results I needed, hand me the notebook. Thanks, mercenary.", "60e740b8b567ff641b129573": "Eliminiere PMCs aus mehr als 100 Metern", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Großartig, vielen Dank, mein Freund. Der Kollege hat bereits berichtet, dass er die Waren erhalten hat. Ich glaube nicht, dass es die letzte Bestellung von ihm war, also werde ich weiter auf dich zählen.", "60e84ba726b88043510e0ad8": "Verstaue ein Trijicon REAP-IR Zielfernrohr unter dem Sockel des gelben Krans im Baustellenbereich von Customs", "60e85b2a26b88043510e0ada": "Verstaue ein Trijicon REAP-IR Zielfernrohr hinter den Müllcontainern der neuen Tankstelle von Customs", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respect, brother, you helped me out big time! If you see any dangerous dudes in Ultra, you let me know. Might need you to deal with them again.", "60e73ee8b567ff641b129570": "Eliminiere PMCs im Einkaufszentrum auf Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Übergebe den Whisky", "60f028268b669d08a35bfad8": "Finde aufbereitetes Wasser (Superwasser) im Raid", "60f0284e8b669d08a35bfada": "Übergebe das aufbereitete Wasser", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Finde „Pevko Light“ Bier im Raid", "62a70110eb3cb46d9a0bba78": "Übergebe das Bier", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Finde und eliminiere Shturman", "60e7261eb567ff641b129557": "Finde und eliminiere Glukhar", "60e72629465ea8368012cc47": "Finde und eliminiere Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Here you are, swift one. You pleased the old man, and drew conclusions yourself, I hope. You yourself are the weapon and the monolith, not the amount of steel you wear.", "60e729cf5698ee7b0505743c": "Eliminiere PMCs in Woods, während du weder einen Helm noch eine Schutzweste trägst", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "A brave decision, mercenary.", "60effdac12fec20321367038": "Übergebe den „Epsilon“-Sicherheitsbehälter", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Listen, brother, can you help me find proper info on a guy? He's already left the city. Why can't I find him myself? Because his fucking name is Ivan Ivanov. Seriously, I'm not kidding. There are two hundred thousand of them all over the country with that name. If we could find his former address in Tarkov, we might be able to run him through the database. Let me see what I can find on him. I think he used to run a bar, right. I don't know the name of the bar though... Listen, I don't know how you're gonna know which bar is his. Oh, that reminds me, he was into ballet. No kidding. He went to the Mariinsky every season. Even tried to host something at our local theater, but people weren't really crazy about chicks in tutus. More specific? Brother, I'm already fucking specific! I believe in you, use your intuition.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Found both the bar and the guy's address? Here, write it down for me. You're better than those psychics on TV finding missing people. Wanna be a detective when all this is over, bro? I'll fix you up with a Poirot hat, I promise.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Finde die Wohnung des Balletliebhabers auf Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Überlebe und entkomme aus dem Bereich", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Come here, my dear employee. Everything okay in the city? I got a few teams of mine missing. At first I thought, why the fuck would someone be so cocky, trying to shut my business down? Unless they're messing with me or something. I assumed it was that punk from the Lighthouse at first. But then I get a message from Seva Shket. He wrote that they were kept in some private prison. Have you heard about it? It's hidden somewhere in the old apartment buildings. Suits would dump their rivals there and whoever's easier to keep locked up than kept loose. I'd just kill them if that was such a problem, honestly. But it looks like someone would rather keep them in jail than just pop the cunts bothering them... Here's the deal: Shket was the only one in the group who escaped, but now he's on the run, hasn't contacted us since that message he sent. Didn't even tell us where to find the guys, this rat-faced fuck. The guys themselves are to blame for being caught like some bitches, and I would have just told them to fuck off for such a screwup. But the fact that someone's trying to fuck me over is outrageous. All right, enough of this bullshit. Find out where they keep my boys.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Fucking hell. Why would someone keep them there? I'd understand if they sent me a letter saying they'd kill my people if I didn't pay up and shit. A serial killer or something? Anyway, come around in a little while, I'll find out what's going on.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Überlebe und entkomme aus dem Bereich", "63a7d767f32fa1316250c3da": "Finde die gefangengehaltene Vermisstengruppe auf Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "It's the same story again, a new recording, now with a strange symbol. What the hell is going on? People are being sacrificed. To whom? Why? So many questions, yet no answers. I keep thinking it's the worst we'll ever see, but every time I'm proven wrong. We've fought looters with only money on their minds. Murderers who just want to shoot innocents, too. But at least I understand the motivation there, the beast has defeated the human in their soul. But with what purpose do people become these... I cannot understand this. So, soldier, I'll look for them in the woods, you do the same in the city. Somewhere there must be their hideout. Look for the same symbol, I'm sure we'll see it again.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Did you find it? Where? Was there anyone there? What does the symbol mean? Even more questions...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Überlebe und entkomme aus dem Bereich", "63a7d6d61f06d111271f5aeb": "Finde den Kultistentreffpunkt auf Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Greetings! Well, let's get it going, are you excited? The task is quite specific, we need to test the Russian toy for close combat, so that the conditions were the very real combat in urban environment. I have customers who don't believe in the effectiveness of this toy... Can you change their minds?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Well? Does it work good? Suitable for close-quarters combat in urban environments?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Eliminiere PMCs mit einer SR-2M „Veresk“, welche mit einem Schalldämpfer und einem KP-SR2 Reflexvisier ausgestattet ist auf Streets of Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Einige sind noch intakt, hm. Nun, das ist cool, wir werden denen einen kleinen Besuch abstatten. Hier, deine Belohnung.", "6572e876dc0d635f633a5718": "Finde die erste Reihe an Geldautomaten auf der Klimov-Straße auf Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Durchsuche den Sparja-Einkaufsladen im Pinewood-Hotel", "6572e876dc0d635f633a571e": "Durchsuche den Goshan-Einkaufsladen in Concordia", "6572e876dc0d635f633a5720": "Übergebe die im Raid gefundene Salty Dog Rindswurst", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Geldautomat #11", "65733403eefc2c312a759df2": "Geldautomat #12", "65733403eefc2c312a759df4": "Geldautomat #14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Geldautomat #15", "65733403eefc2c312a759dfa": "Geldautomat #16", "65801ad655315fdce2096bec": "Entdecke das Geheimnis hinter dem Erfolg der Firma", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Did you find it? Nice work, now bring it here! And take your reward, you deserve it.", "6573397ef3f8344c4575cd88": "Finde die Immobilienfonds auf Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Finde das Dokument über Tarkovs Immobiliengeschäfte", "658167a0e53c40116f8632fa": "Übergebe die gefundenen Informationen", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, yeah, I've already heard the rumors. People're gonna nail those punks to the wall soon. You did a great job. Here's your reward.", "65734c186dc1e402c80dc1a2": "Trage eine RayBench Hipster Reserve Sonnenbrille und ein Bomber Beanie und eliminiere etwaige Gegner auf Streets of tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Verstaue ein Bomber Beanie im Barbershop auf Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Verstaue RayBench Hipster Reserve Sonnenbrillen im Barbershop auf Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "Es liegt im verdammten Sumpf? Das erklärt den verfickten Preis. Es würde mehr kosten, es da rauszuholen und zu reinigen! Na gut, hier, das ist für deine Hilfe.", "65802b627b44fa5e1463889a": "Finde Ragman's Geländewagen auf Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Überlebe und entkomme aus dem Bereich", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Finde die „Bison VS Undertaker“-Plakate im USEC-Camp in Woods", "664bbb5f217c767c35ae3d51": "Finde die „Killa und Tagilla“-Plakate im USEC-Camp in Woods", "664bbb73c71d456fd03714ca": "Finde die „Leicht verdientes Geld“-Plakate im USEC-Camp in Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Gute Arbeit! Kaban und Kollontay sind bereits auf der Suche nach demjenigen, der den Anschlag angeordnet hat. Die kommen drüber weg und merken, dass sie die Grenze überschreiten. Hier, das ist deine Belohnung.", "660d5effb318c171fb1ca234": "Eliminiere Kabans Wächter auf Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminiere Kollontays Wächter auf Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Gewinne 6 von 10 Ranglisten-Spiele in Arena", "662bb24b3d34cd5e19206e63": "Die Aufgabe schlägt fehl, wenn du 5 Spiele verlierst", "6633a85e347a2a2b4051a26b": "Übergebe Rubel aus deinem EFT-Versteck", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Die Aufgabe schlägt fehl, wenn du 5 Spiele verlierst", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "Du hast also eine Leiche gesehen. Hast du sie untersucht? Hast du die Umgebung abgecheckt? Ich weise nur darauf hin, dass du blind bist. Der Champion hat, soweit ich weiß, ein Tagebuch geführt. Ja, wie ein Teenager, aber das ist eigentlich ein Vorteil für dich.\n\nWarum gehst du nicht noch mal hin und schaust dir das genauer an? In dem Tagebuch muss es mehr Informationen über Ref geben, etwas Unerfreuliches über ihn. Tu das, wenn du in der Arena nicht länger verzichtbar sein willst.\n\nUnd noch etwas: Wenn du mir Informationen über Ref bringst, die meine Zeit wert sind, werde ich dich gut bezahlen.", "66058ccf06ef1d50a60c1f48 failMessageText": "Du willst unter dem Rock von Ref bleiben? Dann mach das.", "66058ccf06ef1d50a60c1f48 successMessageText": "Gut gemacht. Ich bin froh, dass du dein Schicksal bei den Eiern genommen hast.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Finde kompromittierende Informationen über Ref", "664fd7f0837ee02ad4c8e658": "Übergebe die gefundenen Informationen", "66563f0a2684eee09e8dcd86": "Finde das Versteck des alten Champions", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "Ich glaube, ich verstehe nun, warum Leute diese \"Live Streams\" schauen. Es ist süchtigmachend!", "6667579086472aaf0bf7bef5": "Übergebe die defekte Festplatte", "666757c530b9b77ff2d9ac58": "Finde die defekte Festplatte in dem baufälligen Haus in Shoreline", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Platziere eine WiFi-Kamera auf dem Bergvorsprung in Woods", "667bf840981b1c594af358ce": "Platziere eine WiFi-Kamera auf dem Turm am Pier in Shoreline", "667bf845dc371ee9869f185e": "Platziere eine WiFi-Kamera im Bürokorridor in Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Sehr gut! Angeblich weiß selbst die ferne Außenwelt von unserer kleinen Aktion Bescheid, haha!", "667442da875be5fb415df535": "Verstaue einen Goldenen Hahn bei Prapor's WiFi-Kamera in Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Verstaue einen Goldenen Hahn bei Prapor's WiFi-Kamera in Shoreline", "66828746efaecf435dde20ca": "Verstaue einen Goldenen Hahn bei Prapor's WiFi-Kamera in Factory", "66d080533a3c33d823a3477d": "Verstaue einen Goldenen Hahn bei Prapor's WiFi-Kamera in Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hallo, mein Freund. In letzter Zeit waren die Umstände für mich etwas turbulent. Ich werde daher ab heute vorübergehend die Preise für meine Produkte und Dienstleistungen anheben, bis ich einige dringende Probleme in den Griff bekommen habe. Ein befreundeter Soldat stellt gerade ein Team zusammen, um das unterirdische Labor zu überfallen, und er braucht verlässliche Feuerkraft. Kannst du helfen? Wie ich sehe, weißt du genauso viel über die ARs wie ich, also dachte ich, ich vertraue dir diese Aufgabe an.\nIch benötige eine M4A1 mit einem Gesamtrückstoß von maximal 300, darüber hinaus soll die Waffe einen Ergonomiewert von mindestens 70 haben. Ich weiß, nicht ganz so leicht, aber ich vertraue deinen Künsten. Bitte verwende außerdem nur das EOTech XPS 3-0, da dies die einzige Optik ist, auf die mein Kunde vertraut.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Du hast meinen Dank. Das sollte mir fürs Erste reichen.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modifiziere eine M4A1, um die vorgeschriebenen Spezifikationen zu erfüllen", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "Du hast doch nichts verloren, oder? In Ordnung, dann ist es Zeit, die Ingenieure loszuschicken, um ein paar Messungen vorzunehmen. Wir sind dabei, herauszufinden, was diese Fabrikwände verbergen. Danke für deine Hilfe, mein Freund.", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory (In one raid)", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory (In one raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Finde das Paket mit den Präzisionswerkzeugen im Labor in Customs", "66ab97d56cb6e3bfd7c79fbc": "Verstaue das Paket im Laborlager in Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "Du hast ihn also tatsächlich gefunden. Ausgezeichnet! Wie ist der Durchgang, ist er sicher? In einem baufälligen Zustand, sagst du? Nun, es sieht so aus, als würde uns diese Möglichkeit nicht lange erhalten bleiben. Ich schicke meine Männer so schnell wie möglich los.", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov (In one raid)", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab (In one raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab (In one raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab (In one raid)", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab (In one raid)", "66b10eef0951e90ec383850b": "Scout the control room in The Lab (In one raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "Der Käufer hat mir gesagt, dass alles unter Dach und Fach ist. Du hast dir deine Belohnung verdient, und du kannst damit rechnen, dass meine Männer dir auf den neuen Pfaden helfen werden.", "66abb32aeb102b9bcd088d62": "Benutze den Transit von Ground Zero zu Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Benutze den Transit von Streets of Tarkov zu Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Benutze den Transit von Interchange zu Customs", "66abb3ac416b26ade4a1446c": "Benutze den Transit von Customs zu Factory", "66abb3bf228ace5ca9f3d745": "Benutze den Transit von Factory zu Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Install a WI-FI Camera at the bear who sat into a flaming car on Woods", "66debf2e1e254957b82711ff": "Install a WI-FI Camera at the upside-down chair on Shoreline", "66debf30802386a45d0adb60": "Install a WI-FI Camera at the not-so-lonely bathroom on Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "The soldier of fortune has come for his new task! Rumors have it that Tarkov has become even more dangerous. Who would've thought, right? Someone's started targeting certain areas with mortar fire. \n\nYou better go and see what's going on. And yes, this means going right into the middle of those mortar strike areas. Yup. Alright, so we've noticed the bombardments in the nature reserve, the military base, the customs office, and the coast line. Off you go then.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Alive and well, that's great. So let's see what we're working with here. Somebody stole the mortars and now they're hitting various locations right before the airdrop supplies come in. \n\nVery suspicious. These local powdermen sure couldn't have secured communications with the outside world, could they? Either way, all we can do for now is watch.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visit an active mortar strike area on any specified location (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Okay, I got word of a major fuck-up. It may not be your fault, but that's beside the point. The assholes at the water treatment plant intercepted a bunch of these crates with portable EW equipment in them. \n\nThey're obviously useless at this point, but I'm not gonna let them steal government property like this. \n\nFor a warrior like you, the task is feasible. Go to the WTP and get me those EW thingies. And yes, those rats need to be put down. \n\nThe EWs themselves have probably already been handed over to their commanders, so you're guaranteed to get this equipment from them. Assuming you don't die, I suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendid, the new toys have arrived. My guys are gonna love these. You need to be ready for anything these days, and such protection is definitely not superfluous.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Hand over the found in raid item: GARY ZONT portable electronic warfare device", "66e19f359fee1e54e0e01f7c": "Eliminate Rogues", "66e19f7d534a8ff2bb7e9f89": "Locate and neutralize Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "This whole trader thing is going pretty well for me, wouldn't you say? You know, If I didn't have my wits about me, I'd be dead in this hellhole a long time ago. Anyway, I'll deal with the reports later, not the first time. \n\nRight now, I need to equip the guys posted outside my territory. Bring them this new equipment we found. I'll give you a part of it, but the rest you need to get yourself - you already know where to look. No, you won't meet them face to face. Just stash the items in the designated spot.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Good, now that they're safe from airborne threats, their combat mission will be accomplished with no problem.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Stash the GARY ZONT portable electronic warfare device inside the sunken church on Woods", "66e071c8a9e80c3f25bb1bad": "Stash the Radar station spare parts inside the old sawmill hangar on Woods", "66e0735089627301d900ef1d": "Stash the GARY ZONT portable electronic warfare device inside the weather station tower on Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Ich höre die dunkle Stimme", "6514134eec10ff011f17cc26 description": "Eliminiere Knight 15x als PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Wie ein Schweizer Uhrwerk", "651413e9c31fcb0e163577c9 description": "Eliminiere Zryachiy 15x als PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/hu.json b/Libraries/SptAssets/Assets/database/locales/global/hu.json index 387b271a..ec643aed 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/hu.json +++ b/Libraries/SptAssets/Assets/database/locales/global/hu.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Rejtsd el a csomagot a Gyár pihenőszobájában (a 2. emeleten, a 3-as Kapu közelében)", "5968929e86f7740d121082d3": "Szerezd meg a biztonsági mappát a Tarcone igazgató irodájában a Vámterület raktárában", "5977784486f774285402cf52": "Éld túl, és hagyjad el a Gyárat", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Lenyűgöző. Majdnem egy atomálló bőrönd! Így már érthető hogy nem kímélt senkit azért hogy kihozza.", "5968981986f7740d1648df42": "Szerezd meg az értékes tárgyat a Vámterület 203-as számú kollégiumi szobájából", "5968988286f7740d14064724": "Add át az értékes tárgyat", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Szerez hozzáférést a kollégium 214-es szobájához", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "I thank you from the bottom of my heart. I won’t even explain how much and at the same time how little it is, in our conditions. Most people would keep it for themselves, but you shared it with those who needed it. Thank you.", "5969f98286f774576d4c9542": "Find Morphine injectors in raid", "5969f99286f77456630ea442": "Hand over the injectors", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Find Spark plugs in raid", "596b470c86f77457ca18618a": "Hand over the batteries", "596b472686f77457c7006f8a": "Hand over the spark plugs", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "And he said nothing was there! Although they might be empty. Need to check. In any case, here's your cut.", "5979ee2986f7743ec214c7a4": "Find Secure Flash drives in raid", "5979ee4586f7743ec214c7a5": "Hand over the Flash drives", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Locate and mark the third fuel tank with an MS2000 Marker on Customs", "59c128f386f774189b3c84bb": "Locate and mark the fourth fuel tank with an MS2000 Marker on Customs", "5c92184386f7746afa2e7840": "Survive and extract from the location", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Great! Here, take this as your reward. In the meantime, I'll hand this flash drive over to my specialists to decrypt it.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Stash the SV-98 sniper rifle in the boat", "5a27d85286f77448d82084e7": "Stash the multitool in the boat", "5a3ba11786f7742c9d4f5d29": "Locate the boat hidden next to the breakwater on Shoreline", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Survive and extract from the location", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Nagyszerű, mostantól akármikor számíthatsz rám.", "5a56489d86f7740cfe70eba2": "Hand over USD", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "You’ve got it? Leave it in the corner, thank you. A beautiful thing, right? Anyway, I'm a little busy right now, can't talk for long.", "5accd5e386f77463027e9397": "Modify an MP-133 to comply with the given specifications", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Well, in the capable hands this weapon can overthrow regimes and create revolutions. Leave it in the corner, I'll check it later.", "5accd9b686f774112d7173d1": "Modify an AKS-74U to comply with the given specifications", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Handy for CQB and quiet... Good modification, the client will be satisfied.", "5accde3686f7740cea1b7ec2": "Modify an MP5 to comply with the given specifications", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Thank you, leave the rifle on the table, I'll hand it over to Di— ahem, Sniper.", "5acce08b86f7745f8521fa64": "Modify a DVL-10 to comply with the given specifications", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Yeah, you can't hide from something like this. Love 7.62, a good caliber. Thanks for the work. Next order should be tomorrow.", "5acce11786f77411ed6fa6eb": "Modify an R11 RSASS to comply with the given specifications", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Hand it over, let's check out your build. Yeah, the weapon of democracy... Thank you.", "5accdfdb86f77412265cbfc9": "Modify an M4A1 to comply with the given specifications", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Fix the first control board with a Toolset on Factory", "5ac7a51a86f774738a4ffc96": "Fix the second control board with a Toolset on Factory", "5ac7a5d586f774383111ee63": "Survive and extract from the location", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Hand over the plugs", "5ac5061386f77417e429ce7a": "Find Printed circuit boards in raid", "5ac5062586f774587c327395": "Hand over the PCBs", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Locate the warehouse of seized goods on Customs", "5ac6248586f77416781dd3a3": "Obtain the package of graphics cards", "5ac624b286f77416781dd3ac": "Hand over the package", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Hand over the GPUs", "5ac5083d86f7740be2744eed": "Find CPU Fans in raid", "5ac5084d86f7740bde1b0031": "Hand over the CPU Fans", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Találd meg az első jel forrását", "5ac5e13586f7746074388f93": "Találd meg a második jel forrását", "5ac5e18c86f7743ebd6c9575": "Survive and extract from the location", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Hand over the batteries", "5ac5e98886f77479bc6ca201": "Hand over the PCBs", "5ac5ea0586f774609f36280c": "Hand over the phones", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Find PC CPUs in raid", "5cb6f88d86f7747d215f09c1": "Find Rechargeable batteries in raid", "5cb6f8de86f7740e9d452685": "Find Printed circuit boards in raid", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Seventh digit after the decimal separator in the pi number? IIO? Okay, when the time comes, I'll contact you.", "5ac5eb3286f7746e7a509a09": "Reach the required Memory skill level", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Hand over the Strike cigarettes", "5ac5ef9886f7746e7a509a2d": "Find Wilston cigarettes in raid", "5ac5eff886f7740f43322559": "Hand over the Wilston cigarettes", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Locate the second Factory extraction", "5ac61adf86f774741c1bf096": "Locate the third Factory extraction", "5ac61b1486f7743a8f30fc84": "Survive and extract from the location", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Locate the fourth Factory extraction", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "Nem szeretek színlelni, habár mind csináljuk. Néha a túlélés érdekében és néha mert félünk. Tudod, nem vagyok egy nagy dumás, főleg ha idegenekről van szó, de te egy jó srácnak tűnsz. Ha elnyered a bizalmam, akkor bárkiét eltudod. Végül is most csak a személyes kapcsolatok segítenek minket a túlélésben. Beszélj Pavel Yegorovichal, ha ő megbízik benned talán be tudom biztosítani a lőpor utánpótlását.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich is one of the few who stayed. I wonder if it’s because he’s military or just didn't have time to leave. Although, I feel he just has some shady business going.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Érd el a 3. hűségszintet Prapor-nál", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Great gun, a solid build. There are no new orders, but you can come by tomorrow.", "5ae34b8b86f7741e5b1e5d48": "Modify a Remington Model 870 to comply with the given specifications", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "A comfortable weapon, masterfully done, thank you. I'll let the client know the weapon is ready. ", "5ae3550b86f7741cf44fc799": "Modify an AKM to comply with the given specifications", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "So, is the Zenit AK ready? Great, leave it on that crate, thank you. You can come over for the next order tomorrow, if you want.", "5ae3570b86f7746efa6b4494": "Modify an AKS-74N to comply with the given specifications", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "I think i figured how to train the network! Ah, yes, this AK will do, thank you. Leave it somewhere in the corner, I'll look into it later.", "5ae445f386f7744e87761331": "Modify an AK-105 to comply with the given specifications", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Finished with the rifle? Great, hand it to me. I've got an interesting key here, might come in handy to you. It opens the gun store in Ultra, the KIBA store. It's got some great weapon mods in there, could be useful for our future gunsmithing.", "5ae4479686f7744f6c79b7b3": "Modify an AS VAL to comply with the given specifications", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Welcome to the crew, homie. So, down to business?", "5ae44c6886f7744f1a7eb2b8": "Érd el a hűség második szintjét Ragmannél", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Reach level 2 loyalty with Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Shooting like a sniper, good shit. My guys are saying that Interchange is filled with Scav bodies and Ultra is quieter now, so here's your reward, you've earned it.", "5ae44ecd86f77414a13c970e": "Eliminate Scavs on Interchange", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Locate and check the DINO CLOTHES store on Interchange", "5ae4511d86f7740ffc31ccb5": "Locate and check the TOP BRAND store on Interchange", "5ae4514986f7740e915d218c": "Survive and extract from the location", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Mark the second fuel tank with an MS2000 Marker on Interchange", "5ae452fa86f774336a39758e": "Mark the third fuel tank with an MS2000 Marker on Interchange", "5ae4531986f774177033c3e6": "Survive and extract from the location", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Beauty will save the world, as they say. Thank you, really helped me out, brother. The hats are gonna be sold in just one day, trust me. Here, take this as a reward.", "5ae4543686f7742dc043c903": "Hand over the ushanka-hats", "5ae454a086f7742be909a81a": "Hand over the hats", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Find Ushanka ear-flap hats in raid", "5fd89799c54dc00f463272d3": "Find Kinda Cowboy hats in raid", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Hand over the OLI cargo manifests", "5ae9b3b186f7745bbc722762": "Obtain the IDEA cargo manifests on Interchange", "5ae9b3c986f77432c81e2ce6": "Hand over the IDEA cargo manifests", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Found the docs? Big thanks. Hand them over, let's see where our little cargo disappeared.", "5ae9b5bd86f774307c29df37": "Obtain the OLI cargo route documents on Interchange", "5ae9b63286f774229110402d": "Hand over the documents", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Hand over the ski hat", "5ae455fb86f7744dd8242380": "Find Pilgrim tourist backpack in raid", "5ae4562086f774498b05e0dc": "Hand over the backpack", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Hand over the armor", "5ae9b91386f77415a869b3f3": "Obtain BNTI Gzhel-K armor in 50-100% durability", "5ae9b93b86f7746e0026221a": "Hand over the armor", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Hand over the chest rigs", "5af079e486f77434693ad7f8": "Find BlackRock chest rigs in raid", "5af07a0286f7747dba10d8ac": "Hand over the chest rigs", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Hand over the first book", "5ae9c0e186f7746419683c5e": "Obtain the Clothes design handbook - Part 2 on Interchange", "5ae9c10686f774703201f146": "Hand over the second book", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Wow wow, easy there, I'm on your side, man! Sorry, I'm just fucking around. I see you have mastered your charisma, that's good. Let's talk about business then.", "5ae9c29386f77427153c7fb0": "Reach the required Charisma skill level", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Seems like it went without a hitch, thanks.", "5ae9c38e86f7743515398707": "Reach level 3 loyalty with Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Stash Shemagh (Green) in the specified place", "5ae9e2a286f7740de4152a0a": "Stash RayBench Hipster Reserve sunglasses in the specified place", "5ae9e2e386f7740de4152a0d": "Stash Round frame sunglasses in the specified place", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "You scared off some Scavs at Ultra once, remember, brother? Now people say it’s getting worse. Word is it’s crawling with all sorts of scum. Got a task for you: check out the situation on Interchange, make sure it's clear to walk around at least. Find safe paths or something. I really need it to go smoothly, okay?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "You're like some Invisible Man or a ghost or something. Hold on, lemme grab a map. So, the safest roads are here and here, right? Awesome, I'll let my guys know. Thank you, friend, really helped me out here.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Survive and extract from Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Now that’s a true djigit! I'll assemble my guys, they'll bring so much good stuff from Goshan! So, about your reward: check out the new stock of body armor, all for you.", "5ae9e55886f77445315f662a": "Obtain the Goshan cash register key", "5ae9e58886f77423572433f5": "Hand over the key", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Just don't turn on the flashlight unless you want to get blinded for days! Anyway, well done, leave it on that crate.", "5b47796686f774374f4a8bb1": "Modify an AK-102 to comply with the given specifications", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Come on, give it here, I need to hand it over to the client and fast. I hope you haven’t told anyone what this MPX is built for. Well, let's wish the guy luck.", "5b477b3b86f77401da02e6c4": "Modify a SIG MPX to comply with the given specifications", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Thanks, leave them somewhere here. I’m a bit busy right now, catch you later.", "5b477f1486f7743009493232": "Modify an AKMN to comply with the given specifications", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "The rifle is ready? Great. I guess you have already figured out that Sniper's real name is Dima, I let it slip a while ago. Not a word about him to anybody, I hope you understand.", "5b47824386f7744d190d8dd1": "Modify an M1A to comply with the given specifications", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Makes me want to put it on a showcase display. Masterful work, it truly did turn out to be a masterpiece.", "5b4783ba86f7744d1c353185": "Modify an M4A1 to comply with the given specifications", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, cool, give 'em here. Mechanic asked for it, as you've probably figured. I’ll send it to him today. Thank you, big help.", "5b47884886f7744d1c35327d": "Find Fuel conditioners in raid", "5b47886986f7744d1a393e65": "Hand over the Fuel conditioners", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Hand over the Cat figurine", "5b478a6c86f7744d190d8f4d": "Find Roler Submariner gold wrist watch in raid", "5b478a8486f7744d1c35328b": "Hand over the wrist watch", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Find Golden egg in raid", "62a70058ec21e50cad3b6709": "Hand over the Golden egg", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Stash Peltor ComTac 2 in the specified place", "5b478c7386f7744d1a393fb1": "Stash 6B47 Helmets in the specified place", "5b478cb586f7744d1a393fb5": "Stash BNTI Gzhel-K armor in the specified place", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Locate and mark the second yellow minibus with an MS2000 Marker on Interchange", "5b478dca86f7744d190d91c2": "Locate and mark the third yellow minibus with an MS2000 Marker on Interchange", "5b478de086f7744d1c3533a1": "Survive and extract from the location", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Obtain the third Chemical container on Interchange", "5b4c832686f77419603eb8f0": "Hand over the second container", "5b4c836486f77417063a09dc": "Hand over the third container", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Nice, spot on! Hopefully my boys will recover, quite some gene pool they'll get from the new blood, but heck, they don't have much choice.", "5b47905886f7746807461fe2": "Hand over the respirators", "5b4790a886f774563c7a489f": "Hand over the bloodsets", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Find Respirators in raid", "5ec1388d83b69d213d3c2ee0": "Find Medical bloodsets in raid", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Install a WI-FI Camera to watch the sawmill dock on Woods", "5b47936686f77427fd044025": "Install a WI-FI Camera to watch the road to the port on Customs", "5b47938086f7747ccc057c22": "Install a WI-FI Camera to watch the Kiba Arms store entrance on Interchange", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Hand over the third controller", "5b4c7aec86f77459732b4b08": "Hand over the second gyroscope", "5b4c8e6586f77474396a5400": "Obtain the second Single-axis Fiber Optic Gyroscope on Shoreline", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtain the first motor controller on Woods", "66d07de6c7ef9040fff0b789": "Hand over the first controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Stash Golden neck chains under the mattress next to BTR-82A in Generic Store on Interchange", "5b4796c086f7745877352c2c": "Stash Golden neck chains in the microwave on the 3rd floor of the dorm on Customs", "5b47971086f774587877ad34": "Stash Golden neck chains in the middle wooden cabin at the sawmill on Woods", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Eliminate PMC operatives in the time period of 22:00-10:00 on Interchange", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "So, do you feel like Zaitsev yet? Sniper is satisfied with the first test results and has already prepared the next task.", "5bc850d186f7747213700892": "Eliminate Scavs from over 40 meters away while using a bolt-action rifle with iron sights", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Not bad, not bad. Even I wouldn't be so accurate with my shots, I'm way too old now. While you were shooting, Sniper has prepared the next test for you.", "5bd983d886f7747ba73fc246": "Shoot any target in the legs from over 40 meters away while using a bolt-action rifle", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Shoot any target in the head from over 40 meters away while using a bolt-action rifle", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "You have got a good reaction time since you're still standing here. Grab your new hat, as promised! Go on, shooter, new tests await you.", "5bc47e3e86f7741e6b2f3332": "Eliminate PMC operatives from less than 25 meters away while using a bolt-action rifle", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Ready? Then let’s get to work. Sniper took a big interest in you.", "5bc4813886f774226045cb9a": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Kill PMCs using bolt rifles from a distance of at least 80m", "657b0567ec71635f16471dd2": "Eliminate PMC operatives from a distance of at least 80 meters using a bolt-action rifle", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Good work, owl eyes. You thinned out those night predators.", "5bc84f7a86f774294c2f6862": "Eliminate Scavs while using a bolt-action rifle in the time period of 21:00-05:00 on Customs", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "There are no foul tricks in the sniper play. Good work, kid.", "5bc483ba86f77415034ba8d0": "Eliminate Sniper Scavs while using a bolt-action rifle", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "The enemy is absolutely helpless when they don't know where they get shot from. You did well, shooter.", "5bc485b586f774726473a858": "Eliminate PMC operatives from over 45 meters away while using a suppressed bolt-action rifle", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "This is not an easy task. Try again.", "5bc4893c86f774626f5ebf3e successMessageText": "It seems that sometimes being smart isn’t enough to act smart. Well, a good old bolty can be of help with this. Sniper is silent for now, so let's wait for a little before your next tasks. I will let you know when there are new tests for you.", "5bc48aed86f77452c947ce67": "Eliminate PMC operatives with a headshot without dying while using a bolt-action rifle", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "You cannot die or leave the raid until the quest is handed over to the customer (Status: Killed, Ran through, MIA)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Stash Roler Submariner gold wrist watch in the trash opposite of stairs on the 3rd floor of the dorm", "5c12320586f77437e44bcb15": "Stash the False flash drive in the trash opposite of stairs on the 3rd floor of the dorm", "5c1233ac86f77406fa13baea": "You must not kill any Scavs on Customs until the quest is completed", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Obtain the False flash drive from the specified spot on Customs", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "You did good, now you got my respect! I'll keep you in mind if I have something interesting.", "5c0bc95086f7746e784f39ec": "Eliminate Scavs while using a suppressed 12ga shotgun", "5c0bcc9c86f7746fe16dbba9": "Eliminate PMC operatives while using a suppressed 12ga shotgun", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Good work, my friend! Everything went according to the plan.", "5c1242fa86f7742aa04fed52": "Eliminate PMC operatives in the time period of 22:00-05:00 (Excluding Factory and The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "So, what do you think? Some serious toy, yeah? Great, hand it over then. Here, that's for the help. Keep in touch, I might need more help to test some other things.", "5c1b765d86f77413193fa4f2": "Eliminate PMC operatives from over 60 meters away while using an M1A rifle with Hybrid 46 suppressor and Schmidt & Bender PM II 1-8x24 scope", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "There you go. Now I'm certain you won't piss your pants if some shit hits the fan.", "5c0bdbb586f774166e38eed5": "Reach the required Stress Resistance skill level", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Reserve", "5c137ef386f7747ae10a821e": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Shoreline", "5c137f5286f7747ae267d8a3": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Customs", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Lighthouse ", "63aec6f256503c322a190374": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Streets of Tarkov", "64b694c8a857ea477002a408": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Interchange", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "An experienced sniper will not give himself away like that. Catch your breath and try again.", "5c0be13186f7746f016734aa successMessageText": "Frankly speaking, i wasn't sure you could do it. But it sure seems that you're no regular pleb.", "5c0be2b486f7747bcb347d58": "Reach the required Sniper Rifles skill level", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Eliminate PMC operatives without dying while using a bolt-action rifle", "64b67fcd3e349c7dbd06bd16": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Did you bring it? Great, put it all down there in the corner. Careful, the equipment is very fragile. Even if the whole clinic thing fails, I know some people who may be interested in this equipment, but that’s between you and me. Why waste such expensive hardware?", "5c0be66c86f7744523489ab2": "Hand over the Ophthalmoscope", "5c0be69086f7743c9c1ecf43": "Hand over the LEDX Skin Transilluminator", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Find Ophthalmoscope in raid", "5fd8935b7dd32f724e0fe7ee": "Find LEDX Skin Transilluminator in raid", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "To be fair, I did not doubt that you are the person I can trust, not only in work.", "5c0d0dfd86f7747f482a89a5": "Reach the required Health skill level", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Very good, very good! The clients will be happy with you, mercenary. Your reward.", "5c138c4486f7743b056e2943": "Hand over the processors", "5c138d4286f774276a6504aa": "Hand over the transmitter", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Find Virtex programmable processors in raid", "5ec13da983b69d213d3c2ee4": "Find Military COFDM Wireless Signal Transmitter in raid", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Good, limbs are still attached, and the needed noise has been made. You'll be useful in these matters then, warrior. Here's the reward, you earned it.", "5c1b760686f77412780211a3": "Eliminate PMC operatives with grenades", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Done already? You know, it actually worked, the way their leaders talk has changed a lot. Do not blame me, in this world you have to negotiate even with such scum. Your reward, mercenary.", "5c1b778286f774294438b536": "Eliminate Scavs from less than 60 meters away while wearing specific gear on Interchange", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Interchange", "5c1b713f86f774719c22e8a0": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Shoreline", "5c1fd66286f7743c7b261f7b": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Woods", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Survive and extract from Shoreline with the \"Survived\" exit status", "5c13989886f7747878361a50": "Survive and extract from Factory with the \"Survived\" exit status", "5c1931e686f7747ce71bcbea": "Survive and extract from The Lab with the \"Survived\" exit status", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Survive and extract from Reserve with the \"Survived\" exit status", "629f08e7d285f377953b2af1": "Survive and extract from Lighthouse with the \"Survived\" exit status", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Locate and mark the second fuel stash with an MS2000 Marker on Woods", "5c10f94386f774227172c576": "Locate and mark the third fuel stash with an MS2000 Marker on Woods", "5c10f94386f774227172c577": "Survive and extract from the location", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Now we’re talking! I’ll grab a soldering iron and get to work. Perhaps the market's gonna stabilize already by that time.", "5c1129ed86f7746569440e88": "Hand over the wires", "5c112a1b86f774656777d1ae": "Hand over the capacitors", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Find Bundles of wires in raid", "5ca71a1e86f7740f5a5b88a2": "Find Capacitors in raid", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "There you go, now I'm absolutely sure that you can return from a raid and with some good stuff in your backpack. Well done, brother!", "5c112dc486f77465686bff38": "Reach the required Search skill level", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Do you have it? Great. I wonder what he would ask next time, a diamond-coated toilet? But hey, if he does ask for it, you actually will have to look for it. Thanks for the help, brother.", "5c11427386f77430ff393793": "Hand over the teapots", "5c122c5f86f77437e44bcb0e": "Hand over the vases", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Find Antique teapots in raid", "5ca7258986f7740d424a2044": "Find Antique vases in raid", "62a700893e015d7ce1151d90": "Find Axel parrot figurine in raid", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "My guys are saying that Customs is at World War 3 right now, BEARs and USECs are dropping Scavs left and right! Good shit, nice work. Here's your prize, as promised.", "5c1fa9c986f7740de474cb3d": "Eliminate PMC operatives while wearing the specified gear on Customs", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Reach level 4 loyalty with Peacekeeper", "5c12489886f77452db1d2b05": "Reach level 4 loyalty with Prapor", "5c1248ef86f77428266184c2": "Reach level 4 loyalty with Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "You actually brought them! I'm pleased! Let me have a closer look at them.", "5c139eb686f7747878361a72": "Hand over the reader", "5c139eb686f7747878361a73": "Hand over the storage module", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Find UHF RFID Reader in raid", "5ec14080c9ffe55cca300867": "Find VPX Flash Storage Module in raid", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Hello, mercenary. I have been watching you for quite a while now, and I know that you are able to solve the tasks assigned to you. Don't get too cocky now, you're not the only one who knows how to follow orders. There are more fighters like you, even more competent. I want to offer you a job, to give you a chance to become a part of something bigger than you can imagine. If you are ready, then here's an assignment for you: my people operate all over Tarkov and often leave souvenirs after themselves. The mission is to obtain and deliver those items to me. No questions asked. The things are extremely rare. I hope I don't have to remind you that you have to obtain all these items by yourself? Believe me, I like no other know when people lie. You will be informed of the drop spot. And one more thing, all my partners have already mastered their skills a long time ago and proven themselves reliable, and if you want to be one of them, then prove to me that you are not inferior to them in training. Don't try to contact me, I will do it myself when the time comes.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Have you got it all? Good, mercenary. Your hard-earned reward awaits you in the specified drop-spot, just as promised. Congratulations, and welcome.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Hand over the Battered antique Book", "5c51bf8786f77416a11e5cb2": "Hand over the #FireKlean gun lube", "5c51bf9a86f77478bf5632aa": "Hand over the Golden rooster", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Hand over the Can of sprats", "5c51c24c86f77416a11e5cb7": "Hand over the Fake mustache", "5c51c25c86f77478bf5632af": "Hand over the Kotton beanie", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Hand over the Old firesteel", "5c52da5886f7747364267a14": "Hand over the Antique axe", "5cb5ddd386f7746ef72a7e73": "Find Old firesteel in raid", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Find Can of sprats in raid", "5cb5df7186f7747d215eca08": "Find Fake mustache in raid", "5cb5df8486f7746ef82c17ea": "Találj egy Kotton beanie-t raid közben", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Találj egy holló szobrocskát raid közben", "5ec7998dc1683c0db84484e7": "Hand over the Raven figurine", "5ec79aaac1683c0db84484e8": "Találj Pestily pestis maszkot raid közben", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Hand over the WZ Wallet", "60d0748820a6283a506aebb1": "Találj raid közben egy LVNDMARK patkánymérget", "60d074ef401d874962160aee": "Hand over the LVNDMARK's rat poison", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Find Smoke balaclava in raid", "60e827faf09904268a4dbc40": "Hand over the Smoke balaclava", "62a6ff004de19a4c3422ea5d": "Hand over the found in raid item: Missam forklift key", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Megvan? Szép munka. Nos, azt hiszem hogy méltó vagy arra hogy kapcsolatba lépj Jaegerel. Jópár munkája lehet számodra.", "5d249a6e86f774791546e952": "Obtain Jaeger's encrypted message", "5d249aa286f77475e8376399": "Hand over the message", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Find Jaeger's camp at the specified spot on Woods", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Hand over the found in raid Iskra ration packs", "5d24bb4886f77439c92d6bad": "Hand over the found in raid Packs of instant noodles", "5d24bb7286f7741f7956be74": "Hand over the found in raid Cans of beef stew (Large)", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "As one famous person used to say \"Float like a butterfly, sting like a bee\". A piece of good advice, you better remember it. So, do you feel how easy it is to move without all those plates on you? If you move fast, you don't even need body armor to deal with scum.", "5d25af3c86f77443ff46b9e7": "Eliminate Scavs without wearing any body armor on Woods", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Stash a Bottle of water (0.6L) in the ZB-016 bunker on Woods", "5d2deedc86f77459121c3118": "Stash an Iskra ration pack in the ZB-014 bunker on Woods", "5d2defc586f774591510e6b9": "Stash a Bottle of water (0.6L) in the ZB-014 bunker on Woods", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "No way you can survive for so long! Impressive. Here you go, drink this, regain your strength.", "5d25c5a186f77443fe457661": "Survive for 5 minutes while suffering from complete dehydration (Excluding Factory)", "5d9f035086f7741cac4a9713": "Survive and extract from the location", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Handled it? Nicely done. Your training is almost done, friend. If we keep it that way, we may start taking care of the order in the city earlier than planned.", "5d25c8c986f77443e47ad47a": "Eliminate Scavs while suffering from the pain effect", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Successful? Great! Sweat saves the blood! Don't get too ecstatic now, there are some more tasks for you.", "5d25d09286f77444001e284c": "Eliminate Scavs in a single raid without using any medicine on Woods", "5d25d0d186f7740a22515975": "You must not use any medical supplies until the quest is completed", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "So you can even handle tremors? Great! To be honest, I didn't think you would succeed, the task was very difficult.", "5d25d4e786f77442734d335d": "Eliminate PMC operatives with headshots while suffering from the tremor effect", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "So you survived? Who would've thought.", "5d25dc2286f77443e7549028": "Eliminate PMC operatives while suffering from the stun effect", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "How many you say there were, six? And you got them all without the \"goggles\"? Indeed, you are a great night hunter, kid.", "5d25fd8386f77443fe457cae": "Eliminate Scavs in the time period of 21:00-04:00 without using any NVGs or thermal sights (Excluding Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "How do people say? What is difficult in training will become easy in a battle! This skill will come in handy, trust me on this one. Your training is almost complete. Looks like you are ready to become the Hunter.", "5d2605ef86f77469ef0f7622": "Reach the required Vitality skill level", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Good job! Of course, there is enough scum in Tarkov, others will come for sure. But at least they will think twice before tearing the place apart.", "5d26143c86f77469ef0f894c": "Eliminate PMC operatives in the office area (any floor) on Factory", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Öld meg Reshalat", "5d2710e686f7742e9019a6b2": "Hand over Reshala's Golden TT pistol", "5d66741c86f7744a2e70f039": "Find Reshala's Golden TT in raid", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "They made their choice when they stepped on the wrong path. You have done the right thing, hunter, thank you.", "5d2701b586f77469f1599fe2": "Eliminate Scavs all over the Tarkov territory", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Learned the lesson? Good. See, you can disarm an enemy in many ways.", "5d307fc886f77447f15f5b23": "Eliminate PMC operatives while they are suffering from the stun effect", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Öld meg Killat", "5d271a3486f774483c7bdb12": "Hand over Killa's helmet", "5d667a8e86f774131e206b46": "Find Killa's \"Maska-1SCh\" bulletproof helmet in raid", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Öld meg Shturmant", "5d272a0b86f7745ba2701532": "Hand over Shturman's stash key", "5d2f464e498f71c8886f7656": "Find Shturman's stash key in raid", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Protected the honor of the uniform? That's great. Screw them, there is nothing worse than giving the oath and then falling into crime.", "5d272bd386f77446085fa4f9": "Eliminate Scavs dressed in police uniform (Reshala's bodyguards)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "I've heard what you did. Looks like it's calmer out there now, with way fewer looters. You have my gratitude.", "5d2733c586f7741dea4f3072": "Eliminate PMC operatives in the Dorms area on Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Welcome back, hunter. So you've dealt with the bandits? Can't even imagine how much of a hassle that was, you did a great job.", "5d27369586f774457411b264": "Locate and eliminate Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "So they're operating near laboratories and military facilities... Oh, I hope it won't start another war, on top of the one already going on. Well, kid, it's not for us to resolve this, at least for now.", "5d273a4d86f774457411b266": "Eliminate Raiders", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Got it? Great. Hopefully, I won't have to watch people die helplessly anymore.", "5d27446f86f77475a86565a3": "Hand over the defibrillator", "5d7782c686f7742fa732bf07": "Hand over the CMS kits", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Find Portable defibrillator in raid", "5ec1538a92e95f77ac7a2529": "Find CMS surgical kits in raid", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Locate the chairman's house in the abandoned village on Shoreline", "5d357b9586f7745b422d653f": "Locate the fisherman's house in the abandoned village on Shoreline", "5d357bb786f774588d4d7e27": "Locate the priest's house in the abandoned village on Shoreline", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Survive and extract from Shoreline with the \"Survived\" exit status", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Got it? Good, let's see what he's up to. Come back in a bit, Mechanic and I will check the flash drives, then we'll let you know too.", "5d27491686f77475aa5cf5b9": "Hand over the Flash drives", "5d6949e786f774238a38d9e0": "Find Secure Flash drives in raid", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Hand over the photo album", "5d357e0e86f7745b3f307c56": "Locate Jaeger's room with a view of a bay in the Health Resort", "5d357e8786f7745b5e66a51a": "Obtain Jaeger's photo album", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "You got them? Good work, kid. Now we just have to figure out how to find this laboratory. Well, I'll deal with this matter myself, don't worry.", "5d2f375186f7745916404955": "Find TerraGroup Labs access keycards in raid", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Hand over the access keycards", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Come on in. Want some tea? Well, whatever. So listen, here's the deal. Soon I will be hosting a few friends of mine. I want to go hunting with them, but there's just no way I can take them hunting with these MP shotguns, right? I have a couple of nice western rifles here, but I need them to be zeroed properly first. And we have just the client for that, his name is Shturman. So, test my build (Remington M700 sniper rifle with a FullField TAC30 1-4x24 scope) on this scum. Find a long-range position and make a precise shot to the head, so that the bastard wouldn't even have a chance. Don't worry, I won't disappoint you with the reward, kid.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Those are damn great rifles! Good work! You know, I think I might get into gunsmithing myself, I took quite a liking to this thing. So, about the reward: check out the little things I found, you might need them.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Eliminate Shturman with a headshot from over 75 meters away while using an M700 sniper rifle with the specified scope", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Look who we've got here! Hello there! Listen, you know about the military base close to the health resort? Probably were there yourself. So, I've got some news. They say the old warehouses there still have a lot of food left in them, and that bandit groups began roaming there, not your regular Scavs, they are well-equipped. I want you to check out if there's anything left in those warehouses. But be careful, there really are a lot of dangerous people there.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Have they already started to take everything out? Got it, we have to act fast.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Locate the food storage location on Reserve", "629f1259422dff20ff234b4d": "Survive and extract from the location", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Hand over the military battery", "5d4c020a86f77449c463ced6": "Find OFZ 30x165mm shells in raid", "5d4c028c86f774389001e027": "Hand over the OFZ shells", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "So, have you decided? Just a couple of injections. Here and here. Keep yourself calm, at least a couple of days, relax more and take your vitamins.", "5d6fb8a886f77449db3db8b6": "Hand over RUB", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "So, I've been told you took up the training. Well, with your skills, I'm sure you'll learn quick.", "5d6fbf0f86f77449d97f738e": "Hand over EUR", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Got it done already? Nice job. Wait here a minute, I need to measure your sizes and figure out the sewing technique for this one. As promised. But hey, you gotta understand that the materials ain't cheap these days, so be prepared for the price. Still, it's got three stripes, an icon of style, you know.", "5dc53fd386f77469c87589a3": "Locate and eliminate Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Hand over the fabrics", "5e38356d86f7742993306cac": "Hand over the fabrics", "5e3835e886f77429910d4465": "Hand over the paracords", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Hand over the fabrics", "5e383a6386f77465910ce1f8": "Find Paracords in raid", "5e383a6386f77465910ce1f9": "Hand over the paracords", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Hand over the fabrics", "5e4d4ac186f774264f75833b": "Find KEKTAPE duct tapes in raid", "5e4d4ac186f774264f75833c": "Hand over the duct tapes", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Hand over the fabrics", "5e4d515e86f77438b2195249": "Find KEKTAPE duct tapes in raid", "5e4d515e86f77438b219524a": "Hand over the duct tapes", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, you're just in time. Maybe you have already heard that a new doctor has shown up? But this one is not some good-willed Aesculapius - he helps some people but cripples others. They say he sells medicine and does surgeries right on the street. They call him Sanitar, can you imagine? He settled on the Shoreline and interestingly enough, the local punks are very happy with him, and it's clear why: he patches them up, and even sells them drugs and first-aid kits of all sorts. This means that he has quite an inventory with him. Find out about this Sanitar, but quietly. For now, just find out where this scum hangs out. I think that he does both the selling and healing at the same spots. You interested?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "So you're saying there's quite a lot of supplies? Guess he found himself a fresh unopened medical warehouse and is now selling everything out from it. If only I could find that warehouse... well, that's not your problem anyway. For now.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Mark the first trading post with an MS2000 Marker on Shoreline", "5eda1da9a58a4c49c74165ee": "Mark the second trading post with an MS2000 Marker on Shoreline", "5eda1dd3317f6066993c1744": "Mark the third trading post with an MS2000 Marker on Shoreline", "5f0389268580cc37797e0026": "Survive and extract from the location", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "So you believed that woman? You do realise that she's just deceiving you for her own benefit? Do you think that because Sanitar treats some people, he can't kill others? You've completely gone insane with that war or yours, can't distinguish black from white. Get out of my sight, I want to be alone.", "5edab4b1218d181e29451435 successMessageText": "You did the right thing. Even if others say that Sanitar did good deeds, he brought much more evil. Don't believe those people's lies. I've seen people like Sanitar before: once they go crazy, there's no turning back. You can only shoot them like rabid dogs.", "5edab5a6cecc0069284c0ec2": "Öld meg Sanitar-t", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Locate the group that was sent to the Health Resort", "5edab8890880da21347b3826": "Keresd meg azt a csoportot amit a mólóhoz küldtek", "5edab8e216d985118871ba18": "Keresd meg azt a csoportot amit a nyaralókhoz küldtek", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Survive and extract from the location", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "The loss of my people on the Shoreline is certainly a very unpleasant event, but a new source of medicine is more important. We just need a different approach to this case. My assistant managed to bribe a local from the Shoreline to tell us about Sanitar, the medic we're looking for. He has a small security detail, a few spots on the shoreline, but what's strange is that he performs surgery right on the street, and often hides his tools near such places, in buildings nearby. Get me these tools. Sanitar will be more cooperative if he realizes that we can stop his trade at any time and take control of the territory.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Did you bring the tools? Put them in that box, I will need to clean them properly, it is unclear where they have been before. You can clearly see he is in a difficult situation, everything is covered in blood, clearly unsanitary conditions. Well, that's my business now. I'll give Sanitar his tools back along with the letter through the one local we bribed so that he understands what we want from him.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Obtain Sanitar's surgery kit marked with a blue symbol", "5edabb950c502106f869bc04": "Hand over Sanitar's surgery kit", "5edabbff0880da21347b382b": "Obtain Sanitar's ophthalmoscope", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hey you, tough guy! C'mere, I have a job for you. I've heard Prapor sent you to get a supply of drugs from some Sanitar dude. Don't make that face! I ain't got no interest in those drugs, let Prapor collect it and put it up his ass, you have already received profit from him anyway, haven't you? You just need to put these smart little things in containers that are in Sanitar's stashes. Prapor won't get wind of anything, it's a two-minute job, but the profit is good. Just gotta do it fast, before they move those containers.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Good stuff, good stuff! Finally, Prapor will get his caches exposed, there are probably whole mountains of loot. Guns, ammo, food, dope. Out fucking standing! We'll do this one ourselves though, without you. No offense. Thanks.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Survive and extract from the location", "5f071a9727cec53d5d24fe3b": "Mark the medical container at the Health Resort with an MS2000 Marker on Shoreline", "5f071ae396d1ae55e476abc4": "Mark the medical container by cottages with an MS2000 Marker on Shoreline", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Young man, wait. I knew that Jaeger would ask you to kill Sanitar, but you don't have to do it. I understand Jaeger's point of view, that he's just some kind of monster in the flesh, but he is not. I'm sure Sanitar is just trying to help the locals. Given the current circumstances, he performs the most complex surgeries and it is not surprising that they often end badly. He is a doctor with the most valuable knowledge that can save many more lives. A doctor with access to a warehouse of medicines that are extremely important to us. And he has already entered into negotiations with me and will soon begin to cooperate. But for this, I need something that will interest him and I think I know what will: the Laboratory. Access keys and samples of military stimulants, I think they are the basis on which he conducts his experiments. Can you find them for me? You can get the access keycards however you want, but the stimulants must be sealed, so you need to find them yourself.", "5edac34d0bb72a50635c2bfa failMessageText": "It is a pity that you listened to this Jaeger instead of the voice of reason. Sanitar with his knowledge and medicines could've helped us in many ways. He wasn't a saint, but surely everyone has a chance to atone for their sins, but you have took away that chance. I am very displeased with you.", "5edac34d0bb72a50635c2bfa successMessageText": "Thank you. I knew you would understand how important Sanitar and his... medication are right now. He has already shown a great interest in keycards and stimulants and sent the first batch of goods. Here, this is your share.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Do not kill Sanitar", "5f04935cde3b9e0ecf03d864": "Hand over the keycards", "5f04944b69ef785df740a8c9": "Hand over the keycard", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Good day to you, mercenary. Because the day is actually good. I was right, the new stimulants are connected to TerraGroup. Mechanic found information about Sanitar. Not too much, and it was very expensive for us, but it's better than nothing. Sanitar worked for TerraGroup, and not as an ordinary employee. Graduated in medicine, specialist in infectious diseases, divorced... Well, that's all the information we have on him. Give me more, my friend, I'm very interested in where he got access to such resources. Find his workplace and find out more.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "We have decoded that flash drive. There's a lot of important information there, but I can't tell you everything. It's classified. I can tell you about Sanitar though, he's a scientist. He studied and developed drugs, and then tested them on people. Very... bold, or, as they sometimes say, unethical research.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Hand over the Flash drive marked with blue tape", "5eec9d054110547f1f545c99": "Találd meg Sanitar munkahelyét a Lab-on belül", "5eff5674befb6436ce3bbaf7": "Obtain information about Sanitar's work", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Greetings, warrior. So here's the deal, a birdy told me that those ex-army guys who secured Reserve base dug out some pass to the underground bunker. Of course, they didn't do it with their own hands, they forced the Scavs to do the job, and most likely none of the poor bastards made it back out. So anyway, I've got no idea what sort of bunker that is. I've had some information that it could be the command bunker. But I'm not sure if it's exactly that bunker or just a bomb shelter for the base personnel. For now, there's no use to send a big group there for them to just die to those raiders. Check those catacombs out and let me know if it's worth sending a group there. The pay is good. You in?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "So you say it's a command shelter? Rumors don't lie, huh... God damn! I'll send my men there today, let them check the place out. There could be so much valuable shit there! Anyway, here, take your reward. As promised.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Survive and extract from the location", "5ee8eea538ca5b3b4f3c4647": "Locate the underground bunker on Reserve", "5ee8eecc0b4ef7326256c660": "Locate the control room in the underground bunker on Reserve", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hey, merc, you are just in time, you are exactly who I need. Do you remember that fucking command bunker you found under the Reserve base? Long story short, my guys went there, and it turned out to be a real nasty place. Built with a high level of protection: filters, generators, all entrances are blocked by extremely strong hermetic locks, it's like an underground fortress. But the raiders opened the fucking thing and dug in like Alabama ticks. So, my men got in serious trouble, less than half made it out of there. But you know, now it's even more intriguing, for fuck's sake. So my people will not go there anymore for no reason, but if you could find a safe route for them... You are an experienced guy, so I need you to quietly, on those soft paws of yours, find out where all the entrances are. The guys said the entrances had those big hermetic doors. So it's up to you to scout the way in.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Welcome back, I'm listening. Aha, so that's how it is... The door is right there, right? Just draw it right on top of my map, don't worry. So this bunker connects almost all facilities of the base? Fuck, how convenient, you could travel half the base under everyone's nose. Now it's clear why the raiders are there, you can control the entire base from under there. Thank you, warrior! Here's your reward.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Survive and extract from the location", "5ee8ec5ed72d953f5d2aabd1": "Locate the hermetic door leading to the hospital (White Bishop)", "5ee8ecd75eb3205dae135d17": "Locate one of the two hermetic doors leading to the academy building (Black Bishop)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "So that's how it is, it's right on the first floor? How many times have my people been there and found nothing. Did you get inside the room? Found anything interesting in there? Well, doesn't matter, I'll send my boys to check it out anyway. Here's your reward, you've earned it. Thank you.", "5f0488c590eea473df674002": "Locate Sanitar's office in the health resort", "5f04983ffbed7a08077b4367": "Survive and extract from the location", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Greetings, warrior. I have a job for you. Long story short, I lost contact with one of my groups, and it's been quite a while ago. When shit hit the fan, I sent them to Woods to pick up some cargo. I'm afraid they got ambushed, the last time I got through, they reported that the USECs were closing in on them from the hills. Investigate it, check if anyone survived. Their convoy had a BRDM, a Bukhanka van, and a truck of some sort, I do not remember what kind exactly. I think that the USECs must have settled somewhere near there too, so stay sharp. Find my convoy and those USECs' camp, if it is really there. Dismissed.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "So my guys didn't make it and the transports were looted... Plus a USEC camp nearby, you say? That sucks, the cargo was very important. Well, you've done your part of the deal, so here's the reward. You can buzz off now.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Locate Prapor's missing convoy on Woods", "5fd9fad9c1ce6b1a3b486d05": "Locate the temporary USEC camp", "5fd9fad9c1ce6b1a3b486d0d": "Survive and extract from the location", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "The air in the whole Woods trembled from such furious firefight. The scum got what he deserved, and all thanks to you. Here, the appropriate reward for such a feat. Don't be shy, you can buy the new rifles too.", "600303250b79c6604058ce30": "Locate and eliminate Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Locate and inspect the second LAV III on Reserve", "608925d455f4ac386d7e7fc4": "Mark the first LAV III with an MS2000 Marker", "608930aa1124f748c94b801e": "Locate and inspect the T-90 tank on Reserve", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Nagyszerű! Nagyszerű! Fogd a pénzem! De annyit kérnék tőled hogy egy szót se szólj senkinek a mi kis üzletünkről.", "60929ad46342771d851b827a": "Szerezd meg a csomagot Reserve-en ami a T-90 parancsnoki irányító paneljét tartalmazza", "60929afc35915c62b44fd05c": "Add át a csomagot", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Obtain Military documents #3 in the command bunker offices on Reserve", "60ae0f0586046842a754e21e": "Add át a második dokumentumot", "60ae0f17b809a4748759078c": "Add át a harmadik dokumentumot", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Good work out there. I hope they get what's going on now and that they can't just kill my people like that. Here's the reward.", "608bffeee0cc9c2d4d2ccb29": "Öld meg a Raidereket a Reserve parancsnoki bunkerében", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Add át az első naplót", "60ae12ffb809a474875907aa": "Obtain Medical record #2 on Reserve", "60ae134cabb9675f0062cf6e": "Add át a második naplót", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "Szóval így néz ki! Remek. Köszönöm, később messzemenőbben áttanulmányozom majd. Tessék a jutalmad, ahogy ígértem.", "6092942fb0f07c6ea1246e3a": "Obtain the MBT Integrated Navigation System on Reserve", "6092947635915c62b44fd05b": "Add át a navigációs szerkezetet", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "So the exit works? Excellent. I'm still preparing your reward, so tell me more about the opening mechanism for that bunker door in the meantime.", "608a94101a66564e74191fc3": "Találd meg az áramtalanított titkos kivonási pontot Reserve-en", "608a94ae1a66564e74191fc6": "Juss ki azon a kivonási ponton", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Király, a srácaim most jöttek vissza egy raidből teljes biztonságban egy karcolás nélkül. Itt is a jutalmad!", "608ab22755f4ac386d7e7fdc": "Öld meg a Scaveket Reserve földalatti raktár területén", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Vizsgáld meg a második fegyverraktárat a Reserve északi barakkjában", "608bd2465e0ef91ab810f98a": "Vizsgáld meg a szolgálati szobát a Reserve nyugati barakkjában", "608c187853b9dd01a116f480": "Juss ki élve a területről", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Juss ki élve a területről", "60a4dc7e4e734e57d07fb335": "Mark the first group of fuel tanks with an MS2000 Marker on Reserve", "60b90232ec7c6f5eb510c195": "Mark the second group of fuel tanks with an MS2000 Marker on Reserve", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Kész van? Mintha a levegő is frissebbnek érződne. Nagy kár hogy nem tudtuk azokat a fosztogatókat másképp meggyőzni.", "608a8356fa70fc097863b8f8": "Öld meg a Scaveket Reserve barakk területén", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Ez egy remek hír. A világ máris tisztábbnak érződik. Remélem a rohadék nem kapott el a kalapácsával. Ugye?", "60c0d187938d68438757cda2": "Öld meg Tagilla-t", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Find Tagilla's BOSS cap in raid", "60cfa5a85f9e6175514de2e3": "Hand over the BOSS cap", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Eliminate PMC operatives on Interchange", "60ec0b1871035f300c301acd": "Eliminate PMC operatives in The Lab", "60ec2b04bc9a8b34cd453b81": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA, Ran Through)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Eliminate PMC operatives at the Scav base on Customs", "60ec1e72d7b7cb55e94c1764": "Eliminate PMC operatives at the Scav base on Woods", "60ec2229fd1bf4491c4e4552": "Eliminate PMC operatives at the Health Resort on Shoreline", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "There you go, that's way better. Thank you, warrior. The guys are saying it's calmed down now, so looks like the morons understood your message.", "60e8650e5d67b234af3d3926": "Eliminate Scavs with headshots", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Bloody hell... You got them all by yourself? You've got guts, that's for sure. Somethin' ain't right about those psychos, I'm tellin' you...", "60e82c12fd1bf4491c4e4547": "Find the unusual knives in raid", "60e82c5926b88043510e0ad7": "Hand over the knives", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Hand over the LEDX", "60f028ca86abc00cdc03ab89": "Find Piles of meds in raid", "60f028f85caf08029e0d6277": "Hand over the Piles of meds", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Find Bottles of OLOLO Multivitamins in raid", "62a70168eb3cb46d9a0bba7a": "Hand over the multivitamins", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Marvelous, mercenary. Now it will be much easier for my people to operate on the location! Thank you for your work.", "60e745d6479eef59b01b0bdc": "Eliminate Raiders on Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Great, great! The clients have already rewa– uh, thanked us for the successful mission. Good job, mercenary.", "60e8174d0367e10a450f7818": "Find in raid and hand over BEAR PMC dogtags of level 50+", "60e81795479eef59b01b0bdf": "Find in raid and hand over USEC PMC dogtags of level 50+", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Find Military COFDM Wireless Signal Transmitters in raid", "60e7449875131b4e61703b7e": "Hand over the programmable processors", "60e744c9d1a062318d3d2262": "Hand over the signal transmitters", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Find Military flash drives in raid", "62a7019ea9a0ea77981b57da": "Hand over the flash drives", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Great, that's all the results I needed, hand me the notebook. Thanks, mercenary.", "60e740b8b567ff641b129573": "Eliminate PMC operatives from over 100 meters away", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Great, thank you very much, friend. The client already reported that they got the packages. I don't think it's the last order from them, so I'll count on you further.", "60e84ba726b88043510e0ad8": "Stash a Trijicon REAP-IR scope under the base of the yellow crane at the construction site on Customs", "60e85b2a26b88043510e0ada": "Stash a Trijicon REAP-IR scope behind the trash containers at the \"new\" gas station on Customs", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respect, brother, you helped me out big time! If you see any dangerous dudes in Ultra, you let me know. Might need you to deal with them again.", "60e73ee8b567ff641b129570": "Eliminate PMC operatives inside the ULTRA mall on Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Hand over the whiskey", "60f028268b669d08a35bfad8": "Find Canisters with purified water in raid", "60f0284e8b669d08a35bfada": "Hand over the superwater", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Find Bottles of Pevko Light beer in raid", "62a70110eb3cb46d9a0bba78": "Hand over the beer", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Locate and eliminate Shturman", "60e7261eb567ff641b129557": "Locate and eliminate Glukhar", "60e72629465ea8368012cc47": "Locate and eliminate Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Here you are, swift one. You pleased the old man, and drew conclusions yourself, I hope. You yourself are the weapon and the monolith, not the amount of steel you wear.", "60e729cf5698ee7b0505743c": "Eliminate PMC operatives without using any armor or helmets on Woods", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "A brave decision, mercenary.", "60effdac12fec20321367038": "Hand over Secure container Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Listen, brother, can you help me find proper info on a guy? He's already left the city. Why can't I find him myself? Because his fucking name is Ivan Ivanov. Seriously, I'm not kidding. There are two hundred thousand of them all over the country with that name. If we could find his former address in Tarkov, we might be able to run him through the database. Let me see what I can find on him. I think he used to run a bar, right. I don't know the name of the bar though... Listen, I don't know how you're gonna know which bar is his. Oh, that reminds me, he was into ballet. No kidding. He went to the Mariinsky every season. Even tried to host something at our local theater, but people weren't really crazy about chicks in tutus. More specific? Brother, I'm already fucking specific! I believe in you, use your intuition.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Found both the bar and the guy's address? Here, write it down for me. You're better than those psychics on TV finding missing people. Wanna be a detective when all this is over, bro? I'll fix you up with a Poirot hat, I promise.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Locate the balletmeister's apartment on Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Survive and extract from the location", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Come here, my dear employee. Everything okay in the city? I got a few teams of mine missing. At first I thought, why the fuck would someone be so cocky, trying to shut my business down? Unless they're messing with me or something. I assumed it was that punk from the Lighthouse at first. But then I get a message from Seva Shket. He wrote that they were kept in some private prison. Have you heard about it? It's hidden somewhere in the old apartment buildings. Suits would dump their rivals there and whoever's easier to keep locked up than kept loose. I'd just kill them if that was such a problem, honestly. But it looks like someone would rather keep them in jail than just pop the cunts bothering them... Here's the deal: Shket was the only one in the group who escaped, but now he's on the run, hasn't contacted us since that message he sent. Didn't even tell us where to find the guys, this rat-faced fuck. The guys themselves are to blame for being caught like some bitches, and I would have just told them to fuck off for such a screwup. But the fact that someone's trying to fuck me over is outrageous. All right, enough of this bullshit. Find out where they keep my boys.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Fucking hell. Why would someone keep them there? I'd understand if they sent me a letter saying they'd kill my people if I didn't pay up and shit. A serial killer or something? Anyway, come around in a little while, I'll find out what's going on.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Survive and extract from the location", "63a7d767f32fa1316250c3da": "Locate where the missing group was held captive on Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "It's the same story again, a new recording, now with a strange symbol. What the hell is going on? People are being sacrificed. To whom? Why? So many questions, yet no answers. I keep thinking it's the worst we'll ever see, but every time I'm proven wrong. We've fought looters with only money on their minds. Murderers who just want to shoot innocents, too. But at least I understand the motivation there, the beast has defeated the human in their soul. But with what purpose do people become these... I cannot understand this. So, soldier, I'll look for them in the woods, you do the same in the city. Somewhere there must be their hideout. Look for the same symbol, I'm sure we'll see it again.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Did you find it? Where? Was there anyone there? What does the symbol mean? Even more questions...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Survive and extract from the location", "63a7d6d61f06d111271f5aeb": "Locate the cultist meeting spot on Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Greetings! Well, let's get it going, are you excited? The task is quite specific, we need to test the Russian toy for close combat, so that the conditions were the very real combat in urban environment. I have customers who don't believe in the effectiveness of this toy... Can you change their minds?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Well? Does it work good? Suitable for close-quarters combat in urban environments?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Eliminate PMC operatives while using an SR-2M \"Veresk\" with a suppressor and KP-SR2 reflex sight on Streets of Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Some are still intact, huh. Well, that's cool, we'll go pay them a little visit. Your reward.", "6572e876dc0d635f633a5718": "Locate the first group of ATMs on Klimov Street on Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Scout the Sparja store in Pinewood hotel", "6572e876dc0d635f633a571e": "Scout the Goshan store in Concordia", "6572e876dc0d635f633a5720": "Hand over the found in raid Salty Dog beef sausage", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Atm №11", "65733403eefc2c312a759df2": "Atm №12", "65733403eefc2c312a759df4": "Atm №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Atm №15", "65733403eefc2c312a759dfa": "Atm №16", "65801ad655315fdce2096bec": "Unravel the secret of the firm's success", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Did you find it? Nice work, now bring it here! And take your reward, you deserve it.", "6573397ef3f8344c4575cd88": "Locate the real estate fund on Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Locate and obtain the Tarkov real estate transactions document", "658167a0e53c40116f8632fa": "Hand over the obtained information", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, yeah, I've already heard the rumors. People're gonna nail those punks to the wall soon. You did a great job. Here's your reward.", "65734c186dc1e402c80dc1a2": "Eliminate any enemy while wearing a Bomber beanie and Raybench Hipster Reserve sunglasses on Streets of Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Stash a Bomber beanie inside the barber shop on Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Stash Raybench Hipster Reserve sunglasses inside the barber shop on Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "It's in the fucking swamp? That explains the fucking price. It would cost more to get it out from there and clean it up! All right, here, that's for helping me out.", "65802b627b44fa5e1463889a": "Locate Ragman's SUV on Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Survive and extract from the location", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Locate and obtain the “Bison VS Undertaker” poster at the USEC camp on Woods", "664bbb5f217c767c35ae3d51": "Locate and obtain the “Killa and Tagilla” poster at the USEC camp on Woods", "664bbb73c71d456fd03714ca": "Locate and obtain the “Easy Money” poster at the USEC camp on Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm, looking for the one who ordered the hit. They'll get over it and realize they're crossing the line. Here, this is your reward.", "660d5effb318c171fb1ca234": "Eliminate Kaban's guards on Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminate Kollontay's guards on Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Win 6 matches out of 10 in ranked mode in Arena", "662bb24b3d34cd5e19206e63": "Failure condition: Lose 5 matches", "6633a85e347a2a2b4051a26b": "Hand over Roubles from the EFT balance", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Failure Condition: Lose 5 matches", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.", "66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.", "66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Locate and obtain the compromising information on Ref", "664fd7f0837ee02ad4c8e658": "Hand over the found info", "66563f0a2684eee09e8dcd86": "Locate the old champion's hideout", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "I think I'm beginning to understand why people watch these \"live streams\". It's addictive!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Install a WI-FI Camera on the mountain ledge on Woods", "667bf840981b1c594af358ce": "Install a WI-FI Camera at the pier tower on Shoreline", "667bf845dc371ee9869f185e": "Install a WI-FI Camera at the office corridor on Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Well done! They say that even the outside world found out about our little move, haha!", "667442da875be5fb415df535": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Shoreline", "66828746efaecf435dde20ca": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", "66d080533a3c33d823a3477d": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hello, friend. Things have been a little bumpy for me lately. I will be temporarily raising the prices of my products and services from today until I can solve some pressing matters. A mercenary friend of mine is putting together a team to raid the underground lab, and he needs reliable firepower. Can you help? I see you know as much about the ARs as I do, so I thought I'd entrust this to you. I need an M4A1 with no more than 300 total recoil and ergonomics no less than 70. Not easy, I know. Now, be sure to put an EOTech XPS 3-0 on it, since the client refuses to use any other scope.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Many thanks. I think this will keep me on track for some time.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modify an M4A1 to comply with the given specifications", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "You didn't lose anything along the way, correct? All right, then it's time to send the engineers out to do some measurements, we're about to find out what these factory walls are hiding. Thanks for your help, friend.", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory (In one raid)", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory (In one raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Locate and obtain the precision tools package in the laboratory on Customs", "66ab97d56cb6e3bfd7c79fbc": "Stash the package at the laboratory storage room on Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "So you have found it indeed. Excellent! How's the passage, is it safe? In a state of disrepair, you say? Well, it seems like this opportunity won't be with us for long. I'll send my men as soon as possible.", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov (In one raid)", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab (In one raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab (In one raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab (In one raid)", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab (In one raid)", "66b10eef0951e90ec383850b": "Scout the control room in The Lab (In one raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "The buyer has told me everything is in place. You've earned your reward, and you can expect my men to help you on the new trails.", "66abb32aeb102b9bcd088d62": "Use the transit from Ground Zero to Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Use the transit from Streets of Tarkov to Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use the transit from Interchange to Customs", "66abb3ac416b26ade4a1446c": "Use the transit from Customs to Factory", "66abb3bf228ace5ca9f3d745": "Use the transit from Factory to Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Install a WI-FI Camera at the bear who sat into a flaming car on Woods", "66debf2e1e254957b82711ff": "Install a WI-FI Camera at the upside-down chair on Shoreline", "66debf30802386a45d0adb60": "Install a WI-FI Camera at the not-so-lonely bathroom on Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "The soldier of fortune has come for his new task! Rumors have it that Tarkov has become even more dangerous. Who would've thought, right? Someone's started targeting certain areas with mortar fire. \n\nYou better go and see what's going on. And yes, this means going right into the middle of those mortar strike areas. Yup. Alright, so we've noticed the bombardments in the nature reserve, the military base, the customs office, and the coast line. Off you go then.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Alive and well, that's great. So let's see what we're working with here. Somebody stole the mortars and now they're hitting various locations right before the airdrop supplies come in. \n\nVery suspicious. These local powdermen sure couldn't have secured communications with the outside world, could they? Either way, all we can do for now is watch.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visit an active mortar strike area on any specified location (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Okay, I got word of a major fuck-up. It may not be your fault, but that's beside the point. The assholes at the water treatment plant intercepted a bunch of these crates with portable EW equipment in them. \n\nThey're obviously useless at this point, but I'm not gonna let them steal government property like this. \n\nFor a warrior like you, the task is feasible. Go to the WTP and get me those EW thingies. And yes, those rats need to be put down. \n\nThe EWs themselves have probably already been handed over to their commanders, so you're guaranteed to get this equipment from them. Assuming you don't die, I suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendid, the new toys have arrived. My guys are gonna love these. You need to be ready for anything these days, and such protection is definitely not superfluous.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Hand over the found in raid item: GARY ZONT portable electronic warfare device", "66e19f359fee1e54e0e01f7c": "Eliminate Rogues", "66e19f7d534a8ff2bb7e9f89": "Locate and neutralize Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "This whole trader thing is going pretty well for me, wouldn't you say? You know, If I didn't have my wits about me, I'd be dead in this hellhole a long time ago. Anyway, I'll deal with the reports later, not the first time. \n\nRight now, I need to equip the guys posted outside my territory. Bring them this new equipment we found. I'll give you a part of it, but the rest you need to get yourself - you already know where to look. No, you won't meet them face to face. Just stash the items in the designated spot.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Good, now that they're safe from airborne threats, their combat mission will be accomplished with no problem.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Stash the GARY ZONT portable electronic warfare device inside the sunken church on Woods", "66e071c8a9e80c3f25bb1bad": "Stash the Radar station spare parts inside the old sawmill hangar on Woods", "66e0735089627301d900ef1d": "Stash the GARY ZONT portable electronic warfare device inside the weather station tower on Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Find the secret exfil on Customs", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "I Hear the Voice of Darkness", "6514134eec10ff011f17cc26 description": "Eliminate Knight 15 times while playing as a PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Now That's a Good Shot", "651413e9c31fcb0e163577c9 description": "Eliminate Zryachiy 15 times while playing as a PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/it.json b/Libraries/SptAssets/Assets/database/locales/global/it.json index 2d9cd9d6..3d9ca0e5 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/it.json +++ b/Libraries/SptAssets/Assets/database/locales/global/it.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Nascondi il contenitore nella stanza di riposo di Factory, situata al secondo piano, vicino al Gate 3", "5968929e86f7740d121082d3": "Ottieni la custodia protetta nell'ufficio del direttore Tarcone alla stazione di Custom", "5977784486f774285402cf52": "Sopravvivi ed estrai da Factory", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Impressionante davvero!!! È roba che scotta! Non mi meraviglio che abbia fatto fuori tutti quello che hanno cercato di impossessarsene.", "5968981986f7740d1648df42": "Ottieni il prezioso oggetto nella camera 203 del dormitorio a Customs", "5968988286f7740d14064724": "Consegna l'oggetto prezioso", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Ottieni l'accesso alla stanza 214 nel dormitorio", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Ti ringrazio dal profondo del mio cuore. Non riuscirei nemmeno a spiegarti quanto questo gesto valga per me, allo stesso tempo quanto può essere piccolo, nelle nostre condizioni. So per certo che molte persone lo terrebbero per sè, ma tu hai deciso di condividerlo con chi ne ha veramente bisogno. Molte grazie.", "5969f98286f774576d4c9542": "Trova gli iniettori di morfina in raid", "5969f99286f77456630ea442": "Consegna gli Iniettori", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Trova le candele in raid", "596b470c86f77457ca18618a": "Consegna le batterie", "596b472686f77457c7006f8a": "Consegna le candele", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "E avevi detto che non c'era niente là! Sebbene potessero essere vuote. Devo controllare con i miei occhi. Comunque sia, ecco la tua fetta.", "5979ee2986f7743ec214c7a4": "Trova chiavette USB protette in raid", "5979ee4586f7743ec214c7a5": "Consegna le chiavette USB", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Individua e segnala il terzo camion di carburante con un marcatore MS2000 a Customs", "59c128f386f774189b3c84bb": "Individua e segnala il quarto camion di carburante con un marcatore MS2000 a Customs", "5c92184386f7746afa2e7840": "Sopravvivi ed estrai dalla zona", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Grandissimo! Ecco prendi questo come ricompensa. Nel frattempo farò decriptare questa Penna Usb dai miei specialisti.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Nascondi il fucile da cecchino SV-98 nella barca", "5a27d85286f77448d82084e7": "Nascondi gli attrezzi multiuso nella barca", "5a3ba11786f7742c9d4f5d29": "Trova la barca nascosta vicino al frangiflutti a Shoreline", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Sopravvivi ed estrai dalla zona", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Grande, potrai sempre contare su di me da ora in poi.", "5a56489d86f7740cfe70eba2": "Consegna USD", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Sei riuscito? Ottimo. Lasciamelo lì nell'angolo. Una bellezza vero? Comunque sono davvero impegnato in questo momento, ci aggiorniamo.", "5accd5e386f77463027e9397": "Modifica un MP-133 affinché rispetti le specifiche richieste", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Beh, nelle mani giuste quest'arma può rovesciare regimi e creare rivoluzioni. Lasciala pure là in quell'angolo, la controllerò più tardi.", "5accd9b686f774112d7173d1": "Modifica un AKS-74U affinché rispetti le specifiche richieste", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Comodissimo per incontri ravvicinati e molto silenzioso. Ottime modifiche, il cliente ne sarà molto soddisfatto.", "5accde3686f7740cea1b7ec2": "Modifica un MP5 affinché rispetti le specifiche richieste", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Grazie, lascia pure il fucile sul tavolo, lo consegnerò personalmente a Di… ehm, Sniper.", "5acce08b86f7745f8521fa64": "Modifica un DVL-10 affinché rispetti le specifiche richieste", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Si, non puoi proprio nasconderti da qualcosa come quella. Amo i 7.62, veramente un buon calibro. Grazie per il tuo lavoro. Il prossimo ordine dovrebbe arrivare domani.", "5acce11786f77411ed6fa6eb": "Modifica un R11 RSASS affinché rispetti le specifiche richieste", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Consegnalo pure, vediamo come lo hai montato. Molto bene, l'arma della democrazia.... Grazie mille.", "5accdfdb86f77412265cbfc9": "Modifica un M4A1 affinché rispetti le specifiche richieste", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Ripara la prima scheda di controllo con un set di attrezzi a Factory", "5ac7a51a86f774738a4ffc96": "Ripara la seconda scheda di controllo con un set di attrezzi a Factory", "5ac7a5d586f774383111ee63": "Sopravvivi ed estrai dalla zona", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Consegna le spine", "5ac5061386f77417e429ce7a": "Trova i circuiti stampati in raid", "5ac5062586f774587c327395": "Consegna i PCB", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Trova il magazzino delle merci sequestrate a Customs", "5ac6248586f77416781dd3a3": "Ottieni il pacchetto di schede grafiche", "5ac624b286f77416781dd3ac": "Consegna il pacchetto di schede grafiche", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Consegna le GPU", "5ac5083d86f7740be2744eed": "Trova le ventole della CPU in raid", "5ac5084d86f7740bde1b0031": "Consegna le ventole della CPU", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Trova la prima sorgente del segnale a Shoreline", "5ac5e13586f7746074388f93": "Trova la seconda sorgente del segnale a Shoreline", "5ac5e18c86f7743ebd6c9575": "Sopravvivi ed estrai dalla zona", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Consegna le batterie", "5ac5e98886f77479bc6ca201": "Consegna i PCB", "5ac5ea0586f774609f36280c": "Consegna i cellulari", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Trova le CPU per PC in raid", "5cb6f88d86f7747d215f09c1": "Trova le batterie ricaricabili in raid", "5cb6f8de86f7740e9d452685": "Trova i circuiti stampati in raid", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Settima cifra dopo la virgola del pi greco? IIO? Quando sarà il momento, ti contatterò.", "5ac5eb3286f7746e7a509a09": "Raggiungi il livello di abilità richiesto nell'abilità Accortezza", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Consegna le sigarette Strike", "5ac5ef9886f7746e7a509a2d": "Trova le sigarette Wilston in raid", "5ac5eff886f7740f43322559": "Consegna le sigarette Wilston", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Trova la seconda estrazione a Factory", "5ac61adf86f774741c1bf096": "Trova la terza estrazione a Factory", "5ac61b1486f7743a8f30fc84": "Sopravvivi ed estrai dalla zona", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Trova la quarta estrazione a Factory", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "Non mi piace fingere, anche se tutti noi lo facciamo. Qualche volta per sopravvivere, altre volte perchè abbiamo soltanto paura. Sai, io non sono mai stato un tipo loquace, specialmente con gli estranei, ma sembri un bravo ragazzo. Se riuscirai ad ottenere la mia fiducia, penso che potrai venire a patti con chiunque. Dopo tutto, soltanto i rapporti personali ci permettono di sopravvivere oggi. Parlando con Pavel Yegorovich, se lui si fida di te, può darsi che poi preparerò quella fornitura di polvere da sparo.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich è uno dei pochi che sono rimasti. Mi chiedo se questa scelta è stata forzata dal suo essere un militare o solo semplicemente perché non ha trovato ancora il tempo di partire. Sento che comunque deve avere a che fare con i suo affari loschi.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Raggiungi il livello 3 di lealtà con Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Ottima arma, ottimo assemblaggio. Non ci sono nuovi ordini, ma puoi venire domani.", "5ae34b8b86f7741e5b1e5d48": "Modifica un Remington Model 870 affinché rispetti le specifiche richieste", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Un'arma comoda, fatta magistralmente, grazie. Farò sapere al cliente che l'arma è pronta.", "5ae3550b86f7741cf44fc799": "Modifica un AKM affinché rispetti le specifiche richieste", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "Allora, lo Zenit AK è pronto? Fantastico, lascialo su quella cassa, grazie. Puoi venire domani per il prossimo ordine, se vuoi.", "5ae3570b86f7746efa6b4494": "Modifica un АKS-74N affinché rispetti le specifiche richieste", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "Penso di aver capito come riconfigurare la rete! Ah si, questo AK andrà bene, grazie. Lascialo lì nell'angolo, lo controllerò più tardi.", "5ae445f386f7744e87761331": "Modifica un АК-105 affinché rispetti le specifiche richieste", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Finito con il fucile? Grande, dallo a me. Ho una chiave interessante qui, potrebbe tornarti utile. Apre il negozio di armi in Ultra, il negozio KIBA. Ha dentro alcune ottime modifiche per armi, potrebbe essere utile per il nostro futuro armaiolo.", "5ae4479686f7744f6c79b7b3": "Modifica un AS VAL affinché rispetti le specifiche richieste", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Benvenuto in squadra, amico. Iniziamo a darci dentro?", "5ae44c6886f7744f1a7eb2b8": "Ottieni il livello 2 di lealtà con Ragman", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Ottieni il livello 2 di lealtà con Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Spari come un cecchino, ottimo lavoro. I miei ragazzi mi stanno riferendo che Interchange è piena di Scav morti e Ultra è molto più tranquilla adesso. Tieni la tua ricompensa, te la sei veramente meritata.", "5ae44ecd86f77414a13c970e": "Elimina Scav a Interchange", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Controlla il negozio DINO CLOTHES", "5ae4511d86f7740ffc31ccb5": "Controlla il negozio TOP BRAND", "5ae4514986f7740e915d218c": "Sopravvivi ed estrai dalla zona", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Marchia il secondo carro armato", "5ae452fa86f774336a39758e": "Marchia il terzo carro armato", "5ae4531986f774177033c3e6": "Sopravvivi ed estrai dalla zona", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "La bellezza salverà il mondo, come si dice. Grazie fratello, mi hai davvero aiutato. Venderò i cappelli in un solo giorno, fidati di me. Ecco prendi questo come ricompensa.", "5ae4543686f7742dc043c903": "Consegna i cappelli ushanka", "5ae454a086f7742be909a81a": "Consegna i cappelli", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Trova dei cappelli Ushanka con para orecchie in raid", "5fd89799c54dc00f463272d3": "Trova i cappelli Kinda Cowboy in raid", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Consegna il manifesto di carico OLI", "5ae9b3b186f7745bbc722762": "Ottieni il manifesto di carico IDEA a Interchange", "5ae9b3c986f77432c81e2ce6": "Consegna il manifesto di carico IDEA", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Trovati i documenti? Mille grazie. Consegnali pure, vediamo dove è finito il nostro piccolo cargo.", "5ae9b5bd86f774307c29df37": "Ottieni i documenti del percorso del carico OLI a Interchange", "5ae9b63286f774229110402d": "Consegna i documenti", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Consegna il cappello sci con fori per gli occhi", "5ae455fb86f7744dd8242380": "Trova zaino turistico Pilgrim", "5ae4562086f774498b05e0dc": "Consegna lo zaino", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Consegna l'armatura BNTI Gzhel-K con condizioni dello 0-50%", "5ae9b91386f77415a869b3f3": "Ottieni l'armatura BNTI Gzhel-K con condizioni dello 50-100%", "5ae9b93b86f7746e0026221a": "Consegna l'armatura", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Consegna dei giubbotti tattici WARTECH TV-109 + TV-106", "5af079e486f77434693ad7f8": "Trova giubbotti BlackRock in raid", "5af07a0286f7747dba10d8ac": "Consegna dei giubbotti tattici", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Consegna il primo manuale", "5ae9c0e186f7746419683c5e": "Ottieni il manuale di design dei vestiti - Parte 2 a Interchange", "5ae9c10686f774703201f146": "Consegna il secondo manuale", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Ei ei, tranquillo, sto dalla tua parte amico! Scusa sto soltanto cazzeggiando. Vedo che hai migliorato il tuo carisma ed è un bene. Parliamo di affari adesso.", "5ae9c29386f77427153c7fb0": "Raggiungi il livello richiesto nell'abilità Carisma", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Sembrerebbe che tutti sia filato per il verso giusto, grazie.", "5ae9c38e86f7743515398707": "Raggiungi il livello 3 di lealtà con la Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Nascondi lo Shemagh (Verde) nel luogo prestabilito", "5ae9e2a286f7740de4152a0a": "Nascondi gli occhiali da sole RayBench Hipster Reserve nel luogo prestabilito", "5ae9e2e386f7740de4152a0d": "Nascondi gli occhiali da sole a montatura rotonda nel luogo prestabilito", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Una volta hai spaventato un po' di Scav all'Ultra, ricordi, fratello? Ora la gente dice che sta peggiorando. Si dice che sia pieno di ogni sorta di feccia. Ho una missione per te, controlla la situazione a Interchange, assicurarsi che sia sicuro camminare li intorno almeno. Trova percorsi sicuri o qualcosa del genere. Ho davvero bisogno che vada tutto liscio, ok?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Sei proprio come un uomo invisibile o un fantasma o qualcosa del genere. Aspetta fammi prendere una mappa. Cosi i percorsi più veloci sono qui e qui giusto? Ottimo, lo farò sapere subito ai miei uomini. Grazie mille amico, mi hai davvero aiutato e non poco.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Sopravvivi ed estrai da Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Questo si che è un vero djigit! Riunirò i miei ragazzi, mi porteranno altra buona roba dal Goshan! Allora, per quanto riguarda la tua ricompensa, dai un'occhiata al nuovo stock di armature, tutte per te.", "5ae9e55886f77445315f662a": "Ottieni la chiave dei registratori di cassa Goshan", "5ae9e58886f77423572433f5": "Consegna la chiave dai registratori di cassa Goshan", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Ricorda, non accendere la torcia o rimarrai accecato per giorni! Comunque, ben fatto, lascia pure su quella cassa.", "5b47796686f774374f4a8bb1": "Modifica un АК-102 affinché rispetti le specifiche richieste", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Su da qua, devo consegnarlo al cliente e in fretta. Spero che tu non abbia spifferato a nessuno per cosa è stato assemblato questo MPX. Bene auguriamogli buona fortuna.", "5b477b3b86f77401da02e6c4": "Modifica un SIG MPX affinché rispetti le specifiche richieste", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Grazie, lasciameli lì da qualche parte. Sono un attimo occupato adesso, ci vediamo più tardi.", "5b477f1486f7743009493232": "Modifica un AKMN affinché rispetti le specifiche richieste", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "Il fucile è pronto? Ottimo. Suppongo che hai già scoperto che il nome di Sniper è Dima, me lo sono lasciato sfuggire tempo fa. Non una parola su di lui con nessuno mi raccomando, spero che tu capisca la situazione.", "5b47824386f7744d190d8dd1": "Modifica un M1A affinché rispetti le specifiche richieste", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Viene proprio la voglia di metterlo in vetrina. Un'opera magistrale, un vero capolavoro.", "5b4783ba86f7744d1c353185": "Modifica un M4A1 affinché rispetti le specifiche richieste", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, spettacolo, da qua. Il Mechanic li stava aspettando come avrai di certo capito. Glieli spedirò in giornata. Grazie per il tuo grande aiuto.", "5b47884886f7744d1c35327d": "Trova additivo per carburante in raid", "5b47886986f7744d1a393e65": "Consegna additivo per carburante", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Consegna la statuetta di gatto", "5b478a6c86f7744d190d8f4d": "Trova un orologio d'oro Roler Submariner in raid", "5b478a8486f7744d1c35328b": "Consegna l'orologio", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Trova l'uovo d'oro in raid", "62a70058ec21e50cad3b6709": "Consegna l'uovo d'oro", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Nascondi il Perltor ComTac 2 nel luogo prestabilito", "5b478c7386f7744d1a393fb1": "Nascondi l'elmetto 6B47 nel luogo prestabilito", "5b478cb586f7744d1a393fb5": "Nascondi l'armatura BNTI Gzhel-K nel luogo prestabilito", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Individua e segnala il secondo minibus giallo con un marcatore MS2000 a Interchange", "5b478dca86f7744d190d91c2": "Individua e segnala il terzo minibus giallo con un marcatore MS2000 a Interchange", "5b478de086f7744d1c3533a1": "Sopravvivi ed estrai dalla zona", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Ottieni il terzo contenitore chimico", "5b4c832686f77419603eb8f0": "Consegna il secondo contenitore", "5b4c836486f77417063a09dc": "Consegna il terzo contenitore", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Molto bene, tutto a posto! Spero soltanto che mi miei uomini si rimettano presto grazie alle trasfusioni fatte... ma diamine, tanto hanno poca scelta.", "5b47905886f7746807461fe2": "Consegna i respiratori", "5b4790a886f774563c7a489f": "Consegnate i set di sangue", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Trova i respiratori in raid", "5ec1388d83b69d213d3c2ee0": "Trova i kit medici per trasfusioni in raid", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Installa una telecamera WI-FI per sorvegliare il bacino della segheria su Woods", "5b47936686f77427fd044025": "Installa una telecamera WI-FI per sorvegliare la strada verso il porto di Customs", "5b47938086f7747ccc057c22": "Installa una telecamera WI-FI per sorvegliare l'ingresso del negozio Kiba Arms su Interchange", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Consegna il terzo controller", "5b4c7aec86f77459732b4b08": "Consegna il secondo giroscopio a fibra ottica monoasse", "5b4c8e6586f77474396a5400": "Ottieni il secondo giroscopio a fibra ottica monoasse a Shoreline", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Ottieni il primo controllo motore a Woods", "66d07de6c7ef9040fff0b789": "Consegna il primo controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Nascondi le collane d'oro sotto il materasso accanto al BTR-82A dentro il Generic Store a Interchange", "5b4796c086f7745877352c2c": "Nascondi le collane d'oro nel forno a microonde al 3° piano dei dormitori a Customs", "5b47971086f774587877ad34": "Nascondi le collane d'oro nella baracca di legno centrale della segheria a Woods", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Elimina gli agenti PMC nel periodo di tempo 22:00-10:00 a Interchange", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "Quindi non ti senti come Zaitsev? Sniper è soddisfatto con i primi risultati dei test e ti ha già preparato il prossimo incarico.", "5bc850d186f7747213700892": "Uccidi Scav usando un fucile a retrocarica con un collimatore da almeno 40 metri", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Non male, non male. Nemmeno io sarei preciso come lo sei stato tu a sparare, ormai sono troppo vecchio per queste cose. Mentre sparavi, Sniper ha preparato il prossimo test per te.", "5bd983d886f7747ba73fc246": "Colpisci le gambe usando un fucile a retrocarica da almeno 40 metri di distanza", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Colpisci la testa usando un fucile a retrocarica da almeno 40 metri di distanza", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Immagino tu abbia un buon tempo di reazione visto che sei ancora qui con noi. Prendi il tuo cappello, come promesso! Ora va cecchino, altre prove ti stanno aspettando.", "5bc47e3e86f7741e6b2f3332": "Elimina gli agenti PMC da meno di 25 metri di distanza usando un fucile a retrocarica", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Pronto? Forza al lavoro. Sniper ha iniziato ad interessarsi a te.", "5bc4813886f774226045cb9a": "Elimina gli agenti PMC da oltre 80 metri di distanza usando un fucile a retrocarica", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Uccidi i PMC usando i fucili a retrocarica da una distanza di almeno 80m", "657b0567ec71635f16471dd2": "Elimina gli agenti PMC da una distanza da oltre 80 metri usando un fucile a retrocarica", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Ben fatto, occhi da gufo. Hai sfoltito un po' di quei predatori notturni.", "5bc84f7a86f774294c2f6862": "Elimina Scav a Customs con un fucile a retrocarica tra le 21:00 e le 05:00 del mattino", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "Non esistono trucchi sporchi nel gioco dei cecchini. Ben fatto, ragazzo.", "5bc483ba86f77415034ba8d0": "Elimina Scav cecchini mentre utilizzi un fucile a retrocarica", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "Il nemico resta indifeso nel nel momento in cui non sa da dove viene colpito. Hai fatto bene, tiratore.", "5bc485b586f774726473a858": "Eliminare gli agenti PMC usando un fucile a retrocarica silenziato da almeno 45 metri di distanza", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Questa non è una missione facile. Prova di nuovo.", "5bc4893c86f774626f5ebf3e successMessageText": "Sembrerebbe che a volte essere intelligenti non sia sufficiente per agire in modo intelligente. Beh, un buon vecchio bullone potrebbe esserci d'aiuto. Per ora Il Cecchino rimane silenzioso, quindi aspettiamo un po', prima di riassegnarti altri compiti. Ti farò comunque sapere quando ci saranno nuovi test per te.", "5bc48aed86f77452c947ce67": "Elimina gli agenti PMC con un colpo in testa senza morire mentre stai usando un fucile a retrocarica", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "Non puoi morire o lasciare l'incursione finché la missione non viene consegnata al cliente (Stato: Ucciso, Corso all'uscita, MIA)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Nascondi l'orologio da polso in oro Roler Submariner nella spazzatura di fronte alle scale al terzo piano del dormitorio", "5c12320586f77437e44bcb15": "Nascondi la penna USB finta nella spazzatura di fronte alle scale al terzo piano del dormitorio", "5c1233ac86f77406fa13baea": "Non uccidere scav a Customs fino a che la missione non è stata completata", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Ottieni la chiavetta USB finta dal punto specificato a Customs", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "Ottimo lavoro, ora hai il mio pieno rispetto! Penserò a te nel caso abbia qualcosa di interessante tra le mani.", "5c0bc95086f7746e784f39ec": "Uccidi Scav con un fucile a pompa calibro 12 silenziato", "5c0bcc9c86f7746fe16dbba9": "Uccidi gli agenti PMC con un fucile a pompa calibro 12 silenziato", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Ben fatto amico mio! È andato tutto secondo i piani.", "5c1242fa86f7742aa04fed52": "Elimina gli agenti PMC nel perido di tempo tra le 21:00 e le 06:00 (Ad esclusione di Factory e The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "Quindi, che cosa ne pensi? Ti sembra o no un giocattolo serio? Ottimo, adesso consegnamelo. Ecco questo per averti scomodato, potrei aver bisogno di aiuto nel testare altre cose.", "5c1b765d86f77413193fa4f2": "Eliminare gli agenti PMC da almeno 60 metri mentre usi un fucile M1A con un Silenziatore Hybrid 46 e un mirino Schmidt & Bender PM II 1-8x24", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "Eccoti. Sono sicuro che non fuggirai a game levate quanto le cose si metteranno veramente male.", "5c0bdbb586f774166e38eed5": "Raggiungi il livello richiesto nell'abilità Stress da resistenza", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Elimina gli agenti PMC con un colpo in testa mentre usi un fucile a retrocarica a Reserve", "5c137ef386f7747ae10a821e": "Elimina gli agenti PMC con un colpo in testa mentre usi un fucile a retrocarica a Shoreline", "5c137f5286f7747ae267d8a3": "Elimina gli agenti PMC con un colpo in testa mentre usi un fucile a retrocarica a Customs", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Elimina gli agenti PMC con un colpo in testa mentre usi un fucile a retrocarica a Lighthouse ", "63aec6f256503c322a190374": "Elimina gli agenti PMC con un colpo in testa mentre usi un fucile a retrocarica a Streets of Tarkov", "64b694c8a857ea477002a408": "Elimina gli agenti PMC con un colpo in testa mentre usi un fucile a retrocarica a Interchange", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Un cecchino con la tua esperienza non si arrende al primo fallimento. Riprendi fiato e prova di nuovo.", "5c0be13186f7746f016734aa successMessageText": "Ad essere franco non ero così sicuro che ce l'avresti fatta. A quanto pare mi sbagliavo, non sei una persona qualunque.", "5c0be2b486f7747bcb347d58": "Raggiungi il livello richiesto nell'abilità Fucile a Retro Carica", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Elimina gli agenti PMC operativi senza morire mentre usi un fucile a retrocarica", "64b67fcd3e349c7dbd06bd16": "Non devi morire o lasciare il raid quando la missione è ancora attiva. (Stato: KIA, Azione Abbandonata, MIA)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Lo hai portarlo? Ottimo, mettilo là nell'angolo. Fai attenzione l'apparecchiatura è molto fragile. Anche se l'intera faccenda della clinica dovesse fallire, ci sono alcune persone che potrebbero essere interessati a questo equipaggiamento, ma che rimanga tra me e te. Perché mai dovremmo buttare Hardware così costoso?", "5c0be66c86f7744523489ab2": "Consegna l'oftalmoscopio", "5c0be69086f7743c9c1ecf43": "Consegna il transilluminatore cutaneo LEDX", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Trova L'oftalmoscopio in raid", "5fd8935b7dd32f724e0fe7ee": "Trova il transilluminatore cutaneo LEDX in raid", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "Ad essere onesto, non ho alcun dubbio che tu sia la persona di cui ci si può fidare, e non parlo solo a livello lavorativo.", "5c0d0dfd86f7747f482a89a5": "Raggiungi il livello richiesto nell'abilità Salute", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Molto bene, molto bene! I clienti sono rimasti contenti mercenario. Ecco la tua ricompensa.", "5c138c4486f7743b056e2943": "Consegna i processori programmabili Virtex", "5c138d4286f774276a6504aa": "Consegna il trasmettitore militare di segnale wireless COFDM", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Trova i processori programmabili Virtex in raid", "5ec13da983b69d213d3c2ee4": "Trova il trasmettitore di segnale wireless militare COFDM in raid", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Menomale, gli arti sono ancora attaccati, abbiamo alzato un bel vespaio, come da programma. Ci tornerai ancora utile in faccende come queste. Ecco la tua ricompensa, te la sei guadagnata.", "5c1b760686f77412780211a3": "Elimina gli agenti PMC con le granate", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Già fatto? Sai, alla fine ha funzionato, il modo in cui i loro capi ci parlano è cambiato molto. Non dare la colpa a me, in questo mondo purtroppo devi negoziare anche con la feccia. Ecco la tua ricompensa.", "5c1b778286f774294438b536": "Elimina Scav a Interchange, da vicino (meno di 60 metri) mentre indossi un equipaggiamento specifico", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Elimina Scav a Interchange mentre indossi un'uniforme ONU (Casco Onu, armatura MF-UNTAR, Fucile M4A1)", "5c1b713f86f774719c22e8a0": "Elimina Scav a Shoreline mentre indossi un'uniforme ONU (Casco Onu, armatura MF-UNTAR, Fucile M4A1)", "5c1fd66286f7743c7b261f7b": "Elimina Scav a Woods mentre indossi un'uniforme ONU (Casco Onu, armatura MF-UNTAR, Fucile M4A1)", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimina Scav a Customs mentre indossi un'uniforme ONU (Casco Onu, armatura MF-UNTAR, Fucile M4A1) su Streets of Tarkov", "65e08aa9f5879b2586d5fd4c": "Elimina Scav su Ground Zero mentre indossi un'uniforme ONU (Casco Onu, armatura MF-UNTAR, Fucile M4A1)", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Sopravvivi ed estrai da Shoreline con lo stato \"Sopravvissuto\"", "5c13989886f7747878361a50": "Sopravvivi ed estrai da Factory con lo stato \"Sopravvissuto\"", "5c1931e686f7747ce71bcbea": "Sopravvivi ed estrai da The Lab con lo stato \"Sopravvissuto\"", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Sopravvivi ed estrai da Reserve con lo stato \"Sopravvissuto\"", "629f08e7d285f377953b2af1": "Sopravvivi ed estrai da Lighthouse con lo stato \"Sopravvissuto\"", "63aec66556503c322a190372": "Sopravvivi ed estrai da Streets of Tarkov con lo stato \"Sopravvissuto\"", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Individua e segnala la seconda riserva di carburante con un marcatore MS2000 a Woods", "5c10f94386f774227172c576": "Individua e segnala la terza riserva di carburante con un marcatore MS2000 a Woods", "5c10f94386f774227172c577": "Sopravvivi ed estrai dalla zona", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Ora ragioniamo! Mi prenderò un buon saldatore e mi rimetterò a lavoro. Può darsi che il mercato sia di nuovo favorevole per quel giorno.", "5c1129ed86f7746569440e88": "Consegna i cavi", "5c112a1b86f774656777d1ae": "Consegna i condensatori", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Trova delle matasse di cavi elettrici in raid", "5ca71a1e86f7740f5a5b88a2": "Trova condensatori in raid", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "Ecco fatto, adesso sono assolutamente sicuro che puoi tornare vivo dai raid e con qualcosa di buono nello zaino. Ben fatto fratello!", "5c112dc486f77465686bff38": "Raggiungi il livello richiesto nell'abilità Cerca", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Ce l'hai? Fantastico. Mi chiedo cosa potrebbe chiedere la prossima volta, una toilette rivestita di diamanti? Ma ehi, se dovesse veramente chiederlo, dovrai cercarlo. Grazie per l'aiuto, fratello.", "5c11427386f77430ff393793": "Consegna le teiere", "5c122c5f86f77437e44bcb0e": "Consegna i vasi", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Trova le teiere antiche in raid", "5ca7258986f7740d424a2044": "Trova i vasi antichi in raid", "62a700893e015d7ce1151d90": "Trova la statuetta del pappagallo Axel in raid", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "I miei ragazzi dicono che in questo preciso istante a Customs si sta svolgendo una terza guerra mondiale, i BEAR e gli USEC stanno facendo secchi Scavs a destra e a manca! Bella roba, bel lavoro. Ecco il tuo premio, come promesso.", "5c1fa9c986f7740de474cb3d": "Uccidi gli agenti PMC mentre indossi l'equipaggiamento richiesto a Customs", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Raggiungi il livello 4 di lealtà con Peacekeeper", "5c12489886f77452db1d2b05": "Raggiungi il livello 4 di lealtà con Prapor", "5c1248ef86f77428266184c2": "Raggiungi il livello 4 di lealtà con la Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Raggiungi il livello 4 di lealtà con Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "Me li hai portati per davvero! Ne sono contento! Fammici dare un'occhiata più da vicino.", "5c139eb686f7747878361a72": "Consegna il lettore", "5c139eb686f7747878361a73": "Consegna il modulo di archiviazione", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Trova un lettore RFID UHF in raid", "5ec14080c9ffe55cca300867": "Trova il Modulo di Archiviazione Flash VPX in raid", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Ah, mercenario. Risolutore di problemi locale, eh… Sì, so di te. Non pensare di essere l'unico. Ci sono altre persone serie là fuori, forse anche più esperte di te. Vanno in giro per Tarkov, si fanno gli affari loro, di tanto in tanto lasciano qualche souvenir. Qui c'è un lavoro per te, trovami questi articoli. Niente domande, va bene? So che sono difficili da trovare, ma la ricompensa non li deluderà. Una condizione, devi trovare tutto da solo, senza commercianti. Credimi, so quando le persone mentono.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Li hai tutti? Ottimo. Ti sei dimostrato essere capace, mercenario. Ecco la tua sudata ricompensa, come promesso.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Consegna il libro antico malridotto", "5c51bf8786f77416a11e5cb2": "Consegna il lubrificante per pistole #Fireklean", "5c51bf9a86f77478bf5632aa": "Consegna il gallo d'oro", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Consegna la lattina di spratti", "5c51c24c86f77416a11e5cb7": "Consegna i baffi finti", "5c51c25c86f77478bf5632af": "Consegna il berretto di Kotton", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Consegna il vecchio acciarino", "5c52da5886f7747364267a14": "Consegna l'ascia antica", "5cb5ddd386f7746ef72a7e73": "Trova il vecchio acciarino in raid", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Trova una lattina di spratti in raid", "5cb5df7186f7747d215eca08": "Trova i baffi finti in raid", "5cb5df8486f7746ef82c17ea": "Trova il berretto di Kotton in raid", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Trova la statuetta del corvo in raid", "5ec7998dc1683c0db84484e7": "Consegna la statuetta del corvo", "5ec79aaac1683c0db84484e8": "Trova la maschera della peste Pestily in raid", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Consegna il portafogli WZ", "60d0748820a6283a506aebb1": "Trova il veleno per ratti LVNDMARK in raid", "60d074ef401d874962160aee": "Consegna il veleno per ratti LVNDMARK", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Trova passamontagna Smoke in raid", "60e827faf09904268a4dbc40": "Consegna passamontagna Smoke", "62a6ff004de19a4c3422ea5d": "Consegna l'oggetto trovato in raid: Chiave per carrelli elevatori Missam", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Cel'hai? Ben fatto. Beh penso che tu sia degno adesso di entrare in contatto con Jaeger. Potrebbe avere un bel po' di lavoro per te.", "5d249a6e86f774791546e952": "Ottieni il messaggio cifrato di Jaeger", "5d249aa286f77475e8376399": "Consegna il messaggio", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Trova l'accampamento di Jaeger nel punto specificato a Woods", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Consegna le confezioni di razioni Iskra trovate in raid", "5d24bb4886f77439c92d6bad": "Consegna le confezioni di noodles istantanei trovate in raid", "5d24bb7286f7741f7956be74": "Consegna le lattine di stufato di manzo (grandi) trovate in raid", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Come un tizio famose diceva \"Vola come una farfalla, pungi come un'ape\". Un gran bel consiglio, tienilo a mente. Quindi, come ti fa sentire muoverti senza tutte quelle piastre addosso? Ricorda, se ti muoverai veloce, non avrai mai bisogno di un'armatura per occuparti di quella feccia.", "5d25af3c86f77443ff46b9e7": "Elimina Scav a Woods senza indossare alcuna armatura", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Nascondi una bottiglia di acqua (0.6L) nel bunker ZB-016 a Woods", "5d2deedc86f77459121c3118": "Nascondi una confezione di razioni Iskra nel bunker ZB-014 a Woods", "5d2defc586f774591510e6b9": "Nascondi una bottiglia di acqua (0.6L) nel bunker ZB-014 a Woods", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "Non so come tu abbia fatto a sopravviere così a lungo! Veramente impressionante. Ecco, qualcosa da bere, per recuperare le forze.", "5d25c5a186f77443fe457661": "Sopravvivi per 5 minuti mentre sei completamente disidratato (Ad esclusione di Factory)", "5d9f035086f7741cac4a9713": "Sopravvivi ed estrai dalla zona", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Risolto? Ben fatto. Il tuo addestramento è quasi terminato. Se continuiamo a questo regime, potremo iniziare a prenderci cura della sicurezza nella città prima del previsto.", "5d25c8c986f77443e47ad47a": "Elimina Scav mentre soffri l'effetto dolore", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Completata? Grande! Sudore più sacrificio uguale successo! Ma non ti esaltare troppo adesso, ci sono altre missione pronte per te.", "5d25d09286f77444001e284c": "Elimina Scav a Woods in un singolo raid senza utilizzare alcun farmaco", "5d25d0d186f7740a22515975": "Non puoi utilizzare forniture mediche fino al termine della missione", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "Davvero impressionante, riesci a gestire anche i tremori? Ottimo! Ad essere onesto, non pensavo che tu ce l'avresti fatta, la missione era un bel po' difficile.", "5d25d4e786f77442734d335d": "Elimina gli agenti PMC con colpi alla testa mentre si soffre dell'effetto tremore", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Quindi cel'hai fatta? Chi l'avrebbe mai detto.", "5d25dc2286f77443e7549028": "Elimina gli agenti PMC mentre sei accecato da una granata flashbang", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "Quanti ne hai detto che ci sono la? sei? E te li sei fatti tutti senza \"visori\"? Impressionante, sei veramente un predatore notturno.", "5d25fd8386f77443fe457cae": "Elimina Scav tra le 21:00 e le 04:00, senza l'utilizzo di Visori Notturni o mirini Termici (Ad esclusione di Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "Come dicono le persone? Ciò che è difficile in fase di esercitazione diventerà poi facile in battaglia! Questa abilità ci tornerà utile, fidati di me. Il tuo addestramento è quasi completo.", "5d2605ef86f77469ef0f7622": "Raggiungi il livello richiesto nell'abilità Vitalità", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Ottimo lavoro! Ovviamente la feccia non finisce mai, ne arriveranno degli altri di sicuro. Ma almeno ci penseranno due volte prima di fare a pezzi il posto.", "5d26143c86f77469ef0f894c": "Elimina gli agenti PMC nella zona uffici (qualsiasi piano) a Factory", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Individua ed elimina Reshala", "5d2710e686f7742e9019a6b2": "Consegna la pistola dorata TT di Reshala", "5d66741c86f7744a2e70f039": "Trova la pistola dorata TT di Reshala in raid", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "Hanno fatto la loro scelta quanto hanno imboccato la strada sbagliata. Hai fatto la cosa giusta cacciatore, grazie mille.", "5d2701b586f77469f1599fe2": "Elimina Scav in tutto il territorio di Tarkov", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Imparata la lezione? Molto bene. Come vedi puoi disarmare un nemico in molte maniere.", "5d307fc886f77447f15f5b23": "Elimina gli agenti PMC mentre sono accecati da una granata flashbang", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Individua ed elimina Killa", "5d271a3486f774483c7bdb12": "Consegna l'elmetto di Killa ", "5d667a8e86f774131e206b46": "Trova l'elmetto di Killa in raid", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Individua ed elimina Shturman", "5d272a0b86f7745ba2701532": "Consegna la chiave della cassa di Shturman", "5d2f464e498f71c8886f7656": "Trova la chiave della cassa di Shturman in raid", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Protetto l'onore dell'uniforme? Direi ottimo. Che si fottano, non c'è niente di peggio di prestare giuramento e poi commettere crimini.", "5d272bd386f77446085fa4f9": "Elimina Scav vestiti in uniforme di polizia (guardie del corpo di Reshala)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "Ho sentito cosa hai fatto. La situazione ora sembra più calma là fuori, molti meno saccheggiatori. Hai tutta la mia gratitudine.", "5d2733c586f7741dea4f3072": "Elimina gli agenti PMC nell'area dei Dormitori a Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Bentornato cacciatore. Quindi hai affrontato quei banditi? Non oso nemmeno immaginare quanto sia stato seccante per te, ma hai fatto comunque un ottimo lavoro.", "5d27369586f774457411b264": "Individua ed elimina Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Quindi loro stanno operando vicino ai laboratori e alle postazioni militari... Oh, spero che questo non inizi un'altra guerra, oltre a quella già in corso. Bene, amico, non starà a noi risolvere questa questione, almeno per ora.", "5d273a4d86f774457411b266": "Elimina Raider", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Capito? Grande. Spero solo di non dover continuare a rimanere impotente, vedendo le persone morire come mosche.", "5d27446f86f77475a86565a3": "Consegna il defibrillatore", "5d7782c686f7742fa732bf07": "Consegna kit chirurgici CMS", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Trova il defibrillatore portatile in raid", "5ec1538a92e95f77ac7a2529": "Trova kit chirurgici CMS in raid", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Trova la casa del presidente nel villaggio abbandonato a Shoreline", "5d357b9586f7745b422d653f": "Trova la casa del pescatore nel villaggio abbandonato a Shoreline", "5d357bb786f774588d4d7e27": "Trova la casa del prete nel villaggio abbandonato a Shoreline", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Sopravvivi ed estrai da Shoreline con lo stato \"Sopravvissuto\"", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Fatto? Bene, vediamo che cosa sta combinando. Torna tra un po', io e il Mechanic controlleremo le Penne Usb, poi ti faremo sapere anche a te al riguardo.", "5d27491686f77475aa5cf5b9": "Consegna le chiavette USB", "5d6949e786f774238a38d9e0": "Trova chiavette USB protette in raid", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Consegna l'album fotografico", "5d357e0e86f7745b3f307c56": "Trova la stanza con vista sulla baia di Jaeger nel centro benessere su Shoreline", "5d357e8786f7745b5e66a51a": "Ottieni l'album fotografico di Jaeger", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "Li hai fatti? Ottimo lavoro amico. Ora dobbiamo soltanto capire come trovare questo laboratorio. Bene, ci penserò io tu adesso riposa.", "5d2f375186f7745916404955": "Trova la tessera magnetica di accesso ai Terragroup Lab in raid", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Consegna la tessera magnetica di accesso", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Entra. Vuoi del tè? Bene, è lo stesso. Quindi ascolta, ecco l'accordo. Presto ospiterò alcuni miei amici. Voglio andare a caccia con loro, ma non posso portarli a caccia con questi fucili MP, giusto? Ho un paio di bei fucili western qui, ma prima ho bisogno che vengano azzerati correttamente. Abbiamo un cliente per quello, il suo nome è Shturman. Quindi, prova il mio setup (fucile da cecchino Remington M700 con un mirino FullField TAC30 1-4x24) su questa feccia. Trova una posizione a lungo raggio e spara un colpo preciso alla testa, in modo che il bastardo non abbia nemmeno una possibilità. Non preoccuparti, non ti deluderò con la ricompensa, ragazzo.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Quelli sono dei dannati ottimi fottuti fucili! Ben fatto! Sai penso che prima o poi possa dedicarmi anche io alla costruzione di armi, questo ultimo affare non mi è dispiaciuto affatto. Tornando alla ricompensa: dai un occhio alle piccole cose che ho trovato, forse potrebbero servirti.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Elimina Shturman con un colpo in testa, da almeno 75 metri, utilizzando un fucile da cecchino M700 con il mirino specificato", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Guarda chi abbiamo qui! Ciao! Ascolta, conosci la base militare vicino al centro benessere? Probabilmente é da li che vieni. Allora, ho delle novità. Dicono che nei vecchi magazzini ci sia ancora molto cibo e che i gruppi di banditi abbiano cominciato a vagare lì, non i soliti Scav, sono ben equipaggiati. Voglio che controlli se è rimasto qualcosa in quei magazzini. Ma stai attento, ci sono davvero un sacco di persone pericolose.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Hanno già iniziato a prendere tutto? Ok, dobbiamo agire in fretta.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Trova il luogo di stoccaggio del cibo a Reserve", "629f1259422dff20ff234b4d": "Sopravvivi ed estrai dalla zona", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Consegna la batteria militare", "5d4c020a86f77449c463ced6": "Trova bossoli OFZ 30x165mm in raid", "5d4c028c86f774389001e027": "Consegna bossoli OFZ", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "Quindi? hai deciso? Solo un paio di iniezioni. Qui e qui. Mantieni la calma, almeno per un paio di giorni rilassati e prendi le tue vitamine.", "5d6fb8a886f77449db3db8b6": "Consegna RUBLI", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Mi sono arrivate voci che hai seguito il corso. Bene, con le tue capacità, dovresti poter imparare velocemente.", "5d6fbf0f86f77449d97f738e": "Consegna EUR", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Già fatto? Bel lavoro. Aspetta qui un minuto, ho bisogno di misurare le dimensioni e capire come sono stati cuciti. Come promesso. Ma ehi, devi capire che i materiali non sono economici di questi tempi, quindi non stupirti per il prezzo. Comunque, ha tre strisce, ha stile.", "5dc53fd386f77469c87589a3": "Individua ed elimina Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Consegna i tessuti", "5e38356d86f7742993306cac": "Consegna i tessuti", "5e3835e886f77429910d4465": "Consegna le paracord", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Consegna i tessuti", "5e383a6386f77465910ce1f8": "Trova le paracords in raid", "5e383a6386f77465910ce1f9": "Consegna le paracord", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Consegna i tessuti", "5e4d4ac186f774264f75833b": "Trova i nastri KEKTAPE in raid", "5e4d4ac186f774264f75833c": "Consegna il nastro adesivo", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Consegna i tessuti", "5e4d515e86f77438b2195249": "Trova i nastri KEKTAPE in raid", "5e4d515e86f77438b219524a": "Consegna nastri isolanti KEKTAPE", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, giusto in tempo. Forse hai già sentito che è arrivato un nuovo dottore? Ma questo non è uno di quelli classici, aiuta alcune persone ma ne paralizza altre. Dicono che vende medicine e fa interventi proprio per strada. Lo chiamano Sanitar, riesci a immaginare? Si é stabilito a Shoreline e cosa abbastanza interessante, i teppisti locali sono molto contenti di questo, ed è chiaro il perché, li rattoppa e gli vende anche droghe e kit di pronto soccorso di ogni tipo. Questo significa che da qualche parte dovrebbe averne una scorta. Scopri di più su questo Sanitar, ma silenziosamente. Per ora, basta scoprire dove questa feccia gira. Penso che smerci e faccia gli interventi chirurgici negli stessi punti. Sei interessato? ", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "Mi stai dicendo che ci sono un bel po' di scorte? Immagino che sia riuscito a trovare un deposito di medicinali e che ora stia vendendo tutto da lì. Se solo potessi trovare quel magazzino... beh, comunque questo non è un tuo problema. Per ora.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Segnala il primo centro di scambio con un marcatore MS2000 a Shoreline", "5eda1da9a58a4c49c74165ee": "Segnala il secondo centro di scambio con un marcatore MS2000 a Shoreline", "5eda1dd3317f6066993c1744": "Segnala il terzo centro di scambio con un marcatore MS2000 a Shoreline", "5f0389268580cc37797e0026": "Sopravvivi ed estrai dalla zona", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "Quindi hai creduto a quella donna? Ti rendi conto che ti sta solo ingannando per il suo bene? Pensi che siccome Sanitar cura alcune persone, non possa ucciderne altre? Sei completamente impazzito con la tua guerra, non riesci a distinguere il nero dal bianco. Togliti dalla mia vista, voglio stare da solo.", "5edab4b1218d181e29451435 successMessageText": "Hai fatto la cosa giusta. Anche se altri dicono che Sanitar ha fatto buone azioni, ne ha fatte molte più malvagie. Non credere alle bugie di quelle persone. Ho già visto persone come Sanitar, una volta impazziti, non si torna indietro. Puoi solo sparargli come cani rabbiosi.", "5edab5a6cecc0069284c0ec2": "Individua ed elimina Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Individua il gruppo che è stato mandato al Centro Benessere su Shoreline", "5edab8890880da21347b3826": "Individua il gruppo che è stato mandato a Shoreline", "5edab8e216d985118871ba18": "Individua il gruppo che è stato mandato ai cottage su Shoreline", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Sopravvivi ed estrai dalla zona", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "La perdita della mia gente a Shoreline è certamente un evento molto spiacevole, ma una nuova fonte di medicinali è più importante. Abbiamo solo bisogno di un approccio differente su questo caso. Il mio assistente è riuscito a corrompere un abitante a Shoreline per parlarci di Sanitar, il medico che stiamo cercando. Ha poche guardie del corpo, pochi posti a Shoreline, ma la cosa strana è che esegue interventi chirurgici proprio per strada, spesso nasconde i suoi strumenti vicino a posti del genere, in edifici vicini. Dammi questi strumenti. Sanitar sarà più collaborativo se realizzerà che siamo in grado di fermare il suo commercio in qualsiasi momento togliendogli il controllo del territorio.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Hai portato gli attrezzi? Mettili in quella cassa, avrò bisogno di pulirli per bene, non è chiaro dove sono stati prima. Puoi chiaramente vedere da solo in che condizioni versano, tutti è coperti di sangue, chiaramente condizioni insalubri. Beh, questo è compito mio ora. Restituirò a Sanitar i suoi attrezzi insieme alla lettera attraverso quel residente che abbiamo corrotto, così che capisca cosa vogliamo da lui.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Cerca a Shoreline e ottieni il kit chirurgico di Sanitar marcato con un simbolo blu", "5edabb950c502106f869bc04": "Consegna il kit chirurgico di Sanitar", "5edabbff0880da21347b382b": "Ottieni l'oftalmoscopio di Sanitar a Shoreline", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Ehi tu, Tipo tosto! Vieni qui, Ho un lavoro per te. Ho sentito che Prapor ti ha mandato a recuperare una scorta di droghe da un tizio di nome Sanitar. Non fare quella faccia! Non mi interessano quei farmaci, lascia che Prapor li prenda e se li metta su per il culo, tu hai già ricevuto profitti da lui comunque, vero? Devi solo mettere queste piccole cose nei contenitori che sono nel nascondiglio di Sanitar. Prapor non verrà a sapere nulla, è un lavoro di due minuti, ma il profitto è buono. Basta farlo in fretta, prima che spostino quei contenitori.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Ottimo, anzi benissimo! Finalmente il nascondiglio di Prapor è venuto fuori, con molta probabilità ci saranno montagne di merci da prelevare. Armi, munizioni, cibo e droghe. Porca puttana che spettacolo! Tu va pure, questa volta ci penseremo noi. Senza offesa e grazie ancora.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Sopravvivi ed estrai dalla zona", "5f071a9727cec53d5d24fe3b": "Metti il marcatore MS2000 sul contenitore medico al Centro Benessere su Shoreline", "5f071ae396d1ae55e476abc4": "Metti il marcatore MS2000 sul contenitore medico dei cottage a Shoreline", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Giovanotto, aspetta. sapevo che Jaeger ti avrebbe chiesto di uccidere Sanitar, ma non devi farlo. Capisco il punto di vista di Jaeger, che Sanitar è solo una specie di mostro in carne ed ossa, ma non lo è. Sono sicuro che Sanitar sta solo cercando di aiutare la gente del posto. Date le circostanze attuali, esegue interventi molto complessi e non è sorprendente che spesso finiscano male. È un medico con conoscenze preziose che possono salvare molte altre vite. Un medico con accesso a un magazzino di medicinali che sono estremamente importanti per noi. Inoltre ha già avviato negoziati con me e presto inizierà a collaborare. Ma per questo, ho bisogno di qualcosa che gli interessi e penso di sapere cosa lo farà, il Laboratorio. Chiavi d'accesso e campioni di stimolanti militari, penso che siano la base su cui conduce i suoi esperimenti. Puoi trovarli per me? È possibile ottenere le chiavi di accesso come vuoi, ma gli stimolanti devono essere sigillati, quindi è necessario che li trovi da solo.", "5edac34d0bb72a50635c2bfa failMessageText": "È un peccato che tu abbia ascoltato questo Jaeger invece della voce della ragione. Sanitar con le sue conoscenze e le medicine avrebbe potuto aiutarci in molti modi. Non era un santo, ma sicuramente tutti hanno la possibilità di espiare i loro peccati, ma tu hai tolto quella possibilità. Sono molto dispiaciuto con te.", "5edac34d0bb72a50635c2bfa successMessageText": "Grazie. Sapevo che avresti compreso quanto è importante Sanitar e i suoi... trattamente in questo momento. Ha già mostrato un forte interesse sulle tessere magnetiche e gli stimolanti, inoltre ha inviato la prima partita di merce. Ecco questo è quanto pattuito.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Non uccidere Sanitar", "5f04935cde3b9e0ecf03d864": "Consegna le tessere magnetiche", "5f04944b69ef785df740a8c9": "Consegna la tessera magnetica", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Buongiorno a te, mercenario. Siccome é un bel giorno. Avevo ragione, i nuovi stimolanti riconducono alla TerraGroup. Il Mechanic ha trovato un po' di informazioni su Sanitar. Non molte, ed é stato molto oneroso pe noi, ma meglio che niente. Sanitar ha lavorato per la Terragroup non come un dipendente normale. Laureato in medicina, specialista in malattie infettive, divorziato… Beh, queste sono tutte le informazioni che abbiamo su di lui. Dammi di più, amico mio, sono molto interessato da dove ha avuto accesso a tali risorse. Trova il suo posto di lavoro e scopri di più.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Abbiamo decodificato quella chiavetta. Ci sono un sacco di informazioni importanti, ma non posso dirti tutto. È riservato. Posso dirti di Sanitar però, è uno scienziato. Ha studiato e sviluppato farmaci e poi li ha testati sulle persone. Una ricerca molto… audace, o, come dicono a volte, non etica.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Consegna la chiavetta USB marchiata con nastro blu", "5eec9d054110547f1f545c99": "Trova la postazione di lavoro di Sanitar in Lab", "5eff5674befb6436ce3bbaf7": "Ottieni informazioni sul lavoro di Sanitar", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Saluti, soldato. Ecco l'affare, un uccellino mi ha detto che quegli ex militari che hanno rafforzato la sicurezza della base militare di Reserve, hanno scavato un passaggio per il bunker sotterraneo. Naturalmente, non l'hanno fatto con le proprie mani, ma hanno costretto gli Scav a fare il lavoro al posto loro e molto probabilmente nessuno di quei poveri bastardi ce l'ha fatta. Comunque, non ho idea di che tipo di bunker sia. Ho ricavato qualche informazione e sembra che potrebbe essere il bunker di comando. Ma non sono sicuro che sia proprio quel bunker, o potrebbe essere un rifugio antiatomico per il personale della base. Non c'è motivo di mandare un gruppo di recupero solo per farli morire da quei raider. Controlla quei sotterranei e fammi sapere se vale la pena inviare un gruppo lì. La paga è buona. Ci stai?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "Quindi mi stai dicendo che è un rifugio con un centro di comando? Le voci non mentono Mmm... Dannazione! Manderò i miei uomini oggi stesso, per dare un occhio al posto. Potrebbe esserci rimasta roba di valore lì dentro! Ecco prendi la tua ricompensa. Come promesso.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Sopravvivi ed estrai dalla zona", "5ee8eea538ca5b3b4f3c4647": "Trova il bunker sotterraneo", "5ee8eecc0b4ef7326256c660": "Localizza la sala di controllo nel bunker sotterraneo", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Ehi, mercenario, sei arrivato giusto in tempo, sei esattamente chi mi serve. Ricordi quel cazzo di bunker di comando che hai trovato sotto la base di Reserve? Per farla breve, i miei ragazzi ci sono andati e si è rivelato un brutto posto. È costruito con un alto livello di protezione, filtri, generatori, tutte le entrate sono bloccate da serrature ermetiche estremamente solide, è praticamente una fortezza sotterranea. Ma i raiders hanno aperto quella cazzo di cosa scavando come zecche dell'Alabama. Così i miei uomini si sono trovati in un brutto guaio, meno della metà è riuscita ad uscire da lì. Ma sai, adesso la cosa si fa ancora più intrigante porca puttana. I miei uomini non ci vogliono più tornare e non si sa perché, ma se tu riuscissi a trovare per loro una via sicura… Sei un ragazzo esperto, quindi ho bisogno che tu, silenziosamente, in punta di piedi, scopra dove sono tutti gli ingressi. I ragazzi hanno detto che ci sono porte ermetiche molto robuste. Quindi starà a te scoprire l'entrata.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Bentornato, sto ascoltando. Ah ah, quindi è così… La porta è proprio lì, giusto? Disegnala proprio sulla mia mappa, non preoccuparti. Così questo bunker collega quasi tutte le strutture della base? Cazzo, quanto é conveniente, potresti muoverti per metà della base sotto il naso di tutti. Ora è chiaro perché i raider sono lì, l'intera base è sotto controllo da lì. Grazie, guerriero! Ecco la tua ricompensa.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Sopravvivi ed estrai dalla zona", "5ee8ec5ed72d953f5d2aabd1": "Individua la porta ermetica per l'ospedale (Alfiere bianco)", "5ee8ecd75eb3205dae135d17": "Individua una delle due porte ermetiche che conducono all'edificio dell'accademia (Alfiere nero)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "Quindi è così, è proprio al primo piano? Quante volte la mia gente è stata lì e non ha trovato niente. Sei entrato nella stanza? Trovato qualcosa di interessante lì dentro? Beh, non importa, manderò i miei ragazzi a controllare comunque. Ecco la tua ricompensa, te la sei guadagnata. Grazie.", "5f0488c590eea473df674002": "Trova l'ufficio di Sanitar nel centro benessere", "5f04983ffbed7a08077b4367": "Sopravvivi ed estrai dalla zona", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Saluti, guerriero. Ho un lavoro per te. Per farla breve, ho perso il contatto con uno dei miei gruppi, ed è stato un po' di tempo fa. Quando é successo il casino, li ho mandati a Woods a prendere un carico. Temo che abbiano subito un'imboscata, l'ultima volta che sono passato hanno detto che gli USEC si stavano avvicinando dalle colline. Indaga, controlla se qualcuno è sopravvissuto. Il loro convoglio aveva un BRDM, un furgone Bukhanka, e un camion di qualche tipo, non ricordo esattamente che tipo. Penso che anche gli USEC si siano sistemati lì vicino, quindi stai attento. Trova il mio convoglio e il campo degli USEC, se è davvero lì. Congedato.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Quindi i miei ragazzi non ce l'hanno fatta e i convogli sono stati saccheggiati... In più dici un campo USEC nelle vicinanze? Che fregatura., la merce era molto importante. Beh, hai fatto la tua parte nell'accordo, quindi ecco la tua ricompensa. Puoi scomparire adesso.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Trova il convoglio scomparso di Prapor a Woods", "5fd9fad9c1ce6b1a3b486d05": "Localizza il campo temporaneo USEC a Woods", "5fd9fad9c1ce6b1a3b486d0d": "Sopravvivi ed estrai dalla zona", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "Anche l'aria ha tremato, dopo lo scontro a fuoco che c'è stato a Woods. La feccia ha avuto ciò che si meritava e tutto grazie a te. Ecco la ricompensa appropriata per tale impresa. Non essere timido puoi anche comprare i nuovi fucili.", "600303250b79c6604058ce30": "Individua ed elimina Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Trova e ispeziona il secondo LAV III a Reserve", "608925d455f4ac386d7e7fc4": "Marchia il primo LAV III", "608930aa1124f748c94b801e": "Trova e ispeziona il carro armato T-90 a Reserve", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Spettacolo, spettacolo, spettacolare! Prendi i miei soldi! Unica cosa, non proferire parola alcuna di questo nostro accordo.", "60929ad46342771d851b827a": "Ottieni il pacco contenente il Pannello di Controllo di Comando T-90M a Reserve", "60929afc35915c62b44fd05c": "Consegna il pacco", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Ottieni i documenti Militari #3 negli uffici bunker di comando su Reserve", "60ae0f0586046842a754e21e": "Consegna il secondo documento", "60ae0f17b809a4748759078c": "Consegna il terzo documento", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Ottimo lavoro là fuori. Spero proprio che si siano finalmente resi conto di quello che stava accadendo, e che non uccidano ancora la mia gente in quel modo. Ecco la tua ricompensa.", "608bffeee0cc9c2d4d2ccb29": "Elimina i Raider nel bunker di comando a Reserve", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Consegna la prima cartella", "60ae12ffb809a474875907aa": "Ottieni cartella clinica #2 a Reserve", "60ae134cabb9675f0062cf6e": "Consegna la seconda cartella", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "Quindi è così che è! Ottimo. Grazie, Mi metterò a studiarli a fondo più tardi. Ecco la tua ricompensa, come promesso.", "6092942fb0f07c6ea1246e3a": "Ottieni il sistema di navigazione integrato MBT a Reserve", "6092947635915c62b44fd05b": "Consegna il sistema di navigazione integrato", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "Quindi la via d'uscita funziona? Exccellente. Sto ancora preparando la tua ricompensa, nel mentre raccontami del meccanismo di apertura di quel bunker.", "608a94101a66564e74191fc3": "Trova l'uscita di sicurezza inattiva a Reserve", "608a94ae1a66564e74191fc6": "Estrai da quell'uscita", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Spettacolo, i miei uomini sono tornati sani e salvi dal raid e senza un graffio. Ecco la tua ricompensa!", "608ab22755f4ac386d7e7fdc": "Elimina Scav presenti nel deposito sotterraneo a Reserve", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Controlla il secondo arsenale nelle caserme a nord a Reserve", "608bd2465e0ef91ab810f98a": "Controlla l'ufficio operativo nelle caserme ad ovest a Reserve", "608c187853b9dd01a116f480": "Sopravvivi ed estrai dalla zona", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Sopravvivi ed estrai dalla zona", "60a4dc7e4e734e57d07fb335": "Segnala il primo gruppo di serbatoi di carburante con un marcatore MS2000 a Reserve", "60b90232ec7c6f5eb510c195": "Segnala il secondo gruppo di serbatoi di carburante con un marcatore MS2000 a Reserve", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Già fatto? L'aria sembra avere già un'altro tipo di freschezza adesso. È stato un vero peccato non essere riusciti a fargli cambiare idea a quei bastardi.", "608a8356fa70fc097863b8f8": "Elimina Scav presenti nell'area delle caserme a Reserve", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Questa è un'ottima notizia. Il mondo sarà un posto migliore. Spero che comunque non ti abbia preso con la sua mazza vero?", "60c0d187938d68438757cda2": "Individua ed elimina Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Trova il cappello BOSS di Tagilla in raid", "60cfa5a85f9e6175514de2e3": "Consegna il berretto BOSS", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Elimina gli agenti PMC a Interchange", "60ec0b1871035f300c301acd": "Elimina gli agenti PMC a The Lab", "60ec2b04bc9a8b34cd453b81": "Non devi morire o lasciare il raid quando la missione è ancora attiva. (Stato: KIA, Azione Abbandonata, MIA, Corso all'uscita)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Elimina agenti PMC su Ground Zero", "65e19abadf39d26751b3bb1e": "Elimina agenti PMC su Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Elimina gli agenti PMC nella base Scav a Customs", "60ec1e72d7b7cb55e94c1764": "Elimina gli agenti PMC nella base Scav a Woods", "60ec2229fd1bf4491c4e4552": "Elimina gli agenti PMC presso il Centro Benessere su Shoreline", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Ecco, così va molto meglio. Grazie guerriero. I miei ragazzi dicono che adesso sembra essersi tutto calmato, quindi immagino che a quegli idioti gli sia arrivato il messaggio.", "60e8650e5d67b234af3d3926": "Elimina Scav con i colpi in testa", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Dannazione... Li hai fatti tutti da solo? Hai le palle questo è certo. C'è qualcosa che non va in quegli psicopatici, te lo dico io...", "60e82c12fd1bf4491c4e4547": "Trova i coltelli strani in raid", "60e82c5926b88043510e0ad7": "Consegna i coltelli", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Consegna il LEDX", "60f028ca86abc00cdc03ab89": "Trova il mucchio di medicine in raid", "60f028f85caf08029e0d6277": "Consegna il mucchio di medicine", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Trova le bottiglie di multivitaminici OLOLO in raid", "62a70168eb3cb46d9a0bba7a": "Consegna le multivitamine", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Meraviglioso, mercenario. Ora sarà molto più facile per la mia gente operare in quel luogo! Grazie per l'ottimo lavoro svolto", "60e745d6479eef59b01b0bdc": "Elimina i Raider a Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Ottimo, grande! I clienti ci hanno già ricomp... hem, grazie a noi e al successo della missione. Ottimo lavoro, mercenario.", "60e8174d0367e10a450f7818": "Consegna l'oggetto trovato in raid: Piastrina BEAR PMC (Livello 50+)", "60e81795479eef59b01b0bdf": "Consegna l'oggetto trovato in raid: Piastrina USEC PMC (Livello 50+)", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Trova i trasmettitori di segnale wireless militari COFDM in raid", "60e7449875131b4e61703b7e": "Consegna i processori programmabili", "60e744c9d1a062318d3d2262": "Consegna i trasmettitori di segnale", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Trova le chiavette USB militari in raid", "62a7019ea9a0ea77981b57da": "Consegna le chiavette USB", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Benissimo, sono tutti i risultati di cui avevo bisogno, consegnami pure il notebook. Grazie, mercenario.", "60e740b8b567ff641b129573": "Elimina gli agenti PMC da almeno 100 metri di distanza", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Ottimo, grazie mille amico. Il cliente mi ha appena confermato che hanno ricevuto il carico. Non penso che sarà l'ultimo ordine che mi faranno, quindi tieniti pronto per altri eventuali incarichi.", "60e84ba726b88043510e0ad8": "Nascondi un mirino Trijicon REAP-IR sotto la base della gru gialla nel cantiere di Customs", "60e85b2a26b88043510e0ada": "Nascondi un cannocchiale Trijicon REAP-IR dietro i contenitori della spazzatura alla \"nuova\" stazione di servizio a Customs ", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Rispetto fratello, mi hai aiutato alla grande! Se vedi qualche tizio pericoloso agli Ultra fammelo sapere. Ci sta che io debba aver bisogno di te ancora per affrontarne altri.", "60e73ee8b567ff641b129570": "Elimina gli agenti PMC all'interno del centro commerciale ULTRA a Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Consegna il whiskey", "60f028268b669d08a35bfad8": "Trova l'acqua purificata in raid", "60f0284e8b669d08a35bfada": "Consegna la superwater", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Trova bottiglie di birra leggera Pevko in raid", "62a70110eb3cb46d9a0bba78": "Consegna la birra", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Individua ed elimina Shturman", "60e7261eb567ff641b129557": "Individua ed elimina Glukhar", "60e72629465ea8368012cc47": "Individua ed elimina Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Eccoti qua saetta. Hai dato una grandissima soddisfazione a questo vecchio uomo, e spero che ne abbia tratto le tue conclusioni. Ricorda che sei allo stesso tempo l'arma e il monolite, non tutta la quantità di acciaio che indossi.", "60e729cf5698ee7b0505743c": "Elimina gli agenti PMC operativi senza alcuna armatura o elmetto a Woods", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Decisione coraggiosa, mercenario.", "60effdac12fec20321367038": "Consegna contenitore di sicurezza Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Ascolta, fratello, puoi aiutarmi a trovare informazioni adeguate su un ragazzo? Ha già lasciato la città. Perché non riesco a trovarlo da solo? Perché il suo fottuto nome è Ivan Ivanov. Seriamente, non sto scherzando. Ce ne sono duecentomila in tutto il paese con quel nome. Se riuscissimo a trovare il suo precedente indirizzo a Tarkov, potremmo riuscire a cercarlo nel database. Fammi vedere cosa riesco a trovare su di lui. Penso che gestisse un bar, giusto. Non conosco il nome del bar però... Ascolta, non so come farai a sapere qual'era il suo bar. Oh, questo mi ricorda che gli piaceva il balletto. Non sto scherzando. Andava al Mariinsky ogni stagione. Ho anche provato a ospitare qualcosa nel nostro teatro locale, ma la gente non andava matta per le ragazze in tutù. Più specifico? Fratello, sono già stato fottutamente specifico! Io credo in te, usa il tuo intuito.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Hai trovato sia il bar che l'indirizzo del tizio? Ecco, scrivimelo. Sei meglio di quei sensitivi in ​​TV che cercano persone scomparse. Vuoi fare il detective quando tutto questo sarà finito, fratello? Ti metterò un cappello Poirot, te lo prometto.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Individua l'appartamento del maestro di ballo a Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Sopravvivi ed estrai dalla zona", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Vieni qui, mio ​​caro impiegato. Tutto bene in città? Alcune delle mie squadre sono sparite. All'inizio ho pensato, perché cazzo qualcuno dovrebbe essere così presuntuoso, cercando di chiudere la mia attività? A meno che non mi stiano prendendo in giro o qualcosa del genere. All'inizio ho pensato che fosse quel teppista di Lighthouse. Ma poi ho ricevuto un messaggio da Seva Shket. Ha scritto che erano tenuti in una prigione privata. Ne hai sentito parlare? È nascosta da qualche parte nei vecchi condomini. Quelli con gli abiti scaricherebbero lì i loro rivali e chiunque sia più facile da tenere rinchiuso che da lasciare libero. Li ucciderei se fosse un problema del genere, onestamente. Ma sembra che qualcuno preferirebbe tenerli in galera piuttosto che far scoppiare loro le fiche infastidendoli... Ecco l'accordo: Shket è stato l'unico del gruppo a scappare, ma ora è in fuga, non ci ha più contattati da quando il messaggio. Non ci ha nemmeno detto dove trovare i ragazzi, questo stronzo con la faccia da topo. I ragazzi stessi sono da biasimare per essere stati beccati come delle puttane, e io avrei semplicemente detto loro di andarsene a fanculo per un simile pasticcio. Ma il fatto che qualcuno stia cercando di fottermi è oltraggioso. Va bene, basta con queste stronzate. Scopri dove tengono i miei ragazzi.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Cazzo. Perché qualcuno dovrebbe tenerli lì? Capirei se mi mandassero una lettera dicendo che avrebbero ucciso la mia gente se non avessi pagato, merda. Un serial killer o qualcosa del genere? Comunque, vieni tra un po', scoprirò cosa sta succedendo.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Sopravvivi ed estrai dalla zona", "63a7d767f32fa1316250c3da": "Individua il luogo in cui il gruppo scomparso era tenuto prigioniero a Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "È di nuovo la stessa storia, una nuova registrazione, ora con uno strano simbolo. Che diavolo sta succedendo? Le persone vengono sacrificate. A chi? Perché? Così tante domande, ma nessuna risposta. Continuo a pensare di aver visto il peggio del peggio, ma ogni volta vengo smentito. Abbiamo combattuto i saccheggiatori pensando solo al denaro. Anche assassini che vogliono solo sparare a innocenti. Ma almeno lì, capisco la motivazione, la bestia ha sconfitto l'umano nella loro anima. Ma con quale scopo le persone diventano così... Non riesco a capirlo. Allora, soldato, io li cercherò nel bosco, tu fai lo stesso in città. Da qualche parte deve esserci il loro nascondiglio. Cerca lo stesso simbolo, sono sicuro che lo rivedremo.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "L'hai trovato? Dove? C'era qualcuno lì? Cosa significa il simbolo? Ancora più domande...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Sopravvivi ed estrai dalla zona", "63a7d6d61f06d111271f5aeb": "Trova il punto d'incontro dei cultisti a Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Saluti! Bene, diamoci da fare, sei eccitato? Il compito è abbastanza specifico, dobbiamo testare il giocattolo russo per il combattimento ravvicinato, come se fosse un vero combattimento in ambiente urbano. Ho clienti che non credono nell'efficacia di questo giocattolo... Puoi fargli cambiare idea?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Bene? Funziona bene? Adatto per combattimenti ravvicinati in ambienti urbani?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Elimina gli agenti PMC usando un SR-2M con silenziatore e mirino KP-SR2 a Streets of Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Alcuni sono ancora intatti, eh. Beh, va bene, andremo a far loro una piccola visita. Il tuo premio.", "6572e876dc0d635f633a5718": "Individua il primo gruppo di bancomat in via Klimov a Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Esplora il negozio Sparja nell'hotel Pinewood", "6572e876dc0d635f633a571e": "Perlustra il negozio Goshan al Concordia", "6572e876dc0d635f633a5720": "Consegna la salsiccia di manzo Salty Dog trovata in raid", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Bancomat №11", "65733403eefc2c312a759df2": "Bancomat №12", "65733403eefc2c312a759df4": "Bancomat №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Bancomat №15", "65733403eefc2c312a759dfa": "Bancomat №16", "65801ad655315fdce2096bec": "Svela il segreto del successo della società", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "L'hai trovato? Bel lavoro, ora portalo qui! E prendi la tua ricompensa, te la meriti.", "6573397ef3f8344c4575cd88": "Individua il fondo immobiliare a Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Individua e ottieni il documento sulle transazioni immobiliari di Tarkov", "658167a0e53c40116f8632fa": "Consegna le informazioni ottenute", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, sì, ho già sentito le voci. Presto la gente metterà quei teppisti al muro. Hai fatto un ottimo lavoro. Ecco la tua ricompensa.", "65734c186dc1e402c80dc1a2": "Elimina qualsiasi bersaglio indossando un cappello Bomber e occhiali da sole RayBench Hipster Reserve a Streets of Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Nascondi un cappello Bomber nel negozio del barbiere a Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Nascondi gli occhiali da sole RayBench Hipster Reserve all'interno del negozio di barbiere a Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "E' nella fottuta palude? Questo spiega il maledetto prezzo. Costerebbe di più tirarlo fuori da lì e ripulirlo! Va bene, ecco, questo è per aiutarmi.", "65802b627b44fa5e1463889a": "Individua il SUV di Ragman a Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Sopravvivi ed estrai dalla zona", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Individua e ottieni il poster \"Bison VS Undertaker\" presso il campo USEC a Woods", "664bbb5f217c767c35ae3d51": "Individua e ottieni il poster \"Killa e Tagilla\" presso il campo USEC a Woods", "664bbb73c71d456fd03714ca": "Individua e ottieni il poster \"Soldi facili\" presso il campo USEC a Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Ottimo lavoro! Kaban e Kollontay stanno già scatenando una tempesta, alla ricerca del mandante dell'omicidio. Si riprenderanno e si renderanno conto di aver oltrepassato il limite. Ecco, questa è la tua ricompensa.", "660d5effb318c171fb1ca234": "Elimina le guardie di Kaban a Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Elimina le guardie di Kollontay a Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Vinci 6 partite su 10 in modalità classificata su Arena", "662bb24b3d34cd5e19206e63": "Condizione di fallimento: Perdi 5 partite", "6633a85e347a2a2b4051a26b": "Consegna di rubli dal saldo EFT", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Condizione di fallimento: Perdi 5 partite", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "Quindi hai visto un cadavere. L'hai perquisito? Hai controllato intorno? Ti sto solo facendo notare che sei cieco. Il campione, per quanto ne so, teneva un diario. Sì, come un adolescente, ma questo gioca a tuo favore.\n\nPerché non vai di nuovo lì e dai un'occhiata più da vicino? Nel diario ci devono essere altre informazioni su Ref, del marcio su di lui. Fallo se vuoi smettere di essere un agnello sacrificabile nell'Arena.\n\nE un'altra cosa: se mi porterai qualche informazione su Ref che sia degna del mio tempo, ti pagherò bene.", "66058ccf06ef1d50a60c1f48 failMessageText": "Vuoi stare sotto la gonna di Ref? Allora arrangiati.", "66058ccf06ef1d50a60c1f48 successMessageText": "Ben fatto. Sono contento che tu abbia preso il tuo destino per le palle.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Individua e ottieni le informazioni compromettenti su Ref.", "664fd7f0837ee02ad4c8e658": "Consegna le informazioni trovate", "66563f0a2684eee09e8dcd86": "Individua il nascondiglio del vecchio campione", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "Il telefono è un falso. Qualcuno voleva davvero che Skier e i suoi uomini si concentrassero su di esso. Sembra che il gioco abbia un nuovo giocatore. Indagheremo.", "660ab9c4fcef83ea40e29efe": "Consegna il telefono", "660ac159205fdc5a2afb1665": "Individua e ottieni il cellulare di The Unheard su Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Vendi qualsiasi arma a Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "Quindi è vuota all'interno. Questo è un bene: se non ci sono corpi, è probabile che i rifugiati siano vivi. Conoscete il principio di sovrapposizione, vero?\nBene, torniamo al punto. Ho dato un'occhiata alla chiavetta. C'era una password [bmV3ZGF3bi4u] con scritto \"importante\". Penso che tu possa capirlo.", "6616a9a14df4f14a474c92ba": "Individua e ottieni l'Hard Disk dentro cottage usato come nascondiglio su Lighthouse", "6616a9a98a97f72b921665f2": "Consegna l'Hard Disk", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Individua e ottieni l'Hard Disk dentro cottage usato come nascondiglio su Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "Quindi è vuota all'interno. Questo è un bene: se non ci sono corpi, è probabile che i rifugiati siano vivi. Conoscete il principio di sovrapposizione, vero?\nBene, torniamo al punto. Ho dato un'occhiata alla chiavetta. C'era una password [bmV3ZGF3bi4u] con scritto \"importante\". Penso che tu possa capirlo.", "6616a9fdfd94e03533038dab": "Individua e ottieni l'Hard Disk dentro cottage usato come nascondiglio su Lighthouse", "6616a9fdfd94e03533038dac": "Consegna l'Hard Disk", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Individua e ottieni l'Hard Disk dentro cottage usato come nascondiglio su Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Consegna i documenti", "6669769ff0cb253ff7649f27": "Trova porta piastre Crye Precision AVS (Tagilla Edition) in un raid", "666976ab1a6ef5fa7b813883": "Consegna i documenti", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Trova gilet tattico LBT-1961A Load Bearing (Edizione Goons) in un raid", "666977849154974010adb5ec": "Consegna i documenti", "666977bfe975ac480a8f914e": "Trova telaio Mystery Ranch NICE COMM 3 BVS (Coyote) in un raid", "666977ca5fa54985173f8e2c": "Consegna l'equipaggiamento", "666977f2dd6e511e9f33005a": "Trova porta piastre Crye Precision CPC (Edizione Goons) in un raid", "666978023255d2720cbdf76d": "Consegna l'equipaggiamento", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Ciao, bandito! Come va la vita? Un uccellino mi ha detto che c'è una rivista speciale nel centro commerciale Ultra a Interchange. Hanno scritto del nostro videogioco russo, riconosciuto in tutto il mondo! Credo che i ragazzi abbiano davvero trovato un'idea geniale!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Questa sì che è una vittoria! La rivista ha fatto centro! Sembra una vera e propria roba storica.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Individua e ottieni l'edizione speciale della rivista di giochi a Interchange", "667a95972740eaeca1ecda21": "Consegna l'oggetto trovato", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "Credo di iniziare a capire perché la gente guarda questi \"live stream\". Crea dipendenza!", "6667579086472aaf0bf7bef5": "Trasferisci disco rigido trapelato", "666757c530b9b77ff2d9ac58": "Trova un disco rigido trapelato in una casa sgangherata a Shoreline", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Installa una telecamera WI-FI sulla sporgenza della montagna a Woods", "667bf840981b1c594af358ce": "Installa una telecamera WI-FI presso la torre del molo a Shoreline", "667bf845dc371ee9869f185e": "Installa di una telecamera WI-FI nel corridoio dell'ufficio a Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Ben fatto! Dicono che anche il mondo esterno abbia scoperto il nostro piccolo trasloco, haha!", "667442da875be5fb415df535": "Nascondi una statuetta gallo dorato presso la telecamera WI-FI di Prapor a Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Nascondi una statuetta gallo dorato presso la Camera WI-FI di Prapor a Shoreline", "66828746efaecf435dde20ca": "Nascondi una statuetta gallo dorato presso la Camera WI-FI di Prapor a Factory", "66d080533a3c33d823a3477d": "Nascondi una statuetta gallo dorato presso la Camera WI-FI di Prapor a Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Ciao, amico. Ultimamente le cose sono state un po' movimentate per me. Da oggi aumenterò temporaneamente i prezzi dei miei prodotti e servizi finché non riuscirò a risolvere alcune questioni urgenti. Un mio amico mercenario sta mettendo insieme una squadra per fare irruzione nel laboratorio sotterraneo e ha bisogno di una potenza di fuoco affidabile. Puoi aiutarmi? Vedo che ne sai quanto me sugli AR, quindi ho pensato di affidare la cosa a te. Mi serve un M4A1 con un rinculo totale non superiore a 300 e un'ergonomia non inferiore a 70. Non è facile, lo so. Ora, assicurati di metterci sopra un EOTech XPS 3-0, dato che il cliente si rifiuta di usare qualsiasi altro mirino.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Molte grazie. Penso che questo mi terrà in carreggiata per un po' di tempo.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modifica un M4A1 in modo che sia conforme alle specifiche indicate.", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "Non hai perso nulla lungo il percorso, giusto? Bene, allora è il momento di mandare gli ingegneri a fare delle misurazioni, stiamo per scoprire cosa nascondono queste pareti della fabbrica. Grazie per il tuo aiuto, amico.", "66aa74571e5e199ecd094f1b": "Utilizza il transito da Customs a Factory (In un raid)", "66aa74571e5e199ecd094f1e": "Elimina gli scav a Factory (In un raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Individua e ottieni il pacchetto di strumenti di precisione nel laboratorio a Customs", "66ab97d56cb6e3bfd7c79fbc": "Nascondi il pacco nel magazzino del laboratorio a Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "Quindi l'hai trovata davvero. Eccellente! Com'è il passaggio, è sicuro? In stato di abbandono, avete detto? Beh, sembra che questa opportunità non sarà con noi a lungo. Invierò i miei uomini il prima possibile.", "66aba85403e0ee3101042878": "Individua il passaggio che conduce a The Lab a Strade di Tarkov (In un raid)", "66aba85403e0ee310104287a": "Utilizza la strada di passaggio da Streets of Tarkov a The Lab (In un raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Individua il passaggio che conduce a Streets of Tarkov da The Lab (In un raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Esplora la sala server a The Lab (In un raid)", "66b0910951c5294b9d213918": "Esplora la cupola di sicurezza a The Lab (In un raid)", "66b10eef0951e90ec383850b": "Esplora la sala di controllo a The Lab (In un raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "Il compratore mi ha detto che è tutto a posto. Ti sei guadagnato la tua ricompensa e puoi aspettarti che i miei uomini ti aiutino a percorrere i nuovi sentieri.", "66abb32aeb102b9bcd088d62": "Utilizzare il transito da Ground Zero a Strade di Tarkov", "66abb39bf1d97b9b55390a79": "Utilizzare il transito da Strade di Tarkov a Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Utilizzare il transito da Interchange a Customs", "66abb3ac416b26ade4a1446c": "Utilizzare il transito da Customs a Factory", "66abb3bf228ace5ca9f3d745": "Utilizzare il transito da Factory a Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Installa una telecamera WI-FI sull'orso seduto su un'auto in fiamme a Woods", "66debf2e1e254957b82711ff": "Installa una telecamera WI-FI sulla sedia capovolta a Shoreline", "66debf30802386a45d0adb60": "Installa una telecamera WI-FI nel bagno non così solitario a Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "Il soldato di ventura è venuto per il suo nuovo incarico! Si dice che Tarkov sia diventato ancora più pericoloso. Chi l'avrebbe mai detto, vero? Qualcuno ha cominciato a prendere di mira alcune zone con colpi di mortaio.\n\nFaresti meglio ad andare a vedere cosa sta succedendo. E sì, questo significa andare proprio nel mezzo di quelle aree colpite dai mortai. Sì. Va bene, quindi abbiamo notato i bombardamenti nella riserva naturale, nella base militare, nell'ufficio doganale e sulla costa. Allora vai via.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Vivo e vegeto, è fantastico. Quindi vediamo con cosa stiamo lavorando qui. Qualcuno ha rubato i mortai e ora stanno colpendo varie posizioni proprio prima che arrivino i rifornimenti.\n\nMolto sospettoso. Questi polverieri locali non avrebbero sicuramente potuto garantire le comunicazioni con il mondo esterno, vero? In ogni caso, per ora non possiamo fare altro che guardare.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visita un'area con colpi di mortaio attivi in qualsiasi luogo specificato (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Ok, ho saputo di un grosso casino. Potrebbe non essere colpa tua, ma non è questo il punto. Gli stronzi dell'impianto di trattamento dell'acqua hanno intercettato un mucchio di queste casse con dentro attrezzature EW portatili.\n\nOvviamente sono inutili a questo punto, ma non permetterò loro di rubare proprietà del governo in questo modo.\n\nPer un guerriero come te, il compito è fattibile. Vai al WTP e procurami quegli aggeggi EW. E sì, quei topi devono essere abbattuti.\n\nGli EW stessi probabilmente sono già stati consegnati ai loro comandanti, quindi avrai la garanzia di ricevere questo equipaggiamento da loro. Supponendo che tu non muoia, suppongo.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendido, sono arrivati ​​i nuovi giocattoli. I miei ragazzi li adoreranno. Al giorno d'oggi devi essere pronto a tutto e tale protezione non è sicuramente superflua.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Consegna l'oggetto trovato in raid: Dispositivo portatile di guerra elettronica GARY ZONT", "66e19f359fee1e54e0e01f7c": "Elimina Rogue", "66e19f7d534a8ff2bb7e9f89": "Individua e neutralizza Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "Tutta questa faccenda del mercante mi sta andando piuttosto bene, non credi? Sai, se non fossi lucido, sarei morto in questo inferno molto tempo fa. Comunque mi occuperò delle segnalazioni più tardi, non la prima volta.\n\nIn questo momento devo equipaggiare i ragazzi distaccati fuori dal mio territorio. Porta loro la nuova attrezzatura che abbiamo trovato. Te ne darò una parte, ma il resto te lo devi procurare da solo: sai già dove cercare. No, non li incontrerai faccia a faccia. Basta riporre gli oggetti nel punto designato.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Bene, ora che sono al sicuro dalle minacce aeree, la loro missione di combattimento sarà portata a termine senza problemi.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Nascondi il dispositivo di guerra elettronica portatile GARY ZONT all'interno della chiesa sommersa a Woods", "66e071c8a9e80c3f25bb1bad": "Nascondi i pezzi di ricambio della stazione radar all'interno del vecchio hangar della segheria a Woods", "66e0735089627301d900ef1d": "Nascondi il dispositivo portatile di guerra elettronica GARY ZONT all'interno della torre della stazione meteorologica di Shoreline.", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "Era ora che passassi di qui. Hai notato anche tu che quei diavoli che escono da ogni dove di notte, vero? Si stanno armando molto meglio, eh. È come se qualcuno lavorasse davvero con loro. Dall'alto, capisci?\n\nDovremmo indagare sulle intenzioni di quei bastardi. Inoltre, tanto meglio se riuscirai a ridurre il loro numero. Ma fai attenzione.\n\nTra gli Scav gira voce che di notte ci si possa imbattere in una bestia invincibile. Si dice che cacci e divori gli umani.\n\nRicordo una storia orientale su questo demone, il cui soprannome era... \"L'Oni\". Non avrei mai tirato fuori queste storie prima d'ora. Ma ora c'è qualcosa che bolle in pentola, e i pensieri oscuri continuano a insinuarsi nella mia testa.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "Allora, cos'hai trovato? Non sono stato con le mani in mano mentre eri via, ho incontrato Partisan. Dice che stanno preparando un rituale speciale, ed è per questo che stanno uscendo dalle loro tane. Parlano tutti di una specie di \"Notte del Culto\".\n\nNon so di cosa si tratti, ma di sicuro sono cattive notizie per Tarkov. E qualcosa mi dice che c'è qualcuno che sta orchestrando il tutto. Quel demone non è apparso dalle nostre parti senza motivo.\n\nAnch'io ho visto qualcosa ieri sera. Il suo volto era rosso, come se stesse bruciando. Ho preso la pistola e ho mirato, ma appena ho sbattuto le palpebre, non c'era più nessuno. Allucinazioni da vecchio, forse...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminare gli incappucciati notturni", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "D'accordo, ho delle buone notizie per te.\nIl Partigiano è riuscito a origliare la conversazione dei cultisti prima che il filo spinato li uccidesse.\n\nIl Precursore, come lo chiamano loro, è a capo di questa parata del terrore. Deve aver promesso loro che se avessero fatto ciò che gli aveva detto, avrebbero ricevuto il nuovo Dono dall'Inascoltato. Ma che diavolo? Non ho idea di cosa significhi. Ma sono certo che se gli permettete di eseguire questo dannato rituale, ci saranno innumerevoli vittime tra la gente perbene. La gente ha iniziato a fuggire dalle strade, si dice che un fantasma sia a caccia di anime.\n\nNon conosciamo i dettagli di questo mistero, ma è sicuramente collegato all'intera faccenda! E sappiamo chi c'è dietro. Dobbiamo eliminare il Precursore, nel momento in cui troverai strani e inquietanti oggetti addosso o nelle vicinanze, cerca di seppellirli in profondità. Forse questo terrà in riga i cultisti.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "Ci si è occupato dei bastardi? Tanto quei maledetti appartengono all'inferno. Speriamo che gli altri cultisti si ritirino e tornino alle loro tane.\n\nLa cosa buffa è che anche Zryachiy è saprito ultimamente. Mi chiedo se sia sceso dal Faro per completare il rituale e far uscire quei demoni alla luce del sole.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Individuare e neutralizzare l'Oni", "66e3eb4c4a5359f2db0be81a": "Individuare e neutralizzare il Precursore", "66e3eb65e385f94b38f061d7": "Individuare e neutralizzare il Fantasma", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "Credo che tu possa capire cosa sta succedendo ora che sei tornato. Non solo quei bruti non si sono dispersi, ma hanno iniziato a organizzare i loro preparativi con ancora più vigore!\n\nHo appena saputo che il povero Ryzhy è stato catturato da Zryachiy in persona. Dicono che sarà il sacrificio principale. Questo significa che il tempo a nostra disposizione sta per scadere!\n\nPartisan è ancora nella foresta a caccia di cultisti, ma nemmeno lui può farcela da solo. Ora tocca a noi ripulire la feccia con le nostre mani. Se non c'è nessuno che porta a termine il rituale, forse sarà finita.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Fermo, verme! Oh, sei tu. Stanno iniziando a farsi vedere anche dalle mie parti. Ho avuto qualche visita prima di te.\n\nDici di aver ripulito Tarkov dai cultisti? Beh, con perdite del genere, non saranno in grado di fare nulla a breve. Si dimenticheranno del Precursore. Tuttavia, non so se riuscirò a dormire tranquillo per un po'.\n\nGrazie per l'aiuto. Non ce l'avrei fatta senza di te.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminare gli incappucciati notturni a Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminare gli incappucciati notturni a Lighthouse", "66e3ecad063ef452798d369d": "Eliminare gli incappucciati notturni a Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Ok, vedo il collegamento, quindi hai fatto tutto bene... Oh, sono a prova di DDoS. Ma se ci accedessimo da qui, eh stronzi? E' qui che entra in gioco il signor Kerman.\n\nSei ancora qui? Mi dispiace, non ho più tempo per chiacchierare. Kerman ha appena inviato i suoi dati e ha detto che non lascerà che i progetti della TerraGroup rovinino la nostra città.\n\nMentre lui abbatte la sicurezza, io devo formattare i dischi per dare alla Therapist tutto quello che possiamo scoprire.", "670411a2cded018840f5b599": "Individuare il computer presso l'ufficio della TerraGroup presso Cardinal a Streets of Tarkov.", "670411d819aafd130ebc4bb8": "Installare l'unità flash sul computer per scaricare i file.", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "Come ti permetti? Il mio collega ha dato un contributo fondamentale per salvare la città e non meritava questo destino! Non so come posso fidarmi di te dopo queste azioni oltraggiose.", "67040cae4ac6d9c18c0ade2c successMessageText": "Hai fatto la scelta giusta. So che Jaeger ha cercato di ingannarti per fare del male al mio collega.\n\nMa ti assicuro che questa versione del farmaco era il modo più sicuro per ripulire la città dal virus...", "6706a4ddec997e861c3f6f04": "Diffondere il vaccino a Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Diffondere il vaccino a Shoreline", "6706a51fa60dfe2fb85275ed": "Diffondere il vaccino a Woods", "6706a52083168d9e8ed303d8": "Diffondere il vaccino a Customs", "6706a61a5fb5eedf15ec6234": "Diffondere il vaccino a Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Diffondere il vaccino a The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Aspetta! Non sapevi anche che ha sviluppato questa \"cura\" con Sanitar?\n\nScommetto che ne hanno fatto una versione semplificata per poter uccidere tutti i malati senza battere ciglio, vero? Non permetterò che questo accada.\n\nConosco la sua natura... Sicuramente ha sviluppato una versione meno letale del farmaco per uso personale o per la vendita.\n\nMa se ci ha lavorato con questo delinquente, significa che è lui a tenerla! Punisci il bastardo e prendi la vera versione del vaccino.\n\nSe non proprio il vaccino, almeno trova la ricetta... Probabilmente da lì capiremo cosa fare!", "67040ccdcc1f3752720376ef failMessageText": "Quanto devi essere stupido per crederci, anche dopo che ho letteralmente spifferato la verità? Il sangue di coloro che moriranno a causa di questo vaccino sarà sulle tue mani, ragazzo.\n\nQuando verranno da te in sogno, capirai cosa hai fatto.", "67040ccdcc1f3752720376ef successMessageText": "Tutto fatto, vero? Abbiamo davvero sbattuto il naso a questi \"uomini d'affari\"!\n\nQuesto dovrebbe ricordare alla megera che ha prestato il giuramento di Ippocrate.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Individuare e ottenere il vero vaccino nell'ufficio di Sanitar a Shoreline.", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Individuare e neutralizzare Sanitar", "6719135cfab45272c32a8c01": "Consegnare l'oggetto trovato", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Beh, forse ora è finalmente finita! L'unica cosa che conta è che hai scelto la parte giusta, ragazzo, e che la tua coscienza è pulita.\n\nLa cura dovrebbe sicuramente funzionare se l'hanno fatta da soli, dobbiamo solo aspettare ancora un po'.", "6707e6614e617ec94f0e63e0": "Diffondere il vero vaccino a Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Diffondere il vero vaccino a Shoreline", "6707e6614e617ec94f0e63e3": "Diffondere il vero vaccino a Woods", "6707e6614e617ec94f0e63e4": "Diffondere il vero vaccino a Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Ho Sentito la Voce dell'Oscurità", "6514134eec10ff011f17cc26 description": "Elimina Knight 15 volte mentre giochi come PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Quello si è che un Bel Colpo", "651413e9c31fcb0e163577c9 description": "Elimina Zryachiy 15 volte mentre giochi come PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/jp.json b/Libraries/SptAssets/Assets/database/locales/global/jp.json index 40824b37..f6184992 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/jp.json +++ b/Libraries/SptAssets/Assets/database/locales/global/jp.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Factory の 休憩所 (Gate 3 付近、2F) に荷物を隠す", "5968929e86f7740d121082d3": "Customs の物流倉庫内にある Tarcone 管理事務室 で 機密文書の入ったケース を手に入れる", "5977784486f774285402cf52": "Factory から生還する", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "本当にビックリだ!まるで核のスーツケースみたいだな!彼がこれを手に入れるために人手を惜しまなかったのも無理はないな。", "5968981986f7740d1648df42": "Customs にある寮で 貴重な荷物 を手に入れる", "5968988286f7740d14064724": "貴重な荷物 を渡す", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Customs 寮の214号室に入る", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "心から感謝するわ。このたった数本が今の私たちにとっては、どれだけ大きな意味を持つか……それでも、まだまだ不足しているけれど、それはあなたに言うべきことじゃないわよね。普通なら自分のために取っておくものを、あなたは必要としている人のために譲ってくれたのだから。ありがとう。", "5969f98286f774576d4c9542": "レイド中に モルヒネのオートインジェクター を探す", "5969f99286f77456630ea442": "オートインジェクター を渡す", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "レイド中に スパークプラグ を見つける", "596b470c86f77457ca18618a": "カーバッテリー を渡す", "596b472686f77457c7006f8a": "スパークプラグ を渡す", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "ヤツは \"それには何も入っていない\" と抜かしやがった!そうかもしれないが、確かめる必要がある。いずれにせよ、これがお前の報酬だ。", "5979ee2986f7743ec214c7a4": "レイド中に USB フラッシュドライブ を見つける", "5979ee4586f7743ec214c7a5": "USB フラッシュドライブ を渡す", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "3台目の タンクローリー に MS2000 マーカー を取り付ける", "59c128f386f774189b3c84bb": "4台目の タンクローリー に MS2000 マーカー を取り付ける", "5c92184386f7746afa2e7840": "Customs から生還する", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Great! Here, take this as your reward. In the meantime, I'll hand this flash drive over to my specialists to decrypt it.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "SV-98 スナイパーライフル をボートに隠す", "5a27d85286f77448d82084e7": "マルチツール をボートに隠す", "5a3ba11786f7742c9d4f5d29": "Shorelineの防波堤の横に隠されたボートの位置を特定する", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "この地域から生還する", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "ありがとう。これからはいつでも頼ってちょうだい。", "5a56489d86f7740cfe70eba2": "ドル紙幣 で支払う", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "できたのかい?ありがとう、隅に置いておいてくれるかな。どうだい、美しいだろう?……とにかく、今ちょっと忙しくてね。手が離せないんだ。", "5accd5e386f77463027e9397": "MP-133 を指定された仕様に改造する", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "よし…これは、有能な人が使えば政府を転覆させることも出来る武器だね。後で僕が確認するから、隅に置いておいて。", "5accd9b686f774112d7173d1": "AKS-74U を指定された仕様に改造する", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "CQB に便利なだけじゃなくて静か…良い改造だね。客は満足してくれるだろうね。", "5accde3686f7740cea1b7ec2": "MP5 を指定された仕様に改造する", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "ありがとう。机の上に置いといてくれ。僕から Di… おっと、スナイパーさんに渡しておくよ。", "5acce08b86f7745f8521fa64": "DVL-10 を指定された仕様に改造する", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "いいね。この銃から逃れられる事はできないね。7.62 口径は僕の好物だ。ありがとう。次の仕事はまた明日だね。", "5acce11786f77411ed6fa6eb": "R11 RSASS を指定された仕様に改造する", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "さて、どんな構成にしたのか見せてもらおうか。いいね、これは民主主義の武器だ…ありがとう。", "5accdfdb86f77412265cbfc9": "M4A1 を指定された仕様に改造する", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Factory でツールセットを使用して一つ目の制御盤を修理する", "5ac7a51a86f774738a4ffc96": "Factory でツールセットを使用して二つ目の制御盤を修理する", "5ac7a5d586f774383111ee63": "Factory から生還する", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "T型プラグ を渡す", "5ac5061386f77417e429ce7a": "レイド中に プリント基板 を見つける", "5ac5062586f774587c327395": "プリント基板 を渡す", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Customs で 押収品倉庫 を見つける", "5ac6248586f77416781dd3a3": "グラフィックボードの入った荷物 を手に入れる", "5ac624b286f77416781dd3ac": "荷物 を渡す", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "グラフィックボード を渡す", "5ac5083d86f7740be2744eed": "レイド中に CPU ファン を見つける", "5ac5084d86f7740bde1b0031": "CPU ファン を渡す", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "1つめの信号発信源を見つける", "5ac5e13586f7746074388f93": "2つめの信号発信源を見つける", "5ac5e18c86f7743ebd6c9575": "Shoreline から生還する", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "充電式バッテリー を渡す", "5ac5e98886f77479bc6ca201": "プリント基板 を渡す", "5ac5ea0586f774609f36280c": "壊れた GPhone を渡す", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "レイド中に CPU を見つける", "5cb6f88d86f7747d215f09c1": "レイド中に 充電式バッテリー を見つける", "5cb6f8de86f7740e9d452685": "レイド中に プリント基板 を見つける", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "円周率の小数点第七位の数字は?IIO?分かった、時が来たら連絡するよ。", "5ac5eb3286f7746e7a509a09": "注意力 のスキルレベルが必要な値に達する", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "ストライク シガレット を渡す", "5ac5ef9886f7746e7a509a2d": "レイド中に ウィルストン シガレット を見つける", "5ac5eff886f7740f43322559": "ウィルストン シガレット を渡す", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Factory で2つ目の脱出地点を探す", "5ac61adf86f774741c1bf096": "Factory で3つ目の脱出地点を探す", "5ac61b1486f7743a8f30fc84": "Factory から生還する", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Factory で4つ目の脱出地点を探す", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "僕は本心を隠すのが嫌いなんだ。誰もが自分を偽って生きていたりする…生き延びるためだったり、恐怖心からだったりしてね。実を言うと、僕はそんなにおしゃべりが好きなわけじゃない。知らない人に対しては特にそうさ。だけど君はいいヤツだ。僕みたいな人間から信頼を得ることができるなら、君はどんな人とでも折り合いが付けられると思うよ。結局は個人的な信頼関係だけが、ここで生き残るのに役立つんだ。今パヴェル イェゴロヴィッチと交渉をしていてね。彼が君を信頼するなら、もしかしたらガンパウダーの供給を確保できるかもしれない。", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich はここに残った数少ない一人だ。彼が軍人だからなのか、去るための時間が無かったからなのかは分からない。それと同時に、彼は怪しいビジネスを持っているような気もする。", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Praporからの信頼度をレベル3にする", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "良い銃だね。手堅い構成だ。新しい注文は来てないけど、明日も来たっていいよ。", "5ae34b8b86f7741e5b1e5d48": "Remington Model 870 を指定された仕様に改造する", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "見事に完成された便利な銃だね。ありがとう。客に武器の用意ができたことを知らせておこう。 ", "5ae3550b86f7741cf44fc799": "AKM を指定された仕様に改造する", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "よし、Zenit の AK は完成した?いいね。箱の上に置いといてくれると助かるよ。君が良ければ、明日も注文を受けに来てくれ。", "5ae3570b86f7746efa6b4494": "AKS-74N を指定された仕様に改造する", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "ニューラルネットワークを学習させる方法をひらめいた気がするよ!ああそうだ、AK だったね。ありがとう。どこか隅に置いといてくれ。後で見よう。", "5ae445f386f7744e87761331": "AK-105 を指定された仕様に改造する", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "ライフルは完成した?いいね、渡してくれ。興味深い鍵を手に入れたんだ、君の役に立つかもしれない。Ultra にある銃砲店を開けられるんだ。KIBA ストアのことだね。素敵な武器の部品があるから、今後の作業に役立つはずだ。", "5ae4479686f7744f6c79b7b3": "AS VAL を指定された仕様に改造する", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "これでもう仲間だな。それじゃあ、ビジネスの話をしようか。", "5ae44c6886f7744f1a7eb2b8": "Ragmanからの信頼度をレベル2にする", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Ragman からの信頼度をレベル2にする", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "スナイパーのような狙撃だな、最高だよ。俺の部下が Interchage が Scav の死体で溢れているし Ultra が静かになったと言ってたよ。これがお前の報酬だ。", "5ae44ecd86f77414a13c970e": "Interchage で Scav を殺す", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Interchange で DINO CLOTHES ストア を探す", "5ae4511d86f7740ffc31ccb5": "Interchange で TOP BRAND ストア を探す", "5ae4514986f7740e915d218c": "Interchange から生還する", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Interchange で 2台目の燃料を積んだタンクローリー を見つけて MS2000 マーカー を取り付ける", "5ae452fa86f774336a39758e": "Interchange で 3台目の燃料を積んだタンクローリー を見つけて MS2000 マーカー を取り付ける", "5ae4531986f774177033c3e6": "Interchange から生還する", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "彼らが言うように、オシャレは世界を救う。感謝するよ、本当に助かった。帽子は一日で売り切れるに違いない、絶対だ。ほらよ、これを報酬として受け取ってくれ。", "5ae4543686f7742dc043c903": "ウシャンカ を渡す", "5ae454a086f7742be909a81a": "カウボーイハット を渡す", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "レイド中に ウシャンカ を見つける", "5fd89799c54dc00f463272d3": "レイド中に カウボーイハット を見つける", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "OLI の在庫管理表 を渡す", "5ae9b3b186f7745bbc722762": "Interchange で IDEA の在庫管理表 を手に入れる", "5ae9b3c986f77432c81e2ce6": "IDEA の在庫管理表 を渡す", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Found the docs? Big thanks. Hand them over, let's see where our little cargo disappeared.", "5ae9b5bd86f774307c29df37": "Locate and obtain the OLI cargo route documents on Interchange", "5ae9b63286f774229110402d": "Hand over the documents", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Hand over the ski hat", "5ae455fb86f7744dd8242380": "Find a Pilgrim tourist backpack in raid", "5ae4562086f774498b05e0dc": "Hand over the backpack", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Hand over the armor", "5ae9b91386f77415a869b3f3": "Obtain BNTI Gzhel-K armor in 50-100% durability", "5ae9b93b86f7746e0026221a": "Hand over the armor", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Hand over the chest rigs", "5af079e486f77434693ad7f8": "Find BlackRock chest rigs in raid", "5af07a0286f7747dba10d8ac": "Hand over the chest rigs", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Hand over the first book", "5ae9c0e186f7746419683c5e": "Locate and obtain the second book of clothes design on Interchange", "5ae9c10686f774703201f146": "Hand over the second book", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Wow wow, easy there, I'm on your side, man! Sorry, I'm just fucking around. I see you have mastered your charisma, that's good. Let's talk about business then.", "5ae9c29386f77427153c7fb0": "Reach the required Charisma skill level", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Seems like it went without a hitch, thanks.", "5ae9c38e86f7743515398707": "Reach level 3 loyalty with Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Stash a Shemagh (Green) at the sawmill docks on Woods", "5ae9e2a286f7740de4152a0a": "Stash RayBench Hipster Reserve sunglasses at the sawmill docks on Woods", "5ae9e2e386f7740de4152a0d": "Stash Round frame sunglasses at the sawmill docks on Woods", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "You scared off some Scavs at Ultra once, remember, brother? Now people say it’s getting worse. Word is it’s crawling with all sorts of scum. Got a task for you: check out the situation on Interchange, make sure it's clear to walk around at least. Find safe paths or something. I really need it to go smoothly, okay?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "You're like some Invisible Man or a ghost or something. Hold on, lemme grab a map. So, the safest roads are here and here, right? Awesome, I'll let my guys know. Thank you, friend, really helped me out here.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Survive and extract from Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Now that’s a true djigit! I'll assemble my guys, they'll bring so much good stuff from Goshan! So, about your reward: check out the new stock of body armor, all for you.", "5ae9e55886f77445315f662a": "Obtain the Goshan cash register key", "5ae9e58886f77423572433f5": "Hand over the key", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "盲目になりたくないなら、フラッシュライトをつけるべきじゃないね!とにかく、よくやった。そこの箱の上に置いといて。", "5b47796686f774374f4a8bb1": "AK-102 を指定された仕様に改造する", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "さあ、渡してくれ。なるべく早く依頼主に渡したいからね。君がこの MPX について誰かに言っていない事を願うよ。よし、依頼主の健闘を祈ろうか。", "5b477b3b86f77401da02e6c4": "MPX を指定された仕様に改造する", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "ありがとう。そこら辺に置いておいてくれ。今ちょっと忙しいんだ。また後でね。", "5b477f1486f7743009493232": "AKMN を指定された仕様に改造する", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "ライフルは完成した?君はスナイパーの本名が Dima であることに気づいていると思う。以前僕が漏らしてしまったからね。これについては他言無用だ。君が理解してくれることを願うよ。", "5b47824386f7744d190d8dd1": "M1A を指定された仕様に改造する", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "ショーケースに入れておきたくなるような出来だね。見事な作品だ…本当に傑作へと姿を変えたね。", "5b4783ba86f7744d1c353185": "M4A1 を指定された仕様に改造する", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, cool, give 'em here. Mechanic asked for it, as you've probably figured. I’ll send it to him today. Thank you, big help.", "5b47884886f7744d1c35327d": "Find Fuel conditioners in raid", "5b47886986f7744d1a393e65": "Hand over the items", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Hand over the figurine", "5b478a6c86f7744d190d8f4d": "Find a Roler Submariner gold wrist watch in raid", "5b478a8486f7744d1c35328b": "Hand over the wrist watch", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Find Golden egg in raid", "62a70058ec21e50cad3b6709": "Hand over the figurine", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Stash Peltor ComTac 2 in the specified place", "5b478c7386f7744d1a393fb1": "Stash 6B47 Helmets in the specified place", "5b478cb586f7744d1a393fb5": "Stash BNTI Gzhel-K armor in the specified place", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Locate and mark the second yellow minibus with an MS2000 Marker on Interchange", "5b478dca86f7744d190d91c2": "Locate and mark the third yellow minibus with an MS2000 Marker on Interchange", "5b478de086f7744d1c3533a1": "Survive and extract from the location", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Interchange で 3つ目の 薬品容器 を手に入れる", "5b4c832686f77419603eb8f0": "2つ目の 薬品容器 を渡す", "5b4c836486f77417063a09dc": "3つ目の 薬品容器 を渡す", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "そうだ、欲しかったのはこれだ!これで回復してくれりゃあ良いんだがな。あとは詳しい連中に任せよう。もちろんヤツらの血統はめちゃくちゃになっちまうかもしれねえが、他に選択肢なんざねえからな。", "5b47905886f7746807461fe2": "防毒マスク を渡す", "5b4790a886f774563c7a489f": "輸血セット を渡す", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "レイド中に 防毒マスク を手に入れる", "5ec1388d83b69d213d3c2ee0": "レイド中に 輸血セット を手に入れる", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Woods の 製材所 にある桟橋を監視するための Wi-Fi カメラ を設置する", "5b47936686f77427fd044025": "Customs から港に向かう道路を監視するための Wi-Fi カメラ を設置する", "5b47938086f7747ccc057c22": "Interchange にある KIBA の入口を監視するための Wi-Fi カメラ を設置する", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Hand over the third controller", "5b4c7aec86f77459732b4b08": "Hand over the second gyroscope", "5b4c8e6586f77474396a5400": "Obtain the second single-axis fiber optic gyroscope on Shoreline", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtain the first motor controller on Woods", "66d07de6c7ef9040fff0b789": "Hand over the first controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Interchange の装甲車がある GENERIC SHOP のベッドに 金のチェーンネックレス を隠す", "5b4796c086f7745877352c2c": "Customs の社員寮 3階 にあるキッチンの電子レンジに 金のチェーンネックレス を隠す", "5b47971086f774587877ad34": "Woods の製材所にある 2 と書かれた木製の小屋に 金のチェーンネックレス を隠す", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Interchange で 22:00~10:00 の間に PMC オペレーター を殺す", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "So, do you feel like Zaitsev yet? Sniper is satisfied with the first test results and has already prepared the next task.", "5bc850d186f7747213700892": "Eliminate Scavs from over 40 meters away while using a bolt-action rifle with iron sights", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Not bad, not bad. Even I wouldn't be so accurate with my shots, I'm way too old now. While you were shooting, Sniper has prepared the next test for you.", "5bd983d886f7747ba73fc246": "Shoot any target in the legs from over 40 meters away while using a bolt-action rifle", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Shoot any target in the head from over 40 meters away while using a bolt-action rifle", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "You have got a good reaction time since you're still standing here. Grab your new hat, as promised! Go on, shooter, new tests await you.", "5bc47e3e86f7741e6b2f3332": "Eliminate PMC operatives from less than 25 meters away while using a bolt-action rifle", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Ready? Then let’s get to work. Sniper took a big interest in you.", "5bc4813886f774226045cb9a": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Kill PMCs using bolt rifles from a distance of at least 80m", "657b0567ec71635f16471dd2": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Good work, owl eyes. You thinned out those night predators.", "5bc84f7a86f774294c2f6862": "Eliminate Scavs while using a bolt-action rifle in the time period of 21:00-05:00 on Customs", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "There are no foul tricks in the sniper play. Good work, kid.", "5bc483ba86f77415034ba8d0": "Eliminate Sniper Scavs while using a bolt-action rifle", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "The enemy is absolutely helpless when they don't know where they get shot from. You did well, shooter.", "5bc485b586f774726473a858": "Eliminate PMC operatives from over 45 meters away while using a suppressed bolt-action rifle", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "これは簡単な依頼ではない。もう一度挑戦してみよう。", "5bc4893c86f774626f5ebf3e successMessageText": "It seems that sometimes being smart isn’t enough to act smart. Well, a good old bolty can be of help with this. Sniper is silent for now, so let's wait for a little before your next tasks. I will let you know when there are new tests for you.", "5bc48aed86f77452c947ce67": "1回も死なずにボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "You cannot die or leave the raid until the quest is handed over to the customer (Status: Killed, Ran through, MIA)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "社員寮 3階 にある階段の向かい側のごみ置き場に Roler サブマリーナー を隠す", "5c12320586f77437e44bcb15": "社員寮 3階 にある階段の向かい側のごみ置き場に 偽情報の入ったフラッシュドライブ を隠す", "5c1233ac86f77406fa13baea": "タスクが完了するまで Customs で Scav を殺してはならない", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Customs の指定された場所で 偽情報の入ったフラッシュドライブ を手に入れる ", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "やり遂げたらしいな!これは俺からの敬意の証だ。これからも良い仕事が来れば、お前に頼むからよ。", "5c0bc95086f7746e784f39ec": "サプレッサーを付けた 12ゲージ の ショットガン を使用して Scav を殺す", "5c0bcc9c86f7746fe16dbba9": "サプレッサーを付けた 12ゲージ の ショットガン を使用して PMC を殺す", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "良くやってくれたな、友よ。すべて計画通りだ。", "5c1242fa86f7742aa04fed52": "Eliminate PMC operatives in the time period of 21:00-06:00 (excluding Factory and The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "So, what do you think? Some serious toy, yeah? Great, hand it over then. Here, that's for the help. Keep in touch, I might need more help to test some other things.", "5c1b765d86f77413193fa4f2": "Eliminate PMC operatives from over 60 meters away while using an M1A rifle with Hybrid 46 suppressor and Schmidt & Bender PM II 1-8x24 scope", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "それでいい。これからは、何かある度にお前が小便漏らしてねえか確かめずに済みそうだな。", "5c0bdbb586f774166e38eed5": "ストレス耐性 のスキルレベルが必要な値に達する", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Reserve でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", "5c137ef386f7747ae10a821e": "Shoreline でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", "5c137f5286f7747ae267d8a3": "Customs でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Lighthouse でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す ", "63aec6f256503c322a190374": "Streets of Tarkov でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", "64b694c8a857ea477002a408": "Interchange でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "経験豊富なスナイパーは、そのように自分の正体を晒すことはない。息を整えて、もう一度やってみよう。", "5c0be13186f7746f016734aa successMessageText": "Frankly speaking, i wasn't sure you could do it. But it sure seems that you're no regular pleb.", "5c0be2b486f7747bcb347d58": "Reach the required Bolt-action Rifles skill level", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "1回も死なずにボルトアクションライフルを使用して PMC オペレーターを殺す", "64b67fcd3e349c7dbd06bd16": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Did you bring it? Great, put it all down there in the corner. Careful, the equipment is very fragile. Even if the whole clinic thing fails, I know some people who may be interested in this equipment, but that’s between you and me. Why waste such expensive hardware?", "5c0be66c86f7744523489ab2": "Hand over the Ophthalmoscope", "5c0be69086f7743c9c1ecf43": "LEDX 静脈発見器 を渡す", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Find an Ophthalmoscope in raid", "5fd8935b7dd32f724e0fe7ee": "レイド中に LEDX 静脈発見器 を見つける", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "To be fair, I did not doubt that you are the person I can trust, not only in work.", "5c0d0dfd86f7747f482a89a5": "Reach the required Health skill level", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Very good, very good! The clients will be happy with you, mercenary. Your reward.", "5c138c4486f7743b056e2943": "Hand over the processors", "5c138d4286f774276a6504aa": "Hand over the transmitter", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Find Virtex programmable processors in raid", "5ec13da983b69d213d3c2ee4": "Find Military COFDM Wireless Signal Transmitter in raid", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Good, limbs are still attached, and the needed noise has been made. You'll be useful in these matters then, warrior. Here's the reward, you earned it.", "5c1b760686f77412780211a3": "ハンドグレネードを使用して PMC オペレーター を殺す", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Done already? You know, it actually worked, the way their leaders talk has changed a lot. Do not blame me, in this world you have to negotiate even with such scum. Your reward, mercenary.", "5c1b778286f774294438b536": "Eliminate Scavs from less than 60 meters away while wearing a gas mask or respirator on Interchange", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Interchange", "5c1b713f86f774719c22e8a0": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Shoreline", "5c1fd66286f7743c7b261f7b": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Woods", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Survive and extract from Shoreline with the \"Survived\" exit status", "5c13989886f7747878361a50": "Survive and extract from Factory with the \"Survived\" exit status", "5c1931e686f7747ce71bcbea": "Survive and extract from The Lab with the \"Survived\" exit status", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Survive and extract from Reserve with the \"Survived\" exit status", "629f08e7d285f377953b2af1": "Survive and extract from Lighthouse with the \"Survived\" exit status", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Locate and mark the second fuel stash with an MS2000 Marker on Woods", "5c10f94386f774227172c576": "Locate and mark the third fuel stash with an MS2000 Marker on Woods", "5c10f94386f774227172c577": "Survive and extract from the location", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Now we’re talking! I’ll grab a soldering iron and get to work. Perhaps the market's gonna stabilize already by that time.", "5c1129ed86f7746569440e88": "Hand over the wires", "5c112a1b86f774656777d1ae": "Hand over the capacitors", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Find Bundles of wires in raid", "5ca71a1e86f7740f5a5b88a2": "Find Capacitors in raid", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "There you go, now I'm absolutely sure that you can return from a raid and with some good stuff in your backpack. Well done, brother!", "5c112dc486f77465686bff38": "Reach the required Search skill level", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Do you have it? Great. I wonder what he would ask next time, a diamond-coated toilet? But hey, if he does ask for it, you actually will have to look for it. Thanks for the help, brother.", "5c11427386f77430ff393793": "Hand over the teapots", "5c122c5f86f77437e44bcb0e": "Hand over the vases", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Find Antique teapots in raid", "5ca7258986f7740d424a2044": "Find Antique vases in raid", "62a700893e015d7ce1151d90": "Find Axel parrot figurine in raid", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "うちのヤツらが言うには Customs で \"第三次世界大戦\" が起きて、BEAR と USEC に追い詰められた連中は、何もできずに右往左往しているらしい。よくやった。約束の報酬だ。", "5c1fa9c986f7740de474cb3d": "指定された装備を着用して Customs で PMC オペレーター を殺す", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Reach level 4 loyalty with Peacekeeper", "5c12489886f77452db1d2b05": "Reach level 4 loyalty with Prapor", "5c1248ef86f77428266184c2": "Reach level 4 loyalty with Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "You actually brought them! I'm pleased! Let me have a closer look at them.", "5c139eb686f7747878361a72": "Hand over the reader", "5c139eb686f7747878361a73": "Hand over the storage module", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Find UHF RFID Reader in raid", "5ec14080c9ffe55cca300867": "Find VPX Flash Storage Module in raid", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Hello, mercenary. I have been watching you for quite a while now, and I know that you are able to solve the tasks assigned to you. Don't get too cocky now, you're not the only one who knows how to follow orders. There are more fighters like you, even more competent. I want to offer you a job, to give you a chance to become a part of something bigger than you can imagine. If you are ready, then here's an assignment for you: my people operate all over Tarkov and often leave souvenirs after themselves. The mission is to obtain and deliver those items to me. No questions asked. The things are extremely rare. I hope I don't have to remind you that you have to obtain all these items by yourself? Believe me, I like no other know when people lie. You will be informed of the drop spot. And one more thing, all my partners have already mastered their skills a long time ago and proven themselves reliable, and if you want to be one of them, then prove to me that you are not inferior to them in training. Don't try to contact me, I will do it myself when the time comes.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Have you got it all? Good, mercenary. Your hard-earned reward awaits you in the specified drop-spot, just as promised. Congratulations, and welcome.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "レイド中に Battered antique book を見つけて渡す", "5c51bf8786f77416a11e5cb2": "Hand over the found in raid item: #FireKlean gun lube", "5c51bf9a86f77478bf5632aa": "Hand over the found in raid item: Golden rooster figurine", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Hand over the found in raid item: Can of sprats", "5c51c24c86f77416a11e5cb7": "Hand over the found in raid item: Fake mustache", "5c51c25c86f77478bf5632af": "Hand over the found in raid item: Kotton beanie", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Hand over the found in raid item: Old firesteel", "5c52da5886f7747364267a14": "Hand over the found in raid item: Antique axe", "5cb5ddd386f7746ef72a7e73": "Find Old firesteel in raid", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Find Can of sprats in raid", "5cb5df7186f7747d215eca08": "Find Fake mustache in raid", "5cb5df8486f7746ef82c17ea": "レイド内でKottonビーニーを見つける", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "レイド内でカラスの置物を見つける", "5ec7998dc1683c0db84484e7": "Hand over the found in raid item: Raven figurine", "5ec79aaac1683c0db84484e8": "レイド内でPestily ペストマスクを見つける", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Hand over the found in raid item: WZ Wallet", "60d0748820a6283a506aebb1": "レイド内でLVNDMARKの殺鼠剤を見つける", "60d074ef401d874962160aee": "Hand over the found in raid item: LVNDMARK's rat poison", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Find Smoke balaclava in raid", "60e827faf09904268a4dbc40": "Hand over the found in raid item: Smoke balaclava", "62a6ff004de19a4c3422ea5d": "Hand over the found in raid item: Missam forklift key", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "持ってきてくれたのかい?うん、よし。君ならJaegerに紹介しても良さそうだね。彼なら君にきっと沢山の仕事をくれると思うよ。", "5d249a6e86f774791546e952": "Obtain Jaeger's encrypted message", "5d249aa286f77475e8376399": "Hand over the message", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Find Jaeger's camp at the specified spot on Woods", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "レイド中に Iskra レーションパック を見つける", "5d24bb4886f77439c92d6bad": "レイド中に インスタント ヌードル を見つける", "5d24bb7286f7741f7956be74": "レイド中に ビーフシチューの缶詰 (大) を見つける", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "ある有名なボクサーがよく言っていた。\"蝶のように舞い、蜂のように刺す\" のだと。良い言葉だ、覚えておくといい。アーマープレートを装備していないだけで、どれだけ身軽に動けるか良く分かったろう?お前さんがならず者を目の前にしても冷静に素早く動けるなら、もはや防具など必要ないんだ。", "5d25af3c86f77443ff46b9e7": "Woods でボディアーマーを装備せずに Scavs を殺す", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "バンカー \"ZB-016\" に 水の入ったボトル (0.6L) を隠す", "5d2deedc86f77459121c3118": "Woods にあるバンカー \"ZB-014\" に イスクラ レーションパック を隠す", "5d2defc586f774591510e6b9": "バンカー \"ZB-014\" に 水の入ったボトル (0.6L) を隠す", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "No way you can survive for so long! Impressive. Here you go, drink this, regain your strength.", "5d25c5a186f77443fe457661": "Survive for 5 minutes while suffering from complete dehydration (excluding Factory)", "5d9f035086f7741cac4a9713": "Survive and extract from the location", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Handled it? Nicely done. Your training is almost done, friend. If we keep it that way, we may start taking care of the order in the city earlier than planned.", "5d25c8c986f77443e47ad47a": "Eliminate Scavs while suffering from the pain effect", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Successful? Great! Sweat saves the blood! Don't get too ecstatic now, there are some more tasks for you.", "5d25d09286f77444001e284c": "Eliminate Scavs in a single raid without using any medicine on Woods", "5d25d0d186f7740a22515975": "You must not use any medical supplies while the task is active", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "So you can even handle tremors? Great! To be honest, I didn't think you would succeed, the task was very difficult.", "5d25d4e786f77442734d335d": "Eliminate PMC operatives with headshots while suffering from the tremor effect", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "So you survived? Who would've thought.", "5d25dc2286f77443e7549028": "Eliminate PMC operatives while suffering from the stun effect", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "How many you say there were, six? And you got them all without the \"goggles\"? Indeed, you are a great night hunter, kid.", "5d25fd8386f77443fe457cae": "Eliminate Scavs in the time period of 21:00-04:00 without using any NVGs or thermal sights (Excluding Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "How do people say? What is difficult in training will become easy in a battle! This skill will come in handy, trust me on this one. Your training is almost complete. Looks like you are ready to become the Hunter.", "5d2605ef86f77469ef0f7622": "Reach the required Vitality skill level", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Good job! Of course, there is enough scum in Tarkov, others will come for sure. But at least they will think twice before tearing the place apart.", "5d26143c86f77469ef0f894c": "Eliminate PMC operatives in the office area (any floor) on Factory", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Reshala を殺す", "5d2710e686f7742e9019a6b2": "Hand over Reshala's Golden TT pistol", "5d66741c86f7744a2e70f039": "Find Reshala's Golden TT in raid", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "They made their choice when they stepped on the wrong path. You have done the right thing, hunter, thank you.", "5d2701b586f77469f1599fe2": "Eliminate Scavs all over the Tarkov territory", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Learned the lesson? Good. See, you can disarm an enemy in many ways.", "5d307fc886f77447f15f5b23": "Eliminate PMC operatives while they are suffering from the stun effect", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Killa を殺す", "5d271a3486f774483c7bdb12": "Hand over Killa's helmet", "5d667a8e86f774131e206b46": "Find Killa's \"Maska-1SCh\" bulletproof helmet in raid", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Shturman を殺す", "5d272a0b86f7745ba2701532": "Hand over Shturman's stash key", "5d2f464e498f71c8886f7656": "Find Shturman's stash key in raid", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Protected the honor of the uniform? That's great. Screw them, there is nothing worse than giving the oath and then falling into crime.", "5d272bd386f77446085fa4f9": "Eliminate Scavs dressed in police uniform (Reshala's bodyguards)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "I've heard what you did. Looks like it's calmer out there now, with way fewer looters. You have my gratitude.", "5d2733c586f7741dea4f3072": "Eliminate PMC operatives in the Dorms area on Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Welcome back, hunter. So you've dealt with the bandits? Can't even imagine how much of a hassle that was, you did a great job.", "5d27369586f774457411b264": "Glukhar を殺す", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "So they're operating near laboratories and military facilities... Oh, I hope it won't start another war, on top of the one already going on. Well, kid, it's not for us to resolve this, at least for now.", "5d273a4d86f774457411b266": "Eliminate Raiders", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Got it? Great. Hopefully, I won't have to watch people die helplessly anymore.", "5d27446f86f77475a86565a3": "Hand over the defibrillator", "5d7782c686f7742fa732bf07": "Hand over the CMS kits", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Find Portable defibrillator in raid", "5ec1538a92e95f77ac7a2529": "Find CMS surgical kits in raid", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Locate the chairman's house in the abandoned village on Shoreline", "5d357b9586f7745b422d653f": "Locate the fisherman's house in the abandoned village on Shoreline", "5d357bb786f774588d4d7e27": "Locate the priest's house in the abandoned village on Shoreline", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Survive and extract from the location with the \"Survived\" exit status", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Got it? Good, let's see what he's up to. Come back in a bit, Mechanic and I will check the flash drives, then we'll let you know too.", "5d27491686f77475aa5cf5b9": "Hand over the Flash drives", "5d6949e786f774238a38d9e0": "Find Secure Flash drives in raid", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Hand over the photo album", "5d357e0e86f7745b3f307c56": "Locate Jaeger's Health Resort room with a view of the bay on Shoreline", "5d357e8786f7745b5e66a51a": "Obtain Jaeger's photo album", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "You got them? Good work, kid. Now we just have to figure out how to find this laboratory. Well, I'll deal with this matter myself, don't worry.", "5d2f375186f7745916404955": "Find TerraGroup Labs access keycards in raid", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Hand over the access keycards", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Come on in. Want some tea? Well, whatever. So listen, here's the deal. Soon I will be hosting a few friends of mine. I want to go hunting with them, but there's just no way I can take them hunting with these MP shotguns, right? I have a couple of nice western rifles here, but I need them to be zeroed properly first. And we have just the client for that, his name is Shturman. So, test my build (Remington M700 sniper rifle with a FullField TAC30 1-4x24 scope) on this scum. Find a long-range position and make a precise shot to the head, so that the bastard wouldn't even have a chance. Don't worry, I won't disappoint you with the reward, kid.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Those are damn great rifles! Good work! You know, I think I might get into gunsmithing myself, I took quite a liking to this thing. So, about the reward: check out the little things I found, you might need them.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "M700 と指定のスコープを使用し 75m 以上離れた位置からのヘッドショットで Shturman を殺す", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Look who we've got here! Hello there! Listen, you know about the military base close to the health resort? Probably were there yourself. So, I've got some news. They say the old warehouses there still have a lot of food left in them, and that bandit groups began roaming there, not your regular Scavs, they are well-equipped. I want you to check out if there's anything left in those warehouses. But be careful, there really are a lot of dangerous people there.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Have they already started to take everything out? Got it, we have to act fast.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Locate the food storage location on Reserve", "629f1259422dff20ff234b4d": "Survive and extract from the location", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Hand over the military battery", "5d4c020a86f77449c463ced6": "Find OFZ 30x165mm shells in raid", "5d4c028c86f774389001e027": "Hand over the OFZ shells", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "So, have you decided? Just a couple of injections. Here and here. Keep yourself calm, at least a couple of days, relax more and take your vitamins.", "5d6fb8a886f77449db3db8b6": "Hand over RUB", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "So, I've been told you took up the training. Well, with your skills, I'm sure you'll learn quick.", "5d6fbf0f86f77449d97f738e": "Hand over EUR", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Got it done already? Nice job. Wait here a minute, I need to measure your sizes and figure out the sewing technique for this one. As promised. But hey, you gotta understand that the materials ain't cheap these days, so be prepared for the price. Still, it's got three stripes, an icon of style, you know.", "5dc53fd386f77469c87589a3": "Killa を殺す", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Hand over the fabrics", "5e38356d86f7742993306cac": "Hand over the fabrics", "5e3835e886f77429910d4465": "Hand over the paracords", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Hand over the fabrics", "5e383a6386f77465910ce1f8": "Find Paracords in raid", "5e383a6386f77465910ce1f9": "Hand over the paracords", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Hand over the fabrics", "5e4d4ac186f774264f75833b": "Find KEKTAPE duct tapes in raid", "5e4d4ac186f774264f75833c": "Hand over the duct tapes", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Hand over the fabrics", "5e4d515e86f77438b2195249": "Find KEKTAPE duct tapes in raid", "5e4d515e86f77438b219524a": "Hand over the duct tapes", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, you're just in time. Maybe you have already heard that a new doctor has shown up? But this one is not some good-willed Aesculapius - he helps some people but cripples others. They say he sells medicine and does surgeries right on the street. They call him Sanitar, can you imagine? He settled on the Shoreline and interestingly enough, the local punks are very happy with him, and it's clear why: he patches them up, and even sells them drugs and first-aid kits of all sorts. This means that he has quite an inventory with him. Find out about this Sanitar, but quietly. For now, just find out where this scum hangs out. I think that he does both the selling and healing at the same spots. You interested?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "So you're saying there's quite a lot of supplies? Guess he found himself a fresh unopened medical warehouse and is now selling everything out from it. If only I could find that warehouse... well, that's not your problem anyway. For now.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Mark the first trading post with an MS2000 Marker on Shoreline", "5eda1da9a58a4c49c74165ee": "Mark the second trading post with an MS2000 Marker on Shoreline", "5eda1dd3317f6066993c1744": "Mark the third trading post with an MS2000 Marker on Shoreline", "5f0389268580cc37797e0026": "Survive and extract from the location", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "So you believed that woman? You do realise that she's just deceiving you for her own benefit? Do you think that because Sanitar treats some people, he can't kill others? You've completely gone insane with that war or yours, can't distinguish black from white. Get out of my sight, I want to be alone.", "5edab4b1218d181e29451435 successMessageText": "You did the right thing. Even if others say that Sanitar did good deeds, he brought much more evil. Don't believe those people's lies. I've seen people like Sanitar before: once they go crazy, there's no turning back. You can only shoot them like rabid dogs.", "5edab5a6cecc0069284c0ec2": "Sanitar を殺す", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Locate the group that was sent to the Health Resort on Shoreline", "5edab8890880da21347b3826": "埠頭に派遣されたグループを探す", "5edab8e216d985118871ba18": "コテージに派遣されたグループを探す", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Survive and extract from the location", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "The loss of my people on the Shoreline is certainly a very unpleasant event, but a new source of medicine is more important. We just need a different approach to this case. My assistant managed to bribe a local from the Shoreline to tell us about Sanitar, the medic we're looking for. He has a small security detail, a few spots on the shoreline, but what's strange is that he performs surgery right on the street, and often hides his tools near such places, in buildings nearby. Get me these tools. Sanitar will be more cooperative if he realizes that we can stop his trade at any time and take control of the territory.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Did you bring the tools? Put them in that box, I will need to clean them properly, it is unclear where they have been before. You can clearly see he is in a difficult situation, everything is covered in blood, clearly unsanitary conditions. Well, that's my business now. I'll give Sanitar his tools back along with the letter through the one local we bribed so that he understands what we want from him.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Locate and obtain Sanitar's surgery kit marked with a blue symbol on Shoreline", "5edabb950c502106f869bc04": "Hand over Sanitar's surgery kit", "5edabbff0880da21347b382b": "Locate and obtain Sanitar's ophthalmoscope on Shoreline", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hey you, tough guy! C'mere, I have a job for you. I've heard Prapor sent you to get a supply of drugs from some Sanitar dude. Don't make that face! I ain't got no interest in those drugs, let Prapor collect it and put it up his ass, you have already received profit from him anyway, haven't you? You just need to put these smart little things in containers that are in Sanitar's stashes. Prapor won't get wind of anything, it's a two-minute job, but the profit is good. Just gotta do it fast, before they move those containers.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Good stuff, good stuff! Finally, Prapor will get his caches exposed, there are probably whole mountains of loot. Guns, ammo, food, dope. Out fucking standing! We'll do this one ourselves though, without you. No offense. Thanks.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Survive and extract from the location", "5f071a9727cec53d5d24fe3b": "Mark the medical container at the Health Resort with an MS2000 Marker on Shoreline", "5f071ae396d1ae55e476abc4": "Mark the medical container by cottages with an MS2000 Marker on Shoreline", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Young man, wait. I knew that Jaeger would ask you to kill Sanitar, but you don't have to do it. I understand Jaeger's point of view, that he's just some kind of monster in the flesh, but he is not. I'm sure Sanitar is just trying to help the locals. Given the current circumstances, he performs the most complex surgeries and it is not surprising that they often end badly. He is a doctor with the most valuable knowledge that can save many more lives. A doctor with access to a warehouse of medicines that are extremely important to us. And he has already entered into negotiations with me and will soon begin to cooperate. But for this, I need something that will interest him and I think I know what will: the Laboratory. Access keys and samples of military stimulants, I think they are the basis on which he conducts his experiments. Can you find them for me? You can get the access keycards however you want, but the stimulants must be sealed, so you need to find them yourself.", "5edac34d0bb72a50635c2bfa failMessageText": "It is a pity that you listened to this Jaeger instead of the voice of reason. Sanitar with his knowledge and medicines could've helped us in many ways. He wasn't a saint, but surely everyone has a chance to atone for their sins, but you have took away that chance. I am very displeased with you.", "5edac34d0bb72a50635c2bfa successMessageText": "Thank you. I knew you would understand how important Sanitar and his... medication are right now. He has already shown a great interest in keycards and stimulants and sent the first batch of goods. Here, this is your share.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Do not kill Sanitar", "5f04935cde3b9e0ecf03d864": "Hand over the keycards", "5f04944b69ef785df740a8c9": "Hand over the keycard", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Good day to you, mercenary. Because the day is actually good. I was right, the new stimulants are connected to TerraGroup. Mechanic found information about Sanitar. Not too much, and it was very expensive for us, but it's better than nothing. Sanitar worked for TerraGroup, and not as an ordinary employee. Graduated in medicine, specialist in infectious diseases, divorced... Well, that's all the information we have on him. Give me more, my friend, I'm very interested in where he got access to such resources. Find his workplace and find out more.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "We have decoded that flash drive. There's a lot of important information there, but I can't tell you everything. It's classified. I can tell you about Sanitar though, he's a scientist. He studied and developed drugs, and then tested them on people. Very... bold, or, as they sometimes say, unethical research.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Hand over the Flash drive marked with blue tape", "5eec9d054110547f1f545c99": "The LabでSanitarの仕事場を見つける", "5eff5674befb6436ce3bbaf7": "Obtain information about Sanitar's work", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "よう、兵士よ。折り入って頼みたいことがある。……ある筋からの情報なんだがな、どうやら Reserve の基地を占拠している元軍人の奴らが、地下壕へ通じる道を見つけたらしい。もちろん、連中が自分たちの手を汚すわけがない。無理やり Scav にやらせたようだが、哀れなクズどもは、誰ひとり生きて帰ってはこれなかっただろうな。……まあ、それはともかく、その地下壕が何なのか、俺には見当がつかなくてな。地下にある \"司令部壕\" だという情報もあるんだが、基地従業員のために作られた、ただの防空壕かもしれんだろう。……確証もないのにうちの連中を Raiders が居るような場所に行かせて、みすみす無駄死にさせたくもないからな。お前がその \"カタコンベ\" まで行って、部隊を送る価値があるかどうか確かめてくれ。報酬は弾むぞ。……どうだ、やってみるか?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "やはり、司令部のための \"シェルター\" だということか?噂は本当だったのか……なんてこった!今日中にうちの連中を派遣して調べる必要があるだろうな。そこには貴重なお宝が眠っているに違いない!まあ、ともかく報酬を受け取れ。約束の品だ。", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Reserve から生還する", "5ee8eea538ca5b3b4f3c4647": "Reserve にある 地下壕 を見つける", "5ee8eecc0b4ef7326256c660": "Reserve の 地下壕 にある 司令室 の位置を特定する", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hey, merc, you are just in time, you are exactly who I need. Do you remember that fucking command bunker you found under the Reserve base? Long story short, my guys went there, and it turned out to be a real nasty place. Built with a high level of protection: filters, generators, all entrances are blocked by extremely strong hermetic locks, it's like an underground fortress. But the raiders opened the fucking thing and dug in like Alabama ticks. So, my men got in serious trouble, less than half made it out of there. But you know, now it's even more intriguing, for fuck's sake. So my people will not go there anymore for no reason, but if you could find a safe route for them... You are an experienced guy, so I need you to quietly, on those soft paws of yours, find out where all the entrances are. The guys said the entrances had those big hermetic doors. So it's up to you to scout the way in.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Welcome back, I'm listening. Aha, so that's how it is... The door is right there, right? Just draw it right on top of my map, don't worry. So this bunker connects almost all facilities of the base? Fuck, how convenient, you could travel half the base under everyone's nose. Now it's clear why the raiders are there, you can control the entire base from under there. Thank you, warrior! Here's your reward.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Survive and extract from the location", "5ee8ec5ed72d953f5d2aabd1": "Locate the hermetic door leading to the hospital (White Bishop) on Reserve", "5ee8ecd75eb3205dae135d17": "Locate one of the two hermetic doors leading to the academy building (Black Bishop) on Reserve", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "So that's how it is, it's right on the first floor? How many times have my people been there and found nothing. Did you get inside the room? Found anything interesting in there? Well, doesn't matter, I'll send my boys to check it out anyway. Here's your reward, you've earned it. Thank you.", "5f0488c590eea473df674002": "Locate Sanitar's office in the health resort", "5f04983ffbed7a08077b4367": "Survive and extract from the location", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "よく来たな、兵士よ。お前さんにひとつ仕事を頼みたい。話せば長くなるんだが、手短にいこう。俺の部下の一隊と連絡が途絶えた。それもかなり前にな。……とんだ災難と言うべきだが、連中には Woods へ荷物を取りに行かせていたんだ。おそらくはそこで待ち伏せにあったんだろう。最後の報告では \"丘から USEC が迫ってきている\" と言っていた。現地に行って生き残った奴がいないか調べてくれ。連中が乗っていた車両は BRDM とブハンカのバン……あとはトラックもあったと思うが正確な車種は思い出せんな。それと気を抜くなよ、俺が思うに USEC の部隊も近くに駐留しているはずだ。輸送隊の連中と……もし本当にあればの話だが、USEC のキャンプも見つけてくれ。話は以上だ。", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "うちの連中は全滅で、積み荷は略奪されていたと......。挙句の果てには、やはり USEC のキャンプもあったのか?……最悪だな。積み荷は貴重な品だったんだ。まあ、お前さんは自分の役割を果たしてくれたんだ。報酬を受け取れ。もう帰っていいぞ。", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Woods で行方不明になった Prapor の輸送隊を見つける", "5fd9fad9c1ce6b1a3b486d05": "USEC の仮設キャンプを見つける", "5fd9fad9c1ce6b1a3b486d0d": "Woods から生還する", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "The air in the whole Woods trembled from such furious firefight. The scum got what he deserved, and all thanks to you. Here, the appropriate reward for such a feat. Don't be shy, you can buy the new rifles too.", "600303250b79c6604058ce30": "Shturman を殺す", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Locate and inspect the second LAV III on Reserve", "608925d455f4ac386d7e7fc4": "Mark the first LAV III with an MS2000 Marker", "608930aa1124f748c94b801e": "Locate and inspect the T-90 tank on Reserve", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "よしよし、素晴らしい。さあ、報酬を受け取れ!念を押しておくが、くれぐれも口外するなよ。", "60929ad46342771d851b827a": "ReserveのT-90Mの車長用コントロールパネルからパッケージを入手する", "60929afc35915c62b44fd05c": "パッケージを渡す", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Obtain the third folder with military documents in the command bunker offices on Reserve", "60ae0f0586046842a754e21e": "2つ目の書類を渡す", "60ae0f17b809a4748759078c": "3つ目の書類を渡す", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Good work out there. I hope they get what's going on now and that they can't just kill my people like that. Here's the reward.", "608bffeee0cc9c2d4d2ccb29": "ReserveのコマンドバンカーでRaidersを排除する", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "1つ目の日誌を渡す", "60ae12ffb809a474875907aa": "Obtain Medical record #2 on Reserve", "60ae134cabb9675f0062cf6e": "2つ目の日誌を渡す", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "ああ、これがその装置なんだね!ありがとう、後で詳しく調べてみるよ。約束通り、これが君の報酬だ。", "6092942fb0f07c6ea1246e3a": "Obtain the MBT Integrated Navigation System on Reserve", "6092947635915c62b44fd05b": "ナビゲーション装置を渡す", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "So the exit works? Excellent. I'm still preparing your reward, so tell me more about the opening mechanism for that bunker door in the meantime.", "608a94101a66564e74191fc3": "Reserveで電源の入っていない秘密の出口を見つける", "608a94ae1a66564e74191fc6": "その出口から脱出する", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "信じられねえ。仲間も無事に戻ってきたぞ、傷ひとつねえ身体でな!…ほら、これがお前の報酬だ!", "608ab22755f4ac386d7e7fdc": "Reserveの地下倉庫でScavsを排除する", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Reserve北側の兵舎にある2つ目の武器庫を調べる", "608bd2465e0ef91ab810f98a": "Reserve西側の兵舎にある待機部屋を調べる", "608c187853b9dd01a116f480": "この地域から生還する", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "この地域から生還する", "60a4dc7e4e734e57d07fb335": "Mark the first group of fuel tanks with an MS2000 Marker on Reserve", "60b90232ec7c6f5eb510c195": "Mark the second group of fuel tanks with an MS2000 Marker on Reserve", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "終わったのか?ああ、空気が澄んだようにさえ感じるよ。略奪者どもを更生させる術が、他になかったのは残念だが…", "608a8356fa70fc097863b8f8": "Reserveの兵舎エリアでScavsを排除する", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "それは良い報せだ。世界はもっと清らかになるだろう。お前さんが奴のハンマーを食らっていないことを祈るよ。", "60c0d187938d68438757cda2": "Tagilla を殺す", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Find Tagilla's BOSS cap in raid", "60cfa5a85f9e6175514de2e3": "Hand over the BOSS cap", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Eliminate PMC operatives on Interchange", "60ec0b1871035f300c301acd": "Eliminate PMC operatives in The Lab", "60ec2b04bc9a8b34cd453b81": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA, Ran Through)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Eliminate PMC operatives at the Scav base on Customs", "60ec1e72d7b7cb55e94c1764": "Eliminate PMC operatives at the Scav base on Woods", "60ec2229fd1bf4491c4e4552": "Shoreline にある保養所で PMC オペレーターを殺す", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "There you go, that's way better. Thank you, warrior. The guys are saying it's calmed down now, so looks like the morons understood your message.", "60e8650e5d67b234af3d3926": "Eliminate Scavs with headshots", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Bloody hell... You got them all by yourself? You've got guts, that's for sure. Somethin' ain't right about those psychos, I'm tellin' you...", "60e82c12fd1bf4491c4e4547": "Find the unusual knives in raid", "60e82c5926b88043510e0ad7": "Hand over the knives", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "LEDX を渡す", "60f028ca86abc00cdc03ab89": "Find Piles of meds in raid", "60f028f85caf08029e0d6277": "Hand over the Piles of meds", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Find Bottles of OLOLO Multivitamins in raid", "62a70168eb3cb46d9a0bba7a": "Hand over the multivitamins", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Marvelous, mercenary. Now it will be much easier for my people to operate on the location! Thank you for your work.", "60e745d6479eef59b01b0bdc": "Eliminate Raiders on Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Great, great! The clients have already rewa– uh, thanked us for the successful mission. Good job, mercenary.", "60e8174d0367e10a450f7818": "Hand over the found in raid item: BEAR PMC dogtag (Level 50+)", "60e81795479eef59b01b0bdf": "Hand over the found in raid item: USEC PMC dogtag (Level 50+)", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Find Military COFDM Wireless Signal Transmitters in raid", "60e7449875131b4e61703b7e": "Hand over the programmable processors", "60e744c9d1a062318d3d2262": "Hand over the signal transmitters", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Find Military flash drives in raid", "62a7019ea9a0ea77981b57da": "Hand over the flash drives", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Great, that's all the results I needed, hand me the notebook. Thanks, mercenary.", "60e740b8b567ff641b129573": "Eliminate PMC operatives from over 100 meters away", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Great, thank you very much, friend. The client already reported that they got the packages. I don't think it's the last order from them, so I'll count on you further.", "60e84ba726b88043510e0ad8": "Stash a Trijicon REAP-IR scope under the base of the yellow crane at the construction site on Customs", "60e85b2a26b88043510e0ada": "Stash a Trijicon REAP-IR scope behind the trash containers at the \"new\" gas station on Customs", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respect, brother, you helped me out big time! If you see any dangerous dudes in Ultra, you let me know. Might need you to deal with them again.", "60e73ee8b567ff641b129570": "Eliminate PMC operatives inside the ULTRA mall on Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Hand over the whiskey", "60f028268b669d08a35bfad8": "Find Canisters with purified water in raid", "60f0284e8b669d08a35bfada": "Hand over the superwater", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Find Bottles of Pevko Light beer in raid", "62a70110eb3cb46d9a0bba78": "Hand over the beer", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Shturman を殺す", "60e7261eb567ff641b129557": "Glukhar を殺す", "60e72629465ea8368012cc47": "Sanitar を殺す", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Here you are, swift one. You pleased the old man, and drew conclusions yourself, I hope. You yourself are the weapon and the monolith, not the amount of steel you wear.", "60e729cf5698ee7b0505743c": "Eliminate PMC operatives without using any armor or helmets on Woods", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "A brave decision, mercenary.", "60effdac12fec20321367038": "Hand over Secure container Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Listen, brother, can you help me find proper info on a guy? He's already left the city. Why can't I find him myself? Because his fucking name is Ivan Ivanov. Seriously, I'm not kidding. There are two hundred thousand of them all over the country with that name. If we could find his former address in Tarkov, we might be able to run him through the database. Let me see what I can find on him. I think he used to run a bar, right. I don't know the name of the bar though... Listen, I don't know how you're gonna know which bar is his. Oh, that reminds me, he was into ballet. No kidding. He went to the Mariinsky every season. Even tried to host something at our local theater, but people weren't really crazy about chicks in tutus. More specific? Brother, I'm already fucking specific! I believe in you, use your intuition.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Found both the bar and the guy's address? Here, write it down for me. You're better than those psychics on TV finding missing people. Wanna be a detective when all this is over, bro? I'll fix you up with a Poirot hat, I promise.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Locate the balletmeister's apartment on Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Survive and extract from the location", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Come here, my dear employee. Everything okay in the city? I got a few teams of mine missing. At first I thought, why the fuck would someone be so cocky, trying to shut my business down? Unless they're messing with me or something. I assumed it was that punk from the Lighthouse at first. But then I get a message from Seva Shket. He wrote that they were kept in some private prison. Have you heard about it? It's hidden somewhere in the old apartment buildings. Suits would dump their rivals there and whoever's easier to keep locked up than kept loose. I'd just kill them if that was such a problem, honestly. But it looks like someone would rather keep them in jail than just pop the cunts bothering them... Here's the deal: Shket was the only one in the group who escaped, but now he's on the run, hasn't contacted us since that message he sent. Didn't even tell us where to find the guys, this rat-faced fuck. The guys themselves are to blame for being caught like some bitches, and I would have just told them to fuck off for such a screwup. But the fact that someone's trying to fuck me over is outrageous. All right, enough of this bullshit. Find out where they keep my boys.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Fucking hell. Why would someone keep them there? I'd understand if they sent me a letter saying they'd kill my people if I didn't pay up and shit. A serial killer or something? Anyway, come around in a little while, I'll find out what's going on.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Survive and extract from the location", "63a7d767f32fa1316250c3da": "Locate where the missing group was held captive on Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "It's the same story again, a new recording, now with a strange symbol. What the hell is going on? People are being sacrificed. To whom? Why? So many questions, yet no answers. I keep thinking it's the worst we'll ever see, but every time I'm proven wrong. We've fought looters with only money on their minds. Murderers who just want to shoot innocents, too. But at least I understand the motivation there, the beast has defeated the human in their soul. But with what purpose do people become these... I cannot understand this. So, soldier, I'll look for them in the woods, you do the same in the city. Somewhere there must be their hideout. Look for the same symbol, I'm sure we'll see it again.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Did you find it? Where? Was there anyone there? What does the symbol mean? Even more questions...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Survive and extract from the location", "63a7d6d61f06d111271f5aeb": "Locate the cultist meeting spot on Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Greetings! Well, let's get it going, are you excited? The task is quite specific, we need to test the Russian toy for close combat, so that the conditions were the very real combat in urban environment. I have customers who don't believe in the effectiveness of this toy... Can you change their minds?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Well? Does it work good? Suitable for close-quarters combat in urban environments?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Eliminate PMC operatives while using an SR-2M with a suppressor and KP-SR2 sight on Streets of Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Some are still intact, huh. Well, that's cool, we'll go pay them a little visit. Your reward.", "6572e876dc0d635f633a5718": "Locate the first group of ATMs on Klimov Street on Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Scout the Sparja store in Pinewood hotel", "6572e876dc0d635f633a571e": "Scout the Goshan store in Concordia", "6572e876dc0d635f633a5720": "Hand over the found in raid Salty Dog beef sausage", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Atm №11", "65733403eefc2c312a759df2": "Atm №12", "65733403eefc2c312a759df4": "Atm №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Atm №15", "65733403eefc2c312a759dfa": "Atm №16", "65801ad655315fdce2096bec": "Unravel the secret of the firm's success", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Did you find it? Nice work, now bring it here! And take your reward, you deserve it.", "6573397ef3f8344c4575cd88": "Locate the real estate fund on Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Locate and obtain the Tarkov real estate transactions document", "658167a0e53c40116f8632fa": "Hand over the obtained information", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, yeah, I've already heard the rumors. People're gonna nail those punks to the wall soon. You did a great job. Here's your reward.", "65734c186dc1e402c80dc1a2": "Eliminate any target while wearing a Bomber beanie and RayBench Hipster Reserve sunglasses on Streets of Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Stash a Bomber beanie inside the barber shop on Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Stash RayBench Hipster Reserve sunglasses inside the barber shop on Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "It's in the fucking swamp? That explains the fucking price. It would cost more to get it out from there and clean it up! All right, here, that's for helping me out.", "65802b627b44fa5e1463889a": "Locate Ragman's SUV on Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Survive and extract from the location", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Locate and obtain the “Bison VS Undertaker” poster at the USEC camp on Woods", "664bbb5f217c767c35ae3d51": "Locate and obtain the “Killa and Tagilla” poster at the USEC camp on Woods", "664bbb73c71d456fd03714ca": "Locate and obtain the “Easy Money” poster at the USEC camp on Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm, looking for the one who ordered the hit. They'll get over it and realize they're crossing the line. Here, this is your reward.", "660d5effb318c171fb1ca234": "Eliminate Kaban's guards on Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminate Kollontay's guards on Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Win 6 matches out of 10 in ranked mode in Arena", "662bb24b3d34cd5e19206e63": "Failure condition: Lose 5 matches", "6633a85e347a2a2b4051a26b": "Hand over Roubles from the EFT balance", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Failure Condition: Lose 5 matches", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.", "66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.", "66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Locate and obtain the compromising information on Ref", "664fd7f0837ee02ad4c8e658": "Hand over the found info", "66563f0a2684eee09e8dcd86": "Locate the old champion's hideout", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "I think I'm beginning to understand why people watch these \"live streams\". It's addictive!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Install a WI-FI Camera on the mountain ledge on Woods", "667bf840981b1c594af358ce": "Install a WI-FI Camera at the pier tower on Shoreline", "667bf845dc371ee9869f185e": "Install a WI-FI Camera at the office corridor on Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Well done! They say that even the outside world found out about our little move, haha!", "667442da875be5fb415df535": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Shoreline", "66828746efaecf435dde20ca": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", "66d080533a3c33d823a3477d": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hello, friend. Things have been a little bumpy for me lately. I will be temporarily raising the prices of my products and services from today until I can solve some pressing matters. A mercenary friend of mine is putting together a team to raid the underground lab, and he needs reliable firepower. Can you help? I see you know as much about the ARs as I do, so I thought I'd entrust this to you. I need an M4A1 with no more than 300 total recoil and ergonomics no less than 70. Not easy, I know. Now, be sure to put an EOTech XPS 3-0 on it, since the client refuses to use any other scope.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Many thanks. I think this will keep me on track for some time.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modify an M4A1 to comply with the given specifications", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "You didn't lose anything along the way, correct? All right, then it's time to send the engineers out to do some measurements, we're about to find out what these factory walls are hiding. Thanks for your help, friend.", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory (In one raid)", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory (In one raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Locate and obtain the precision tools package in the laboratory on Customs", "66ab97d56cb6e3bfd7c79fbc": "Stash the package at the laboratory storage room on Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "So you have found it indeed. Excellent! How's the passage, is it safe? In a state of disrepair, you say? Well, it seems like this opportunity won't be with us for long. I'll send my men as soon as possible.", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov (In one raid)", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab (In one raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab (In one raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab (In one raid)", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab (In one raid)", "66b10eef0951e90ec383850b": "Scout the control room in The Lab (In one raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "The buyer has told me everything is in place. You've earned your reward, and you can expect my men to help you on the new trails.", "66abb32aeb102b9bcd088d62": "Use the transit from Ground Zero to Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Use the transit from Streets of Tarkov to Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use the transit from Interchange to Customs", "66abb3ac416b26ade4a1446c": "Use the transit from Customs to Factory", "66abb3bf228ace5ca9f3d745": "Use the transit from Factory to Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Install a WI-FI Camera at the bear who sat into a flaming car on Woods", "66debf2e1e254957b82711ff": "Install a WI-FI Camera at the upside-down chair on Shoreline", "66debf30802386a45d0adb60": "Install a WI-FI Camera at the not-so-lonely bathroom on Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "The soldier of fortune has come for his new task! Rumors have it that Tarkov has become even more dangerous. Who would've thought, right? Someone's started targeting certain areas with mortar fire. \n\nYou better go and see what's going on. And yes, this means going right into the middle of those mortar strike areas. Yup. Alright, so we've noticed the bombardments in the nature reserve, the military base, the customs office, and the coast line. Off you go then.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Alive and well, that's great. So let's see what we're working with here. Somebody stole the mortars and now they're hitting various locations right before the airdrop supplies come in. \n\nVery suspicious. These local powdermen sure couldn't have secured communications with the outside world, could they? Either way, all we can do for now is watch.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visit an active mortar strike area on any specified location (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Okay, I got word of a major fuck-up. It may not be your fault, but that's beside the point. The assholes at the water treatment plant intercepted a bunch of these crates with portable EW equipment in them. \n\nThey're obviously useless at this point, but I'm not gonna let them steal government property like this. \n\nFor a warrior like you, the task is feasible. Go to the WTP and get me those EW thingies. And yes, those rats need to be put down. \n\nThe EWs themselves have probably already been handed over to their commanders, so you're guaranteed to get this equipment from them. Assuming you don't die, I suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendid, the new toys have arrived. My guys are gonna love these. You need to be ready for anything these days, and such protection is definitely not superfluous.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Hand over the found in raid item: GARY ZONT portable electronic warfare device", "66e19f359fee1e54e0e01f7c": "Eliminate Rogues", "66e19f7d534a8ff2bb7e9f89": "Locate and neutralize Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "This whole trader thing is going pretty well for me, wouldn't you say? You know, If I didn't have my wits about me, I'd be dead in this hellhole a long time ago. Anyway, I'll deal with the reports later, not the first time. \n\nRight now, I need to equip the guys posted outside my territory. Bring them this new equipment we found. I'll give you a part of it, but the rest you need to get yourself - you already know where to look. No, you won't meet them face to face. Just stash the items in the designated spot.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Good, now that they're safe from airborne threats, their combat mission will be accomplished with no problem.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Stash the GARY ZONT portable electronic warfare device inside the sunken church on Woods", "66e071c8a9e80c3f25bb1bad": "Stash the Radar station spare parts inside the old sawmill hangar on Woods", "66e0735089627301d900ef1d": "Stash the GARY ZONT portable electronic warfare device inside the weather station tower on Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "I Hear the Voice of Darkness", "6514134eec10ff011f17cc26 description": "PMC として15回 Knight を倒す", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Now That's a Good Shot", "651413e9c31fcb0e163577c9 description": "PMC として15回 Zyrachiy を倒す", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/kr.json b/Libraries/SptAssets/Assets/database/locales/global/kr.json index 55b5daaf..dd9a7a64 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/kr.json +++ b/Libraries/SptAssets/Assets/database/locales/global/kr.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "공장(Factory) 3번 게이트 근처 2층에 있는 휴게실에 케이스 놓고 가기", "5968929e86f7740d121082d3": "세관(Customs) 터미널에 있는 Tarcone 회사 감독관의 사무실(빨간창고)에서 보안 케이스 획득하기", "5977784486f774285402cf52": "공장(Factory)에서 살아서 탈출하기", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "[돈가방을 갖고 튀어라(Shaking up the Teller), 성공]\n아주 인상 깊어! 이건 거의 그냥 핵 가방이잖아? 그놈이 왜 이걸 훔치러 가려던 놈들을 살려두지 않았는지 이해가 되는군.", "5968981986f7740d1648df42": "세관(Customs) 3층짜리 기숙사 203호에서 가치 있는 물건 회수하기", "5968988286f7740d14064724": "회수한 물건 건네주기", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "기숙사 214호에 들어갈 방법 찾기", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "[진통제(Painkiller), 성공]\n정말 뭐라고 감사드려야 할지 모르겠네요. 서로 상황이 좋지 않은데도 챙겨주셔서 정말 감사드려요. 대부분의 사람들이 자기 이익만 보려고 할 때, 당신은 타인을 위해 희생해 줬어요. 고마워요.", "5969f98286f774576d4c9542": "레이드에서 [모르핀 주사기] 획득하기", "5969f99286f77456630ea442": "주사기 건네주기", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "레이드에서 [점화 플러그] 획득하기", "596b470c86f77457ca18618a": "[자동차 배터리] 건네주기", "596b472686f77457c7006f8a": "[점화 플러그] 건네주기", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "[USB에는 무엇이 들어 있을까? (What’s on the Flash Drive?)]\n아무것도 없을 거라며! 뭐, 내용물은 비어있을 수도 있지만. 확인해 봐야겠어. 어느 쪽이든, 약속대로 보수는 지급하지.", "5979ee2986f7743ec214c7a4": "레이드에서 [USB 보안 플래시 드라이브] 획득하기", "5979ee4586f7743ec214c7a5": "[USB 보안 플래시 드라이브] 건네주기", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "세관(Customs)에서 세 번째 유조차에 MS2000 마커 설치하기", "59c128f386f774189b3c84bb": "세관(Customs)에서 네 번째 유조차에 MS2000 마커 설치하기", "5c92184386f7746afa2e7840": "살아서 탈출하기", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "휼륭해! 보상받아 가게. 그동안 나는 전문가들에게 복호화 할 수 있도록 이 플래시 드라이브를 전달하도록 하지.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "보트에 [SV-98 저격소총] 숨겨두기", "5a27d85286f77448d82084e7": "보트에 [멀티툴] 숨겨두기", "5a3ba11786f7742c9d4f5d29": "해안선(Shoreline)에서 방파제 옆에 숨겨둔 보트 찾기", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "살아서 탈출하기", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "[히포크라테스 선서(Hippocratic Oath), 성공]\n훌륭해요, 이제부터 언제든지 저만 믿으시면 돼요.", "5a56489d86f7740cfe70eba2": "달러 건네주기", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "[건스미스 - 파트 1(Gunsmith - Part 1), 성공]\n가져왔나? 고마워, 저쪽 구석에 놓게. 정말 이쁘지 않나? 아무튼, 지금은 조금 바빠서 길게 이야기할 수는 없네.", "5accd5e386f77463027e9397": "MP-133을 요구 사항에 맞게 개조하기", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "[건스미스 - 파트 2(Gunsmith - Part 2), 성공]\n음, 잘만 쓴다면 이 무기는 정권을 뒤엎고 혁명을 만들어 낼 수도 있겠군. 조금 있다가 확인할 테니 저기 구석에 놔두게.", "5accd9b686f774112d7173d1": "AKS-74U를 요구 사항에 맞게 개조하기", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "[건스미스 - 파트 3(Gunsmith - Part 3), 성공]\nCQB에 딱 좋고 조용하기까지... 훌륭해, 고객도 만족하실 것 같네.", "5accde3686f7740cea1b7ec2": "MP5를 요구 사항에 맞게 개조하기", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "[건스미스 - 파트 16(Gunsmith - Part 16), 성공]\n고마워, 총은 거기 테이블 위에 올려둬, 디ㅁ... 크흠, 스나이퍼 친구에게 전해주도록 하지.", "5acce08b86f7745f8521fa64": "DVL-10을 요구 사항에 맞게 개조하기", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "[건스미스 - 파트 13(Gunsmith - Part 13), 성공]\n그래, 이런 거로부터 숨을 수 없지. 7.62는 정말 아름답군. 작업해 줘서 고마워. 다음 주문은 내일쯤 들어올 거야.", "5acce11786f77411ed6fa6eb": "R11 RSASS를 요구 사항에 맞게 개조하기", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "[건스미스 - 파트 7(Gunsmith - Part 7), 성공]\n이리 줘보게, 어떻게 만들었는지 한번 확인해 봐야지 않겠나. 그래! 이게 바로 민주주의의 무기지... 고맙네.", "5accdfdb86f77412265cbfc9": "M4A1을 요구 사항에 맞게 개조하기", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "공장(Factory)에서 [공구세트]로 첫 번째 제어장치 수리하기", "5ac7a51a86f774738a4ffc96": "공장(Factory)에서 [공구세트]로 두 번째 제어장치 수리하기", "5ac7a5d586f774383111ee63": "살아서 탈출하기", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "[T자형 플러그] 건네주기", "5ac5061386f77417e429ce7a": "레이드에서 [인쇄 회로 기판] 획득하기", "5ac5062586f774587c327395": "[인쇄 회로 기판] 건네주기", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "세관(Customs)에서 압류된 물품을 보관하는 창고 찾기", "5ac6248586f77416781dd3a3": "[그래픽 카드가 담긴 상자] 회수하기", "5ac624b286f77416781dd3ac": "[그래픽 카드가 담긴 상자] 건네주기", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "[그래픽 카드] 건네주기", "5ac5083d86f7740be2744eed": "레이드에서 [CPU 쿨러] 획득하기", "5ac5084d86f7740bde1b0031": "[CPU 쿨러] 건네주기", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "해안선(Shoreline)에서 첫 번째 신호원 찾기", "5ac5e13586f7746074388f93": "해안선(Shoreline)에서 두 번째 신호원 찾기", "5ac5e18c86f7743ebd6c9575": "살아서 탈출하기", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "[충전지] 건네주기", "5ac5e98886f77479bc6ca201": "[인쇄 회로 기판] 건네주기", "5ac5ea0586f774609f36280c": "[고장난 GPhone] 건네주기", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "레이드에서 [PC CPU] 획득하기", "5cb6f88d86f7747d215f09c1": "레이드에서 [충전지] 획득하기", "5cb6f8de86f7740e9d452685": "레이드에서 [인쇄 회로 기판] 획득하기", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "[신호 - 파트 4(Signal - Part 4), 성공]\n원주율에서 소수점 이후에 7번째 숫자가 뭔가? IIO? 좋아, 조만간 연락하지.\n[IIO = 110(2진수) = 6]", "5ac5eb3286f7746e7a509a09": "Reach the required Attention skill level", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "[스트라이크 담배] 건네주기", "5ac5ef9886f7746e7a509a2d": "레이드에서 [윌스턴 담배] 획득하기", "5ac5eff886f7740f43322559": "[윌스턴 담배] 건네주기", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "공장(Factory)맵의 두 번째 탈출구 찾기", "5ac61adf86f774741c1bf096": "공장(Factory)맵의 세 번째 탈출구 찾기", "5ac61b1486f7743a8f30fc84": "살아서 탈출하기", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "공장(Factory)맵의 네 번째 탈출구 찾기", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "[내부자(Insider)]\n나는 가식을 싫어하네. 뭐, 우리 모두 가면을 쓰고 있긴 하지만 말이야. 때로는 살아남기 위해서, 때로는 그저 두려워서 말이지. 자네도 알다시피 난 말을 잘하는 편이 아니네. 낯선 사람을 대상으로 하면 더 심하지. 그런데 자네는 괜찮은 친구인 것 같군. 나와 이렇게 대화할 정도면 다른 사람도 문제없을 거란 이야기네. 결국, 지금은 이런 개인적인 친분만이 살아남는 데 도움이 되니 말일세. 만약 파벨 예고로비치가 자네를 신용한다면 아마 화약 공급책을 마련할 수 있겠군. 그래, 그가 성인은 아니지만, 그의 화약은 꼭 필요하네.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "[내부자(Insider), 성공]\n파벨 예고로비치는 이곳에 남기로 한 몇 안 되는 사람들 중 하나라네. 군 관련 쪽 일 때문에 남은 것인지, 떠날 시간이 없었던 건지는 모르지만 말이야. 왠지, 불법적인 사업을 하는 게 아닐까 하는 느낌이 들어.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "프라퍼와의 우호도 3레벨 달성하기", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "[건스미스 - 파트 5 (Gunsmith - Part 5), 성공]\n좋은 총이군. 아주 잘 만들었네.", "5ae34b8b86f7741e5b1e5d48": "Remington Model 870을 요구 사항에 맞게 개조하기", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "[건스미스 - 파트 6 (Gunsmith - Part 6), 성공]\n흠잡을 곳 없이 훌륭하게 완성된 총이군, 고맙네. 고객에게 주문한 총이 준비되었다고 알려줘야겠어. 지금은 일감이 없다네, 내일 다시 와보게나.", "5ae3550b86f7741cf44fc799": "AKM을 요구 사항에 맞게 개조하기", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "[건스미스 - 파트 8(Gunsmith - Part 8), 성공]\nZenit AK는 준비되었나? 좋아, 저 상자에 놔두면 된다네, 고마워. 다음 주문은 내일 다시 오면 된다네, 물론 자네가 원한다면 말이지.", "5ae3570b86f7746efa6b4494": "AKS-74N을 요구 사항에 맞게 개조하기", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "[건스미스 - 파트 10(Gunsmith - Part 10), 성공]\n네트워크를 교육할 방법을 찾아낸 것 같네! 아, 그래, AK 가져왔군, 고맙네. 나중에 확인해 볼 테니 저기 구석에 두고 가게.", "5ae445f386f7744e87761331": "AK-105를 요구 사항에 맞게 개조하기", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "[건스미스 - 파트 15 (Gunsmith - Part 15)]\n소총은 완성했나? 좋아, 이리 줘보게. 내가 흥미로운 열쇠를 하나 주지, 자네가 쓰기에 유용할 거야. ULTRA 쇼핑몰에 있는 KIBA 상점 열쇠인데, 그 상점에 훌륭한 부품이 많다고 하더군. 총기 개조할 때 유용하게 쓸 수 있을 걸세.", "5ae4479686f7744f6c79b7b3": "AS VAL을 요구 사항에 맞게 개조하기", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "[사업적인 관계 (Only Business), 성공]\n우리 가족이 된 것을 환영해, 형씨. 이제, 본격적으로 비즈니스를 해볼까?", "5ae44c6886f7744f1a7eb2b8": "래그맨과의 우호도 2레벨 달성하기", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Reach level 2 loyalty with Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "[ULTRA를 다시 위대하게 (Make ULTRA Great Again), 성공]\n저격수가 따로 없구만! 정말 끝내줬어. 우리 애들이 인터체인지(Interchange)가 스캐브 시체로 가득 찼고 ULTRA는 조용해졌다고 하더라고. 자, 여기 보상이야.", "5ae44ecd86f77414a13c970e": "인터체인지(Interchange)에서 스캐브 사살하기", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "인터체인지(Interchange)에 있는 DINO CLOTHES 매장 방문하기", "5ae4511d86f7740ffc31ccb5": "인터체인지(Interchange)에 있는 TOP BRAND 매장 방문하기", "5ae4514986f7740e915d218c": "살아서 탈출하기", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "인터체인지(Interchange)에 있는 두 번째 유조차에 MS2000 마커 설치하기", "5ae452fa86f774336a39758e": "인터체인지(Interchange)에 있는 세 번째 유조차에 MS2000 마커 설치하기", "5ae4531986f774177033c3e6": "살아서 탈출하기", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "[폼생폼사 (Dressed to Kill), 성공]\n누군가 그랬지, 아름다움은 세상을 구할 거라고. 고마워, 정말 큰 도움이 됐네 형제여. 장담하건데 저 모자는 하루도 안되서 팔려나갈꺼야. 나만 믿으라고. 자, 이것도 보상으로 받아.", "5ae4543686f7742dc043c903": "우샨카 방한모 건네주기", "5ae454a086f7742be909a81a": "카우보이 모자 건네주기", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "레이드에서 [우샨카 방한모] 획득하기", "5fd89799c54dc00f463272d3": "레이드에서 [카우보이 모자] 획득하기", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "OLI 화물 목록 건네주기", "5ae9b3b186f7745bbc722762": "인터체인지(Interchange)에서 IDEA 화물 목록 입수하기", "5ae9b3c986f77432c81e2ce6": "IDEA 화물 목록 건네주기", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "[데이터베이스 - 파트 2 (Database - Part 2), 성공]\n문서를 찾았다고? 정말 고마워. 이리 건네줘, 어떤 화물이 사라진 건지 확인해 봐야겠어.", "5ae9b5bd86f774307c29df37": "인터체인지(Interchange)에서 OLI 화물 운송장 서류 입수하기", "5ae9b63286f774229110402d": "문서 건네주기", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "[눈구멍이 있는 스키 마스크] 건네주기", "5ae455fb86f7744dd8242380": "레이드에서 [필그림 여행자 가방] 획득하기", "5ae4562086f774498b05e0dc": "[필그림 여행자 가방] 건네주기", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "[BNTI Gzhel-K 방탄복] 건네주기", "5ae9b91386f77415a869b3f3": "내구도 50~100% 상태의 [BNTI Gzhel-K 방탄복] 획득하기", "5ae9b93b86f7746e0026221a": "[BNTI Gzhel-K 방탄복] 건네주기", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "[WARTECH TV-109 + TV-106 체스트 리그] 건네주기", "5af079e486f77434693ad7f8": "레이드에서 [BlackRock 체스트 리그] 획득하기", "5af07a0286f7747dba10d8ac": "[BlackRock 체스트 리그] 건네주기", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "[의류 디자인 핸드북 제1권] 건네주기", "5ae9c0e186f7746419683c5e": "인터체인지(Interchange)에서 [의류 디자인 핸드북 제2권] 획득하기", "5ae9c10686f774703201f146": "[의류 디자인 핸드북 제2권] 건네주기", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "[카리스마가 성공을 불러온다 (Charisma Brings Success), 성공]\n워 워, 진정하게, 난 자네 편이라고! 미안하네 잠깐 장난 좀 친 거야. 정말로 카리스마를 마스터한 것 같군, 아주 좋아. 그럼 이제 본격적으로 비즈니스를 해볼까?", "5ae9c29386f77427153c7fb0": "[카리스마] 스킬 레벨 올리기", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "[화낼 필요 없잖아 (No Fuss Needed), 성공]\n문제없이 잘 넘어간 모양이지? 잘했네.", "5ae9c38e86f7743515398707": "테라피스트와의 우호도 3레벨 달성하기", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "목표 위치에 [쉬마그 (초록색)] 숨겨두기", "5ae9e2a286f7740de4152a0a": "목표 위치에 [레이벤치 힙스터 선글라스] 숨겨두기", "5ae9e2e386f7740de4152a0d": "목표 위치에 [원형 선글라스] 숨겨두기", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "[ULTRA 24시 (Sales Night)]\nULTRA에서 스캐브들 혼쭐낸 거 기억하지? 그때보다 지금이 더 심각해졌어. 온갖 쓰레기 같은 놈들이 다 몰려온다는데 가서 정리 좀 해줘야겠어. 인터체인지(Interchange)의 상황이 어떤지 확인해보고, 최소한 걸어 다닐 수 있게 정리를 좀 해줘. 안전한 루트를 찾거나 뭐 기타 등등 말이야. 정말 필요한 일이니 부탁해.", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "[ULTRA 24시 (Sales Night), 성공]\n와, 귀신? 투명인간? 도대체 뭐야? 잠깐만, 지도 좀 가져오고. 그래서 가장 안전한 길이 여기랑 여기라고? 좋아, 내 똘마니들에게 알려줘야겠군. 고맙네, 친구. 정말 큰 도움이 됐어.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "인터체인지(Interchange)에서 생존하여 탈출하기", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "[감독관 (Supervisor), 성공]\n그래, 이런 게 진정한 전사지! 부하들을 모아서 물건을 챙겨오라고 해야겠어. 자 여기 보상이야. 널 위한 방탄복도 새로 입고되어 있으니 한번 확인해 봐.", "5ae9e55886f77445315f662a": "[Goshan cash register key] 획득하기", "5ae9e58886f77423572433f5": "[Goshan cash register key] 건네주기", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "[건스미스 - 파트 17(Gunsmith - Part 17), 성공]\n하루 종일 눈이 먼 상태로 있고 싶지 않으면 전술 조명은 켜지 말게! 아무튼, 잘했어, 상자 위에 올려두게.", "5b47796686f774374f4a8bb1": "AK-102를 요구 사항에 맞게 개조하기", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "[건스미스 - 파트 12(Gunsmith - Part 12), 성공]\n어서, 이리 줘 봐. 고객한테 최대한 빨리 넘겨야 하네. 자네가 이 MPX를 만드는 이유를 아무에게도 말하지 않았을 거라 믿지. 그래, 이제 고객에게 행운이나 빌어줘야겠어.", "5b477b3b86f77401da02e6c4": "SIG MPX를 요구 사항에 맞게 개조하기", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "[건스미스 - 파트 18(Gunsmith - Part 18), 성공]\n고맙네. 아무 곳에나 놓으면 돼. 지금은 좀 바쁘니 나중에 보자고.", "5b477f1486f7743009493232": "AKMN을 요구 사항에 맞게 개조하기", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "[건스미스 - 파트 20(Gunsmith - Part 20), 성공]\n소총은 준비됐나? 좋아. 내 생각엔 자네가 스나이퍼의 진짜 이름이 디마라는 걸 이미 알아차린 것 같은데 맞나? 내가 저번에 실수로 흠흠... 아무튼, 그에 대해선 다른 사람들에게 절대 말하면 안 된다네. 무슨 말인지 이해했을 거라 믿고 있겠네.", "5b47824386f7744d190d8dd1": "M1A를 요구 사항에 맞게 개조하기", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "[건스미스 - 파트 22(Gunsmith - Part 22), 성공]\n전시장에 넣고 싶을 정도로 훌륭하군! 정말 걸작이 탄생했어.", "5b4783ba86f7744d1c353185": "M4A1을 요구 사항에 맞게 개조하기", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "[전쟁의 피 - 파트 2 (The Blood of War - Part 2), 성공]\n오, 좋아, 이리 줘. 사실 너도 알아냈겠지만, 이 물건은 메카닉이 요청하더라고, 오늘 바로 보내야겠어. 도와줘서 정말 고마워.", "5b47884886f7744d1c35327d": "레이드에서 [연료 첨가제] 획득하기", "5b47886986f7744d1a393e65": "[연료 첨가제] 건네주기", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "[고양이 조각상] 건네주기", "5b478a6c86f7744d190d8f4d": "레이드에서 [롤러 서브마리너 골드 손목시계] 획득하기", "5b478a8486f7744d1c35328b": "[롤러 서브마리너 골드 손목시계] 건네주기", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "레이드에서 [황금알] 획득하기", "62a70058ec21e50cad3b6709": "[황금알] 건네주기", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "지정된 장소에 [Peltor ComTac 2 헤드셋] 숨겨두기", "5b478c7386f7744d1a393fb1": "지정된 장소에 [6B47 헬멧] 숨겨두기", "5b478cb586f7744d1a393fb5": "지정된 장소에 [BNTI Gzhel-K 방탄복] 숨겨두기", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "인터체인지(Interchange)에서 두 번째 미니버스를 찾아 MS2000 마커를 설치하기", "5b478dca86f7744d190d91c2": "인터체인지(Interchange)에서 세 번째 미니버스를 찾아 MS2000 마커를 설치하기", "5b478de086f7744d1c3533a1": "살아서 탈출하기", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "인터체인지(Interchange)에서 세 번째 [화학 약품 보관함] 획득하기", "5b4c832686f77419603eb8f0": "두 번째 화학 약품 보관함 건네주기", "5b4c836486f77417063a09dc": "세 번째 화학 약품 보관함 건네주기", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "[비타민 - 파트 2 (Vitamins - Part 2), 성공]\n좋아, 시작하자고! 내 똘마니들이 저 채혈팩 쪼가리에 들어있는 유전자 조각들로 회복되면 좋겠다만, 선택의 여지가 없군.", "5b47905886f7746807461fe2": "[2M 방독면] 건네주기", "5b4790a886f774563c7a489f": "[의료 채혈세트] 건네주기", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "레이드에서 [2M 방독면] 획득하기", "5ec1388d83b69d213d3c2ee0": "레이드에서 [의료 채혈세트] 획득하기", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "삼림(Woods)에서 제재소 부두를 감시하기 위한 [WI-FI 카메라] 설치하기", "5b47936686f77427fd044025": "세관(Customs)에서 항구로 가는 길(Road to the port)을 감시하기 위한 [WI-FI 카메라] 설치하기", "5b47938086f7747ccc057c22": "인터체인지(Interchange)에 있는 Kiba Arms 상점의 입구를 감시하기 위한 [WI-FI 카메라] 설치하기", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "세 번째 [모터 컨트롤러] 건네주기", "5b4c7aec86f77459732b4b08": "두 번째 [단일 축 광섬유 자이로스코프] 건네주기", "5b4c8e6586f77474396a5400": "해안선(Shoreline)에서 두 번째 [단일 축 광섬유 자이로스코프] 획득하기", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtain the first motor controller on Woods", "66d07de6c7ef9040fff0b789": "Hand over the first controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "인터체인지(Interchange)의 Generic 상점, BTR-82A 장갑차 옆에 있는 침대 매트리스 아래에 [금목걸이] 3개 놓기", "5b4796c086f7745877352c2c": "세관(Customs) 기숙사 3층에 있는 전자레인지 안에 [금목걸이] 3개 놓기", "5b47971086f774587877ad34": "삼림(Woods) 제재소에서 나란히 놓여있는 3개의 숙소 중, 중간 숙소에 [금목걸이] 3개 놓기", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "22:00~10:00 시간대에 인터체인지(Interchange)에서 PMC 사살하기", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "[타르코프의 저격수 - 파트 1 (The Tarkov Shooter - Part 1), 성공]\n그래, 아직 자이체프같아진 느낌은 안 드는가? 스나이퍼는 첫 테스트 결과에 만족하고 벌써 다음 테스트를 준비해놨다네.", "5bc850d186f7747213700892": "볼트액션 소총으로 기계식 조준기만 사용하여 40미터 이상 거리의 스캐브 사살하기", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "[타르코프의 저격수 - 파트 2 (The Tarkov Shooter - Part 2), 성공]\n나쁘지 않아. 심지어 나도 그렇게 정확하게 쏘긴 힘들걸세. 나도 이젠 늙은 거지. 자네가 저격하러 나간 동안, 스나이퍼는 자넬 위한 다음 테스트를 준비해 놨다네.", "5bd983d886f7747ba73fc246": "볼트액션 소총으로 40미터 이상의 거리에서 다리 맞추기", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "볼트액션 소총으로 40미터 이상의 거리에서 머리 맞추기", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "[타르코프의 저격수 - 파트 3 (The Tarkov Shooter - Part 3), 성공]\n무사히 두 발로 서있는걸 보니 반사신경이 훌륭하구먼! 약속했던 모자도 받게. 이제 다음 테스트가 자넬 기다리고 있다네.", "5bc47e3e86f7741e6b2f3332": "25미터 이내의 거리에서 볼트액션 소총으로 PMC 사살하기", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "[타르코프의 저격수 - 파트 4 (The Tarkov Shooter - Part 4), 성공]\n준비됐나? 그럼 다시 일하러 가보세. 스나이퍼가 자넬 위해 아주 흥미로운 걸 준비했다네.", "5bc4813886f774226045cb9a": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Kill PMCs using bolt rifles from a distance of at least 80m", "657b0567ec71635f16471dd2": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "[타르코프의 저격수 - 파트 5 (The Tarkov Shooter - Part 5), 성공]\n잘했네 올빼미. 야간의 약탈자 놈들을 쏙쏙 골라잡았군.", "5bc84f7a86f774294c2f6862": "야간(21:00 ~ 05:00)에 세관(Customs)에서 볼트액션 소총을 사용해 스캐브 사살하기", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "[타르코프의 저격수 - 파트 6 (The Tarkov Shooter - Part 6), 성공]\n저격수들 간의 싸움에서는 반칙이 존재하지 않지. 잘했네.", "5bc483ba86f77415034ba8d0": "볼트액션 소총을 사용해서 스나이퍼 스캐브 사살하기", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "[타르코프의 저격수 - 파트 7 (The Tarkov Shooter - Part 7), 성공]\n어느 방향에서 사격하는지 모를 때 적들은 정말 무력해지지. 잘했네.", "5bc485b586f774726473a858": "소음기가 장착된 볼트액션 소총으로 45미터 이상의 거리에 있는 PMC 사살하기", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "This is not an easy task. Try again.", "5bc4893c86f774626f5ebf3e successMessageText": "[타르코프의 저격수 - 파트 8 (The Tarkov Shooter - Part 8), 성공]\n똑똑하게 행동할 수 있을 만큼 똑똑하지는 않았나 보군. 구식이더라도 좋은 볼트액션 소총이 도움되기도 하고 말일세. 스나이퍼는 아직 따로 연락이 없어서 다음 임무가 나오기 전까지 잠시 기다려야 할 것 같네. 준비되면 자네에게 연락하지.", "5bc48aed86f77452c947ce67": "Eliminate PMC operatives with a headshot without dying while using a bolt-action rifle", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "You cannot die or leave the raid until the quest is handed over to the customer (Status: Killed, Ran through, MIA)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "기숙사 3층 중앙 계단 맞은편 쓰레기 더미에 [롤러 서브마리너 골드 손목시계] 숨겨두기", "5c12320586f77437e44bcb15": "기숙사 3층 중앙 계단 맞은편 쓰레기 더미에 [가짜 정보가 들어있는 USB] 숨겨두기", "5c1233ac86f77406fa13baea": "퀘스트가 끝날 때까지 세관(Customs)에서 스캐브를 죽이면 안 됩니다.", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "세관(Customs)에서 [가짜 정보가 들어있는 USB] 획득하기", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "[소음기 사용법 (Silent Caliber), 성공]\n정말 잘해줬어! 진심으로 존경스럽군! 재밌는 일거리가 생긴다면, 널 최우선으로 불러주지.", "5c0bc95086f7746e784f39ec": "소음기가 장착된 12게이지 산탄총을 사용하여 스캐브 사살하기", "5c0bcc9c86f7746fe16dbba9": "소음기가 장착된 12게이지 산탄총을 사용하여 PMC 사살하기", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Good work, my friend! Everything went according to the plan.", "5c1242fa86f7742aa04fed52": "Eliminate PMC operatives in the time period of 21:00-06:00 (excluding Factory and The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "[시범운용 - 파트 1(Test Drive - Part 1), 성공]\n그래서, 어떤 느낌인가? 좀 쓸만한 장난감 같아 보이나? 좋아, 이리 줘보게. 이건 도와준 대가야. 계속 연락하겠네, 아마 테스트해야 할 물건이 좀 더 들어올 것 같네.", "5c1b765d86f77413193fa4f2": "Hybrid 46 소음기, Schmidt & Bender PM II 1-8x24 조준경이 장착된 M1A 소총으로 60미터를 초과한 거리의 PMC 사살하기", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "[부싯돌 (Flint)]\n바로 그거야! 이제 어떠한 거지 같은 상황이 오더라도 바지에 오줌을 지리진 않겠군.", "5c0bdbb586f774166e38eed5": "[스트레스 저항력] 스킬 레벨 올리기", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "리저브(Reserve)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", "5c137ef386f7747ae10a821e": "해안선(Shoreline)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", "5c137f5286f7747ae267d8a3": "세관(Customs)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "등대(Lighthouse)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", "63aec6f256503c322a190374": "타르코프 시내(Streets of Tarkov)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", "64b694c8a857ea477002a408": "인터체인지(Interchange)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "[사이코 저격수 (Psycho Sniper)]\n숙련된 저격수는 그렇게 스스로 포기하지 않아. 호흡을 잘 조절해서 다시 시도해보게.", "5c0be13186f7746f016734aa successMessageText": "[사이코 저격수(Psycho Sniper), 성공]\n솔직히 말해서, 자네가 성공할 거라고 확신하지 못했네. 자네는 확실히 평범한 사람들과는 다른 것 같아.", "5c0be2b486f7747bcb347d58": "[볼트액션 소총] 스킬 레벨 올리기", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "볼트액션 소총을 사용하여 죽지 않고 PMC 사살하기", "64b67fcd3e349c7dbd06bd16": "퀘스트가 진행되는 도중에 죽거나 레이드에서 나가면 안됩니다 (상태: 사망(KIA), 탈주(Left the Action), 실종(MIA))", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "[사설 진료소(Private Clinic), 성공]\n가져오셨나요? 저쪽 구석에 두세요. 조심해요, 굉장히 깨지기 쉬운 물건들이에요. 만에 하나 진료소 계획이 실패하더라도 이 물건들에 관심 가질만한 사람들을 몇 명 알고 있어요. 저와 당신만 알고 있자고요. 왜 이 비싼 물건들을 낭비하겠어요?", "5c0be66c86f7744523489ab2": "[검안경] 건네주기", "5c0be69086f7743c9c1ecf43": "[LEDX 피부 트랜스일루미네이터] 건네주기", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "레이드에서 [검안경] 획득하기", "5fd8935b7dd32f724e0fe7ee": "레이드에서 [LEDX 피부 트랜스일루미네이터] 획득하기", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "[운동선수(Athlete), 성공]\n솔직히, 당신의 일 외적인 부분들도 믿어도 될지 확신이 서지 않았어요.", "5c0d0dfd86f7747f482a89a5": "[건강] 스킬 레벨 올리기", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "[무기 대여 - 파트 2(Lend Lease - Part 2), 성공]\n아주 좋소! 자네 덕분에 고객들이 행복해하겠군. 여기 보상일세.", "5c138c4486f7743b056e2943": "[Virtex 프로그래밍 가능한 프로세서] 건네주기", "5c138d4286f774276a6504aa": "[군용 COFDM 무선 신호 전송기] 건네주기", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "레이드에서 [Virtex 프로그래밍 가능한 프로세서] 획득하기", "5ec13da983b69d213d3c2ee4": "레이드에서 [군용 COFDM 무선 신호 전송기] 획득하기", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "[척탄병(Grenadier)]\n좋아, 사지는 아직 멀쩡하게 다 붙어있구만! 임무도 잘 수행했고. 여기 보상을 받아 가게.", "5c1b760686f77412780211a3": "수류탄으로 PMC 사살하기", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "[청소부(Decontamination Service), 성공]\n벌써 끝나셨나요? 보다시피, 실제로 효과가 있었어요. 그들의 우두머리가 이제 제법 공손하게 말하더라고요. 저보고 뭐라 하지 마세요, 이 세상에서는 그런 쓰레기하고도 협상해야 할 때가 있으니까요. 여기, 보상이에요.", "5c1b778286f774294438b536": "인터체인지(Interchange)에서 특정 장비를 착용한 상태로 스캐브를 근거리(60미터 이내)에서 사살하기", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "인터체인지(Interchange)에서 UN 유니폼 (UNTAR 헬멧, MF-UNTAR 방탄복, M4A1 소총)을 착용한 상태로 스캐브 사살하기", "5c1b713f86f774719c22e8a0": "해안선(Shoreline)에서 UN 유니폼 (UNTAR 헬멧, MF-UNTAR 방탄복, M4A1 소총)을 착용한 상태로 스캐브 사살하기", "5c1fd66286f7743c7b261f7b": "삼림(Woods)에서 UN 유니폼 (UNTAR 헬멧, MF-UNTAR 방탄복, M4A1 소총)을 착용한 상태로 스캐브 사살하기", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "타르코프 시내(Streets of Tarkov)에서 UN 유니폼 (UNTAR 헬멧, MF-UNTAR 방탄복, M4A1 소총)을 착용한 상태로 스캐브 사살하기", "65e08aa9f5879b2586d5fd4c": "그라운드 제로(Ground Zero)에서 UN 유니폼 (UNTAR 헬멧, MF-UNTAR 방탄복, M4A1 소총)을 착용한 상태로 스캐브 사살하기", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "해안선(Shoreline)에서 \"생존(Survived)\" 상태로 탈출하기", "5c13989886f7747878361a50": "공장(Factory)에서 \"생존(Survived)\" 상태로 탈출하기", "5c1931e686f7747ce71bcbea": "연구소(The Lab)에서 \"생존(Survived)\" 상태로 탈출하기", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "리저브(Reserve)에서 \"생존(Survived)\" 상태로 탈출하기", "629f08e7d285f377953b2af1": "등대(Lighthouse)에서 \"생존(Survived)\" 상태로 탈출하기", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "삼림(Woods)에서 연료가 저장된 두 번째 장소에 MS2000 마커 설치하기", "5c10f94386f774227172c576": "삼림(Woods)에서 연료가 저장된 세 번째 장소에 MS2000 마커 설치하기", "5c10f94386f774227172c577": "살아서 탈출하기", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "[비료(Fertilizers), 성공]\n이제야 말이 통하는군! 나는 인두기를 챙기고 작업하러 가겠네. 그리고 자네도 알다시피 시장 또한 안정되었네.", "5c1129ed86f7746569440e88": "[전선] 건네주기", "5c112a1b86f774656777d1ae": "[축전기] 건네주기", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "레이드에서 [전선] 획득하기", "5ca71a1e86f7740f5a5b88a2": "레이드에서 [축전기] 획득하기", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "[스캐빈저 (Scavenger), 성공]\n이제 당신이 가방에 돈다발을 쑤셔 넣고 돌아올 수 있다는 걸 확신할 수 있겠네.", "5c112dc486f77465686bff38": "[확인] 스킬 레벨 올리기", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "[잘 사는 건 죄가 아니야 - 파트 2 (Living High is Not a Crime - Part 2), 성공]\n가지고 왔어? 좋아, 그나저나 다음엔 뭘 가져다 달라고 할지 걱정이야. 설마.. 다이아몬드 변기? 진짜 그 친구가 원한다면 한번 찾아보긴 해야겠지만 아무튼, 도와줘서 정말 고마워.", "5c11427386f77430ff393793": "[골동품 찻주전자] 건네주기", "5c122c5f86f77437e44bcb0e": "[골동품 꽃병] 건네주기", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "레이드에서 [골동품 찻주전자] 획득하기", "5ca7258986f7740d424a2044": "레이드에서 [골동품 꽃병] 획득하기", "62a700893e015d7ce1151d90": "레이드에서 [Axel 앵무새 조각상] 획득하기", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "[준비작업 (Setup), 성공]\n내 부하들이 말하길, 세관(Customs)에서 3차 세계대전이 벌어지고 있다더군! BEAR랑 USEC들이 스캐브들을 보이는 족족 도축해버리고 있어! 아주 훌륭한 작품이야. 여기 약속했던 보상 받아가.", "5c1fa9c986f7740de474cb3d": "세관(Customs)에서 요구 사항에 맞게 장비를 착용하고 PMC 사살하기", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "피스키퍼와의 우호도 4레벨 달성하기", "5c12489886f77452db1d2b05": "프라퍼와의 우호도 4레벨 달성하기", "5c1248ef86f77428266184c2": "테라피스트와의 우호도 4레벨 달성하기", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "[수입(Import), 성공]\n정말 가져와 줬군! 하하! 정말 고마워! 한번 가까이서 봐도 되겠나?", "5c139eb686f7747878361a72": "[UHF RFID 리더기] 건네주기", "5c139eb686f7747878361a73": "[VPX 플래시 저장소 모듈] 건네주기", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "레이드에서 [UHF RFID 리더기] 획득하기", "5ec14080c9ffe55cca300867": "레이드에서 [VPX 플래시 저장소 모듈] 획득하기", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "[수집가 (Collector)]\n아, 너로군. 동네에 소문난 말썽꾸러기. 그래, 난 너에 대해서 잘 알고 있지. 그리고 한 가지 배워 두는 게 좋을 거야. 너만이 유일한 사람일 거라 착각하지 마. 세상에는 너 말고도 사람들이 많고, 어쩌면 너보다 훨씬 실력 있을지도 모르지. 그들은 어디든 돌아다니고, 자신들의 거래만을 신경 쓰고, 몇몇 물건들을 남기고 가지. 그리고 중요한 점은, 내가 그 물건들을 원한다는 거지. 찾기 힘들겠지만, 찾아만 온다면 만족스럽게 보상해 주지. 단, 모든 물건은 네가 직접 레이드에서 찾은 물건이어야 해. 다른 상인들에게서 구하지 않은 걸로 말이야. 걱정 마, 난 사람들이 거짓말을 하고 있는 건지 아닌지 알 수 있어.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "[수집가 (Collector), 성공]\n다 찾아왔나? 좋아. 정말로 너 자신이 쓸모 있다는 걸 증명했군. 약속한 대로, 보상을 가져가.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "[낡은 골동품 책] 건네주기", "5c51bf8786f77416a11e5cb2": "[#FireKlean 총기 윤활유] 건네주기", "5c51bf9a86f77478bf5632aa": "[황금 수탉] 건네주기", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "[스프랫 통조림] 건네주기", "5c51c24c86f77416a11e5cb7": "[가짜 콧수염] 건네주기", "5c51c25c86f77478bf5632af": "[Kotton 비니] 건네주기", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "[오래된 부시] 건네주기", "5c52da5886f7747364267a14": "[골동품 도끼] 건네주기", "5cb5ddd386f7746ef72a7e73": "레이드에서 [오래된 부시] 획득하기", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "레이드에서 [스프랫 통조림] 획득하기", "5cb5df7186f7747d215eca08": "레이드에서 [가짜 콧수염] 획득하기", "5cb5df8486f7746ef82c17ea": "레이드에서 [Kotton 비니] 획득하기", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "레이드에서 [까마귀 동상] 획득하기", "5ec7998dc1683c0db84484e7": "[까마귀 동상] 건네주기", "5ec79aaac1683c0db84484e8": "레이드에서 [Pestily 역병 마스크] 획득하기", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "[WZ 지갑] 건네주기", "60d0748820a6283a506aebb1": "레이드에서 [LVNDMARK의 쥐약] 획득하기", "60d074ef401d874962160aee": "[LVNDMARK의 쥐약] 건네주기", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "레이드에서 [Smoke 발라클라바] 획득하기", "60e827faf09904268a4dbc40": "[Smoke 발라클라바] 건네주기", "62a6ff004de19a4c3422ea5d": "레이드에서 발견한 [밋산 지게차 열쇠] 건네주기", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "[소개(Introduction), 성공]\n가지고 왔나? 잘했어. 그래, 자네는 예거와 일할 가치가 있어 보이는구만. 그는 자네를 위한 충분한 일거리들을 제공할 거야.", "5d249a6e86f774791546e952": "예거가 남긴 암호 메시지 획득하기", "5d249aa286f77475e8376399": "메시지 건네주기", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "삼림(Woods)에서 예거의 캠프 찾기", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "레이드에서 [Iskra 전투식량] 획득하기", "5d24bb4886f77439c92d6bad": "레이드에서 [Packs of instant noodles] 획득하기", "5d24bb7286f7741f7956be74": "레이드에서 [Tushonka 큰 쇠고기 스튜 통조림 투숀카] 획득하기", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "[생존가의 길 - 무방비하지만 위험한 (The Survivalist Path - Unprotected but Dangerous), 성공]\n한 유명한 사람이 이렇게 말하더군. \"나비처럼 날아서 벌처럼 쏴라.\" 물론 이번에 자네가 직접 겪어봤으니 잘 알겠지. 그래, 방탄판이 없어지니 몸이 홀가분해지는 걸 느낄 수 있었나? 정말 빠르게 움직일 수 있다면, 쓰레기를 처리하는데 방탄판 정도는 없어도 충분하다네.", "5d25af3c86f77443ff46b9e7": "삼림(Woods)에서 어떤 종류의 방탄복도 착용하지 않고 스캐브 사살하기", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "삼림(Woods)에서 ZB-016 벙커에 [0.6L 물병] 숨겨두기", "5d2deedc86f77459121c3118": "삼림(Woods)에서 ZB-014 벙커에 [Iskra 전투식량] 숨겨두기", "5d2defc586f774591510e6b9": "삼림(Woods)에서 ZB-014 벙커에 [0.6L 물병] 숨겨두기", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "[생존가의 길 - 지브치크 (The Survivalist Path - Zhivchik), 성공]\n세상에 그렇게 오래 버틸 수 있다니! 여기 마실 거리를 준비해놨네. 체력부터 회복하게나.", "5d25c5a186f77443fe457661": "탈수 상태로 5분 동안 살아남기 (공장[Factory] 제외)", "5d9f035086f7741cac4a9713": "살아서 탈출하기", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "[생존가의 길 - 상처 입은 짐승 (The Survivalist Path - Wounded Beast), 성공]\n해결했나? 정말 잘했네. 자네의 훈련도 거의 끝나가는군. 이대로만 계속해 준다면, 예상보다 빨리 이 도시를 바로잡을 수 있겠어.", "5d25c8c986f77443e47ad47a": "[고통] 효과를 받는 상태에서 스캐브 사살하기", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "[생존가의 길 - 상남자 (The Survivalist Path - Tough Guy), 성공]\n성공했나? 훌륭해! 자네가 흘린 땀만큼 피를 적게 흘릴 수 있다네! 너무 기뻐하지는 말게나, 자넬 위한 임무가 더 남아있으니 말일세.", "5d25d09286f77444001e284c": "삼림(Woods)에서 레이드 한판 동안 의약품을 한 번도 사용하지 않고 스캐브 처치하기", "5d25d0d186f7740a22515975": "퀘스트가 끝날 때까지 어떤 중류의 의약품도 사용해서는 안 됩니다.", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "[생존가의 길 - 냉혈한 (The Survivalist Path - Cold Blooded), 성공]\n그래, 손떨림도 극복했다고? 훌륭해! 솔직히, 자네가 성공할 거라고는 생각하지 못했네. 이번 임무는 정말 어려웠거든.", "5d25d4e786f77442734d335d": "손떨림 효과를 받는 상태에서 PMC를 헤드샷으로 사살하기", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "[생존가의 길 - 자토이치 (The survivalist path - Zatoichi), 성공]\n살아남았군? 누구도 예측하지 못했을 걸세.", "5d25dc2286f77443e7549028": "섬광 수류탄에 의해 눈이 먼 상황에서 PMC 사살하기", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "[생존가의 길 - 수리부엉이 (The Survivalist Path - Eagle-Owl), 성공]\n몇 명이나 있었다고? 6명? 그걸 모두 \"장비\" 없이 처리했다고? 인정하지, 자넨 정말 훌륭한 사냥꾼이야.", "5d25fd8386f77443fe457cae": "21:00 ~ 04:00 시간대에 야간 투시경이나 열영상 조준경 없이 스캐브 사살하기 (공장[Factory] 제외)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "[생존가의 길 - 의무병 (The Survivalist Path - Combat Medic), 성공]\n훈련이 어려워질수록 전투에서는 더 쉬워진다고 많은 사람이 이야기한다네. 이 기술은 정말 쓸모 있을 걸세, 내가 보증하지. 자네의 훈련이 거의 끝났다네. 이제 사냥꾼이 될 준비가 된 것 같군.", "5d2605ef86f77469ef0f7622": "[활력] 스킬 레벨 올리기", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "[사냥꾼의 길 - 구역 확보 (The Huntsman Path - Secured Perimeter)]\n잘했네! 분명 나머지들이 다시 오겠지만, 그래도 이전처럼 약탈하기 전에 다시 한번 생각해 보게 되겠지.", "5d26143c86f77469ef0f894c": "공장(Factory) 사무실 구역에서 PMC 처치하기 (층수 상관없이 가능)", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "르샬라 사살하기", "5d2710e686f7742e9019a6b2": "르샬라의 황금색 TT 권총 건네주기", "5d66741c86f7744a2e70f039": "레이드에서 르샬라의 황금색 TT 권총 획득하기", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "[사냥꾼의 길 - 삼림 청소 (The Huntsman Path - Forest Cleaning), 성공]\n잘못된 길로 들어선 순간, 그들은 죽음을 자초한걸세. 자넨 올바른 일을 한 거야, 고맙네.", "5d2701b586f77469f1599fe2": "타르코프의 모든 지역에서 스캐브 사살하기", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "[사냥꾼의 길 - 상황 통제 (The Huntsman Path - Controller), 성공]\n교훈을 얻었는가? 훌륭하군. 잘 보게, 적을 무장해제할 수 있는 방법은 다양하다네.", "5d307fc886f77447f15f5b23": "섬광 수류탄에 의해 눈이 먼 상태의 PMC 사살하기", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "킬라 처치하기", "5d271a3486f774483c7bdb12": "킬라의 헬멧 건네주기", "5d667a8e86f774131e206b46": "레이드에서 킬라의 헬멧 획득하기", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "슈트르만 처치하기", "5d272a0b86f7745ba2701532": "[Shturman's stash key] 건네주기", "5d2f464e498f71c8886f7656": "레이드에서 [Shturman's stash key] 획득하기", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "[사냥꾼의 길 - 정의 (The Huntsman Path - Justice), 성공]\n제복의 명예를 지켜냈나? 훌륭해. 법을 수호하기로 한 사람이 법을 어기는 것만큼 비열한 짓은 없지.", "5d272bd386f77446085fa4f9": "경찰복을 입은 스캐브 사살하기 (르샬라의 경호원)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "[사냥꾼의 길 - 사악한 경비원 (The Huntsman Path - Evil Watchman), 성공]\n자네가 한 일에 대해 들었다네. 보아하니 바깥이 훨씬 조용해진 것 같군. 약탈자들이 확실히 줄었어. 진심으로 고맙네.", "5d2733c586f7741dea4f3072": "세관(Customs)의 기숙사 지역에서 PMC 사살하기", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "[사냥꾼의 길 - 말살자 - 파트 1 (The Huntsman Path - Eraser - Part 1), 성공]\n어서 오게, 사냥꾼. 잘 처리했나? 얼마나 귀찮았을지 상상이 안 가는군. 수고 많았네.", "5d27369586f774457411b264": "글루하 사살하기", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "[사냥꾼의 길 - 말살자 - 파트 2 (The Huntsman Path - Eraser - Part 2), 성공]\n레이더들이 연구소와 군사시설 근처에서 활동하고 있다라... 제발 또 다른 전쟁이 시작되는 게 아니었으면 좋겠군, 이미 충분히 난장판이지 않나. 어쨌든, 지금 당장은 우리가 해결할 수 있는 문제는 아닌 것 같네.", "5d273a4d86f774457411b266": "레이더 사살하기", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "[구급차 (Ambulance), 성공]\n가져왔는가? 좋네. 더는 사람들이 아무 도움도 받지 못하고 죽어가는 모습을 보지 않아도 되겠군.", "5d27446f86f77475a86565a3": "[휴대용 제세동기] 건네주기", "5d7782c686f7742fa732bf07": "[CMS 휴대용 수술 키트] 건네주기", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "레이드에서 [휴대용 제세동기] 획득하기", "5ec1538a92e95f77ac7a2529": "레이드에서 [CMS 휴대용 수술 키트] 획득하기", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "해안선(Shoreline)의 버려진 마을에서 지역위원장의 집 찾기", "5d357b9586f7745b422d653f": "해안선(Shoreline)의 버려진 마을에서 낚시꾼의 집 찾기", "5d357bb786f774588d4d7e27": "해안선(Shoreline)의 버려진 마을에서 사제의 집 찾기", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "해안선(Shoreline)에서 \"생존(Survived)\" 상태로 탈출하기", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "[수상한 사업 (Shady Business), 성공]\n가져왔나? 좋아. 이제 그가 무엇을 꾸미고 있는지 알 수 있겠군. 메카닉이랑 같이 확인해 보고 알려줄 테니, 조금 있다 다시 오게나.", "5d27491686f77475aa5cf5b9": "[USB 보안 플래시 드라이브] 건네주기", "5d6949e786f774238a38d9e0": "레이드에서 [USB 보안 플래시 드라이브] 획득하기", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "사진첩 건네주기", "5d357e0e86f7745b3f307c56": "헬스 리조트에서 창밖으로 해안가가 보이는 예거의 방 찾기", "5d357e8786f7745b5e66a51a": "예거의 사진첩 획득하기", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "[낚시터 (Fishing Place), 성공]\n가져왔나? 정말 고맙네. 이제 이 연구소를 어떻게 찾는지가 문제인데, 이건 내가 알아서 하도록 하지. 걱정 말게.", "5d2f375186f7745916404955": "레이드에서 [TerraGroup Labs access keycard] 획득하기", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "[TerraGroup Labs access keycard] 건네주기", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "[사냥 여행 (Hunting Trip)]\n들어오게나. 차 한잔 들겠는가? 아무튼, 조만간 친구 몇 명을 만날 예정이네. 그들과 함께 사냥을 나가고 싶지만, 겨우 MP 산탄총을 주면서 사냥하자고 할 수는 없는 노릇이지. 쓸만한 서방 소총이 몇 자루 있지만, 먼저 무기의 영점 조정이 맞게 됐는지 확인해 봐야 하네. 그리고 마침 좋은 과녁이 있지. 과녁의 이름은 슈트르만이라네. 그러니 내가 준비한 소총으로 시험해 보게. 이 조준경은 제법 고배율이라 사람 얼굴에 있는 점도 셀 수 있을 정도니, 멀리서 자리 잡는 게 좋을 거야. 보상은 걱정하지 말게. 충분히 만족할 만큼 챙겨주겠네. \n\n(Remington M700 저격소총에 FullField TAC30 1-4x24 조준경 부착)", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "[사냥 여행 (Hunting Trip)]\n좋은 소총들이군! 잘했네! 어쩌면 나도 총기 제작에 취미가 들린 것 같네, 하다 보니 꽤나 재밌는 것 같네. 보상도 확인해 보게, 자네에게 필요할걸세.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Locate and neutralize Shturman with a headshot from over 75 meters away while using an M700 sniper rifle with the specified scope", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "[리저브 (Reserve)]\n이게 누구 신가! 어서 오게! 자네 헬스 리조트와 상당히 가깝게 붙어있는 군사기지에 대해 알고 있나? 아마 그곳에 가본 적이 있을 걸세. 최근 군사기지의 오래된 창고에 식량이 많이 쌓여있다는 소문을 들었네. 그리고 평범한 스캐브가 아닌 잘 무장된 약탈자들이 그곳에 돌아다닌다고 하더군. 자네가 그 창고들을 확인해서 뭔가 남은 게 있는지 확인해 줬으면 좋겠네. 정말 위험한 사람들이 많으니 조심하게나.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "[리저브 (Reserve), 성공]\n그들이 벌써 식량을 다 가져갔다고? 젠장, 조금 더 서둘러야 했는데.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "리저브(Reserve)에 있는 식량창고의 위치 알아내기", "629f1259422dff20ff234b4d": "살아서 탈출하기", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "[6-STEN-140-M 탱크 배터리] 건네주기", "5d4c020a86f77449c463ced6": "레이드에서 [OFZ 30x165mm 포탄] 획득하기", "5d4c028c86f774389001e027": "[OFZ 30x160mm 포탄] 건네주기", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "[하루에 사과 한 개가 의사를 멀리하게 해준다(An Apple a Day Keeps the Doctor Away), 성공]\n그래서, 결정하셨나요? 주사 몇 방이면 충분해요. 여기, 그리고 여기에. 적어도 며칠 동안은 안정적으로 휴식하면서 비타민을 좀 드셔야 할 거예요.", "5d6fb8a886f77449db3db8b6": "루블 건네주기", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "[교관(Mentor), 성공]\n뭐, 그래서 교육은 잘 받았소? 당신 정도라면 금방 배울 줄 알았소.", "5d6fbf0f86f77449d97f738e": "유로 건네주기", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "[간지나는 놈 (The Stylish One), 성공]\n벌써 처리했어? 역시 굉장하군. 기다려봐, 치수도 재야하고 박음질도 어떻게 돼 있나 봐야 하니까. 약속은 지켜야지. 근데 이 재질이 요즘 구하기 힘든 거라서 가격이 좀 나갈 거야. 이 부분은 이해 좀 해줘, 그만한 가치는 있을 거야. 너도 알겠지만, 이 상징적인 삼선은 절대 못 참지.", "5dc53fd386f77469c87589a3": "킬라 사살하기", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "원단 건네주기", "5e38356d86f7742993306cac": "원단 건네주기", "5e3835e886f77429910d4465": "[낙하산 줄] 건네주기", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "원단 건네주기", "5e383a6386f77465910ce1f8": "레이드에서 [낙하산 줄] 획득하기", "5e383a6386f77465910ce1f9": "[낙하산 줄] 건네주기", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "원단 건네주기", "5e4d4ac186f774264f75833b": "레이드에서 [KEKTAPE 덕트 테이프] 획득하기", "5e4d4ac186f774264f75833c": "[KEKTAPE 덕트 테이프] 건네주기", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "원단 건네주기", "5e4d515e86f77438b2195249": "레이드에서 [KEKTAPE 덕트 테이프] 획득하기", "5e4d515e86f77438b219524a": "[KEKTAPE 덕트 테이프] 건네주기", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "[마취(Anesthesia)]\n아, 마침 잘 와주었군. 아마 새로운 의사가 나타났다는 소문은 들었겠지? 그런데 이놈이 착한 의료의 신, 아스클레피오스는 아닐 걸세. 누구는 치료해 주고 누구는 병신으로 만든다는 소리야. 약도 팔고 길바닥에서 수술도 한다는데, 세니타라 부르더군. 해안선(Shoreline) 쪽에 자리를 잡았는데 거기 얼뜨기 놈들이 아주 만족하는 꼴을 보니 자선사업이라도 하는 모양인가봐. 그렇다면 그놈이 갖고 있는 물건들이 꽤 있다는 말이겠군. 조용히 세니타가 어디서 굴러먹는지 알아오게. 아마 같은 자리에서 물건도 팔고 치료도 하는 것 같아. 일 좀 해주겠나?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "[마취(Anesthesia), 성공]\n생각보다 물건이 많았다고? 아직 아무도 발견하지 못한 약품 창고를 발견했나 보군. 거기서 나온 물건들을 전부 팔고 있는 거고 말이야. 그 창고만 찾을 수 있다면... 뭐, 일단 지금 당장은 더 신경 쓸 필요 없네.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "해안선(Shoreline)에서 첫 번째 거래 지점에 MS2000 마커 설치하기", "5eda1da9a58a4c49c74165ee": "해안선(Shoreline)에서 두 번째 거래 지점에 MS2000 마커 설치하기", "5eda1dd3317f6066993c1744": "해안선(Shoreline)에서 세 번째 거래 지점에 MS2000 마커 설치하기", "5f0389268580cc37797e0026": "살아서 탈출하기", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "[사냥꾼의 길 - 사디스트 (The Huntsman Path - Sadist), 실패]\n그래서 그 여자를 믿었다고? 그 여자가 본인의 이익을 위해 자넬 속인 걸 모르겠나? 자네는 세니타가 몇몇 사람들을 치료해 줬다고 해서, 다른 사람들 역시 죽이지 않는다고 생각하나? 자네도 전쟁에 미쳐버려서 흑백을 구분하지 못하는 모양이군. 내 눈앞에서 사라지게, 혼자 있고 싶군.", "5edab4b1218d181e29451435 successMessageText": "[사냥꾼의 길 - 사디스트 (The Huntsman Path - Sadist), 성공]\n자네는 옳은 일을 한 거라네. 아무리 다른 사람들이 세니타가 좋은 일을 행했다 말해도, 그는 그것보다 훨씬 많은 악행을 저질러왔지. 사람들의 거짓말에 속으면 안 된다네. 그런 부류의 사람들을 이전에도 봐왔는데, 한번 미쳐버린 사람들은 다시 돌아오지 못하더군. 광견병에 걸린 개처럼 죽이는 것만이 해답이네.", "5edab5a6cecc0069284c0ec2": "세니타 처치하기", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "헬스 리조트로 보내진 그룹 찾기", "5edab8890880da21347b3826": "부두로 보내진 그룹 찾기", "5edab8e216d985118871ba18": "별장으로 보내진 그룹 찾기", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "살아서 탈출하기", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "[동료들 - 파트 2(Colleagues - Part 2)]\n해안선(Shoreline)에서 내 사람들을 잃은 건 정말 안타까운 일이지만, 지금은 새 의약품 공급처 쪽이 더 중요해요. 이번 일은 좀 다른 방식으로 접근해야겠어요. 제 조수 중 한 명이 그곳 주민 중 한 명을 매수해서 우리가 찾는 사람에 대한 정보를 알아냈어요. 그런데 좀 특이해요. 그는 해안선(Shoreline) 쪽에 몇몇 안전한 곳을 마련해 놨는데, 이상하게도 치료는 길에서 한다 하더라고요. 그리고 근처 건물에는 의료도구들을 숨겨둔다 하더라고요. 그 도구들을 가져와 주세요. 세니타가 우리가 언제든 그의 거래들을 멈추게 하고 그 지역을 장악할 힘이 있다는 것을 알게 되면, 거래에 좀 더 협조적으로 응하게 될 거예요.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "[동료들 - 파트 2(Colleagues - Part 2), 성공]\n가져오셨나요? 저쪽 상자 안에 두세요. 어디서 온 도구들인지 정확히 모르니, 제대로 분석을 해봐야겠어요. 당신도 바로 알 수 있듯이, 그는 어려운 환경에서 작업하고 있어요. 여기저기 피가 묻어있고, 매우 비위생적인 환경에서요. 뭐, 그건 제가 처리해야 할 문제죠. 우리가 매수했던 사람을 통해서 이 도구들을 돌려주며 편지 한 통을 같이 보내야겠어요. 세니타가 우리의 의도가 무엇인지 알 수 있도록 말이죠.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "레이드에서 세니타의 [파란색으로 표시된 수술 장비] 획득하기", "5edabb950c502106f869bc04": "세니타의 수술 장비 건네주기", "5edabbff0880da21347b382b": "세니타의 검안경 획득하기", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "[조작된 게임 (Rigged Game)]\n어이, 너! 잠깐 여기로 와봐, 너만을 위한 일거리가 있어. 프라퍼가 의사 양반한테서 약물 몇 개를 가져오라 시켰다며? 자자, 벌써부터 인상 구기지 마! 그 약물들한테는 개똥만큼도 관심 없어. 프라퍼가 약물들을 가져가서 지 엉덩이에나 몇 방 놓도록 내버려 두자고. 그리고 너도 이미 프라퍼한테 그 일은 보상을 받았을 거야, 그렇지? 넌 그냥 이 똑똑이들을 세니타의 물건들 사이에 슬쩍 끼워두기만 하면 돼. 프라퍼는 절대 눈치 못 챌 테니, 이건 그냥 몇 분 만에 공짜로 빵빵한 보상을 챙길 수 있는 절호의 찬스라고. 물건을 옮기기 전에 잽싸게 처리해 줘.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "[조작된 게임 (Rigged Game), 성공]\n그래, 그래, 씨발 바로 이거지! 드디어 프라퍼가 자기 물건들을 꿍쳐놓는 곳을 털 수 있겠군. 분명 거기는 총이나 탄약, 음식 등 온갖 것들이 산더미만큼 쌓여있을 거야. 존나 훌륭해! 이제 이건 네가 도와주지 않아도 될 것 같아. 우리가 알아서 할게. 고마워.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "살아서 탈출하기", "5f071a9727cec53d5d24fe3b": "해안선(Shoreline)에 위치한 헬스 리조트에 있는 의약품 상자에 MS2000 마커 설치하기", "5f071ae396d1ae55e476abc4": "해안선(Shoreline)에 위치한 주택에 있는 의약품 상자에 MS2000 마커 설치하기", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "[동료들 - 파트 3(Colleagues - Part 3)]\n젊은이, 잠시만요. 예거가 당신에게 세니타를 처치해달라고 부탁한 건 알지만, 그럴 필요는 없어요. 예거가 어떤 식으로 말했을지는 알아요. 그가 마치 살점만 붙어있는 괴물인 양 말했겠지만, 그렇지 않아요. 분명히 그는 현지인들을 도우려 했을 뿐이에요. 지금 같은 어려운 상황에서는, 누구라도 매우 복잡한 수술을 진행하다가 일부는 살리지 못할 수 있다 생각해요. 그는 수많은 생명을 구할 수 있는 소중한 지식을 지닌 의사예요. 또한, 우리에게 매우 중요한 의약품들이 있는 창고를 열어줄 수 있는 의사이기도 해요. 그는 벌써 저와 협상하기 시작했고, 조만간 같이 협력할 예정이에요. 하지만 그러기 위해서는 우리도 그가 관심 가질만한 무언가를 제공해 줘야 해요, 바로 연구소죠. 연구소 열쇠와 군용 자극제 표본이 그의 연구에 필요할 거에요. 찾아 주실 수 있나요? 연구소 열쇠는 어디서 구해도 상관없지만, 자극제는 미개봉품 이여야 하니 직접 찾으셔야 할 거에요.", "5edac34d0bb72a50635c2bfa failMessageText": "[동료들 - 파트 3(Colleagues - Part 3), 실패]\n당신이 예거의 목소리에는 귀 기울이고, 이유 있는 호소는 무시했다니 정말 안타깝네요. 세니타가 지닌 지식과 의약품들은 여러모로 우리에게 도움이 됐을 거예요. 그는 성인은 아니었지만, 누구나 자신의 죄에 대해 속죄할 기회는 있어야 한다 생각하지 않으세요? 하지만 당신은 그 기회를 송두리째 뺏어버렸고, 전 크게 실망했어요.", "5edac34d0bb72a50635c2bfa successMessageText": "[동료들 - 파트 3(Colleagues - Part 3), 성공]\n정말 고마워요. 세니타와 그가 가진... 약물들이 얼마나 가치 있는지 이해하셨을 거라 믿어요. 그는 벌써 키카드와 자극제들에 관심을 갖고, 약속했던 첫 번째 의약품들을 보내왔어요. 여기, 당신의 몫이에요.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "세니타를 죽이지 않기", "5f04935cde3b9e0ecf03d864": "Hand over the keycards", "5f04944b69ef785df740a8c9": "키카드 건네주기", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "[테라그룹 직원(TerraGroup Employee)]\n좋은 날이오. 전에 이야기한 이런 자극제가 테라 그룹과 연관되어 있다는 추측이 맞았으니 진심으로 좋은 날이란 말이오. 메카닉이 세니타에 관한 약간의 정보를 찾았소. 정보 값은 비싸게 치렀지만, 모르는 것보단 나은 편이오. 의학 교육 이수에, 테라 그룹에서 전염병 관련 전문부서로 일했었고, 일개 직원은 아니었소. 그리고 이혼도 했더군. 이게 우리가 가진 모든 정보요. 그러니 나에게 정보를 더 가지고 와주시오. 어떻게 세니타가 이런 물건들을 얻었는지 참 궁금하군. 세니타의 작업장에서 더 많은 정보를 찾아와주시오.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "[테라그룹 직원(TerraGroup Employee), 성공]\n가져와 준 플래시 드라이브를 해독해 보니 꽤 많은 정보가 담겨있었소. 하지만 기밀이니 당신에게 전부는 이야기해 줄 수는 없소. 말해줄 수 있는 거라고는 그는 과학자라는 것이오. 약물을 연구하고 만들어서 사람들에게 실험했고, 아주 대담하거나 윤리적으로 어긋난 놈인 것 같소.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "[파란색 테이프로 표시된 플래시 드라이브] 건네주기", "5eec9d054110547f1f545c99": "연구소(The Lab)에서 세니타의 작업 공간 찾기", "5eff5674befb6436ce3bbaf7": "세니타의 작업에 대한 정보 입수하기", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "[벙커 - 파트 1(The Bunker - Part 1)]\n어서 오게, 잘 지냈는가? 새로운 임무가 하나 있네. 내 연락책이 리저브(Reserve) 기지를 확보한 전직 군인들이 지하 벙커로 향하는 땅굴을 팠다고 말해주더군. 당연히, 그들이 직접 하진 않았을 테고, 스캐브들에게 시켰을 터니 그 불쌍한 놈들 중 살아남은 녀석은 없겠군. 어쨌든, 뜬소문으론 그 벙커가 사령부 벙커라는 얘기가 있더군. 하지만 그곳이 진짜 사령부인지 단순한 방공호인지는 확신할 수가 없다네. 정확한 정보 없이 부하들을 보내는 건 개죽음일 뿐일 터니 말일세. 그러니 자네가 벙커에 가서 내 부하들을 보낼만한 가치가 있는지 확인해 주게. 보수는 넉넉하게 챙겨주겠네. 어때, 해볼 텐가?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "[벙커 - 파트 1(The Bunker - Part 1), 성공]\n사령부 벙커라고? 뜬소문이 거짓말은 아니었나 보군. 빌어먹을! 내 부하들을 최대한 빨리 보내야겠네. 건져낼 물건이 한두 개가 아니겠구먼! 여기 가져가게나. 약속했던 보상일세.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "살아서 탈출하기", "5ee8eea538ca5b3b4f3c4647": "리저브(Reserve)에서 지하 벙커 찾기", "5ee8eecc0b4ef7326256c660": "리저브(Reserve)에서 지하 벙커에 있는 제어실 찾기", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "[벙커 - 파트 2(The Bunker - Part 2)]\n아주 필요할 시기에 때맞춰 와주었구만. 리저브(Reserve) 기지 지하에 자네가 찾은 그 엿 같은 사령부 벙커 기억나나? 본론부터 말하자면 내 부하들이 가서 하는 말이 아주 염병할 곳이라는 거야. 보호 장치들도 장난 아니고 설비들도 견고하게 지어졌다네: 필터, 발전기, 모든 접근을 막아줄 아주 강력한 잠금장치까지, 말 그대로 지하 요새라네. 하지만 빌어먹을 레이더들이 진드기들 마냥 들러붙어 기어코 들어갔다네. 그 덕에 내 부하들은 곤경에 빠졌고, 절반 채 안 되는 사람만이 돌아왔다네. 그런데 자네도 알다시피, 그런 일이 벌어지고 나면 더 궁금하지 않겠어? 안타깝게도, 내 부하들은 더 이상 그곳에 가고 싶어하지 않더군. 하지만 안전한 길을 찾을 수 있다면... 자네는 경험이 많은 사람이니 천천히, 조심스럽게, 안전한 길을 찾아낼 수 있을걸세. 살아남은 녀석들이 말하길 그곳은 아주 강력하고 튼튼한 해치가 있다 하더군. 그러니 들어가는 길을 찾아내는 것은 모두 자네에게 달려있다네.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "[벙커 - 파트 2(The Bunker - Part 2), 성공]\n고생했네! 벙커 구조는 어떻던가? 아하, 여기랑 여기에 문이 있던 거군? 아, 그냥 내 머릿속 지도랑 비교해 보고 있는 거니 걱정 말게, 미친 건 아니니까. 음... 이렇게 보니 벙커가 기지의 거진 모든 곳과 연결되어 있었네? 이런 씨발, 이러니까 눈뜨고 코 베어 가도 몰랐던 거였구만. 이제 왜 레이더들이 거기서 기지의 모든 걸 통제할 수 있었는지 알겠군. 고맙네, 여기 보상일세.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "살아서 탈출하기", "5ee8ec5ed72d953f5d2aabd1": "병원(화이트 비숍)으로 향하는 벙커 출입문 찾기", "5ee8ecd75eb3205dae135d17": "아카데미 건물(블랙 비숍)로 향하는 두 개의 벙커 출입문 중 하나 찾기", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "[화학자의 옷장(The Chemistry Closet), 성공]\n그렇게 된 거군. 1층 바로 오른쪽에 있었다고 했나? 내 부하들이 정말 많이 갔었는데 아무것도 발견하지 못했었다니... 방 안에도 들어가 봤나? 흥미로운 건 없었고? 그래, 상관없겠지, 어쨌든 다시 한번 부하들을 보내봐야겠네. 여기 보상일세. 정말 고마워.", "5f0488c590eea473df674002": "헬스 리조트에 있는 세니타의 사무실 찾기", "5f04983ffbed7a08077b4367": "살아서 탈출하기", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "[수색 임무(Search Mission)]\n안녕하신가, 제군. 자네를 위한 일거리가 있다네. 짧게 요약하자면, 꽤 오래전에 내 그룹 중 하나와 연락이 끊겼네. 일이 이렇게 꼬이기 전에, 나는 그들을 화물을 좀 가져오도록 삼림(Woods)으로 보냈지. 그들이 습격을 당한 게 아닌가 싶네. 마지막으로 연락했을 때, 그들은 USEC들이 접근하고 있다 했거든. 가서 생존자가 있는지 확인해 주게. 그들은 BRDM, Bukhanka와 트럭 같은 걸 가지고 있었는데, 정확히 어떤 트럭이었는지는 기억이 안 나는군. USEC도 그 근처 어딘가에 정착한 것 같으니, 항상 주의하며 움직이게. 내 호송대와 그 USEC 캠프를 찾아보게나, 정말 거기에 남아있다면 말이지. 이상.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "[수색 임무(Search Mission), 성공]\n즉 내 부하들은 실패했고 화물들은 약탈당했다는 소리군... 게다가 USEC 캠프가 주변에 있다고? 거참 엿 같군. 꽤나 중요한 화물이였는데 말이야. 그래도 도와줘서 고맙네.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "삼림(Woods)에서 실종된 프라퍼의 호송대 찾기", "5fd9fad9c1ce6b1a3b486d05": "USEC 임시 캠프 찾기", "5fd9fad9c1ce6b1a3b486d0d": "살아서 탈출하기", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "[사냥꾼 (Hunter), 성공]\n산림 전체의 공기가 어마어마한 교전 소리로 진동했다네. 그 쓰레기들은 대가를 치렀겠구먼, 정말 고맙네. 여기, 자네가 이룬 위업에 맞는 보상이라네. 부끄러워하지 말고, 이제 새 소총도 살 수 있을 걸세.", "600303250b79c6604058ce30": "슈트르만 사살하기", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "리저브(Reserve)에서 두 번째 LAV III를 찾아서 확인하기", "608925d455f4ac386d7e7fc4": "첫 번째 LAV III에 MS2000 마커 설치하기", "608930aa1124f748c94b801e": "리저브(Reserve)에서 T-90 전차를 찾아서 확인하기", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "[군사기밀 (Classified Technologies)]\n좋아! 그래! 이거지! 닥치고 돈부터 받게! 아 참 그리고 부탁하는데 이 거래는 절대 다른 사람에게 말하지 말아 주시오.", "60929ad46342771d851b827a": "리저브(Reserve)에서 T-90M 지휘관 제어 패널을 입수하기", "60929afc35915c62b44fd05c": "물건 건네주기", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "리저브(Reserve)맵에서 [군사 문서 #3] 입수하기", "60ae0f0586046842a754e21e": "두 번째 문서 건네주기", "60ae0f17b809a4748759078c": "세 번째 문서 건네주기", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "[배신자들을 위한 곳은 없다(No Place for Renegades), 성공]\n아주 잘 해주었네. 레이더들이 지금 어떤 상황인지 파악했다면 아마 지금부터는 내 식구들을 함부로 죽이진 못할걸세. 여기 보상이네.", "608bffeee0cc9c2d4d2ccb29": "리저브(Reserve)맵의 지휘 벙커(지하)에 있는 레이더를 처치하기", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "첫 번째 일지 건네기", "60ae12ffb809a474875907aa": "리저브(Reserve)맵에서 [의무 기록 #2] 입수하기", "60ae134cabb9675f0062cf6e": "두 번째 일지 건네기", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "[남는 물건(Surplus Goods), 성공]\n오! 이렇게 생긴 물건이었군! 고맙네, 이건 나중에 좀 더 자세히 공부해 봐야겠네. 여기, 약속했던 보상이네.", "6092942fb0f07c6ea1246e3a": "리저브(Reserve)에서 [MBT 통합 내비게이션 시스템] 회수하기", "6092947635915c62b44fd05b": "[MBT 통합 내비게이션 시스템] 건네주기", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "[뒷문(Back Door), 성공]\n그래, 탈출구는 잘 작동하는가? 완벽하군! 자네에게 줄 보상을 준비하고 있다네, 그러니 탈출구를 여는 메커니즘에 대해 좀 더 자세히 말해주지 않겠나?", "608a94101a66564e74191fc3": "리저브(Reserve)맵에서 전원 공급이 필요한 비밀 탈출구 찾기", "608a94ae1a66564e74191fc6": "비밀 탈출구로 탈출하기", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "[안전한 통로 (Safe Corridor), 성공]\n정말 끝내주는군! 우리 애들이 상처 하나 없이 무사히 돌아왔어. 여기 보상이야!", "608ab22755f4ac386d7e7fdc": "리저브(Reserve)맵에 위치한 지하 창고에 있는 스캐브 처치하기", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "리저브(Reserve)맵의 남쪽 병영(하얀색 폰)에 있는 두 번째 무기고 확인하기", "608bd2465e0ef91ab810f98a": "리저브(Reserve)맵의 동쪽 병영(검은색 폰)에 있는 의무실 확인하기", "608c187853b9dd01a116f480": "살아서 탈출하기", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "살아서 탈출하기", "60a4dc7e4e734e57d07fb335": "리저브(Reserve)에서 첫 번째 연료 탱크 저장소에 MS2000 마커 설치하기", "60b90232ec7c6f5eb510c195": "리저브(Reserve)에서 두 번째 연료 탱크 저장소에 MS2000 마커 설치하기", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "[해충 구제 (Pest Control), 성공]\n끝났나? 전보다 공기가 깨끗해진 것 같군. 우리가 약탈자들을 올바른 길로 인도할 수 없다는 현실이 참 안타깝다네.", "608a8356fa70fc097863b8f8": "리저브(Reserve)맵의 병영(막사) 지역에 있는 스캐브 제거하기", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "[사냥꾼의 길 - 공장장 (The Huntsman Path - Factory Chief), 성공]\n정말 좋은 소식이군. 세상이 보다 더 깨끗해질 거야. 그 미친놈이 망치로 자네를 때려잡지 않아서 다행일세.", "60c0d187938d68438757cda2": "타길라 처치하기", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "레이드에서 [BOSS 모자] 획득하기", "60cfa5a85f9e6175514de2e3": "[BOSS 모자] 건네주기", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "인터체인지(Interchange)에서 PMC 사살하기", "60ec0b1871035f300c301acd": "연구소(The Lab)에서 PMC 사살하기", "60ec2b04bc9a8b34cd453b81": "퀘스트가 진행되는 도중에 죽거나 레이드에서 탈주하면 안 됩니다 (상태: 사망(KIA), 탈주(Left the Action), 실종(MIA), 도망(Run Through))", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "세관(Customs)의 스캐브 기지에서 PMC 사살하기", "60ec1e72d7b7cb55e94c1764": "삼림(Woods)의 스캐브 기지에서 PMC 사살하기", "60ec2229fd1bf4491c4e4552": "해안선(Shoreline)의 헬스 리조트에서 PMC 사살하기", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "[협박자 (Intimidator)]\n그렇지, 훨씬 낫구먼. 고맙네, 제군. 저놈들이 조용해 진걸 봐서는, 저 바보들도 자네의 메시지를 이해했나 보구먼.", "60e8650e5d67b234af3d3926": "스캐브를 헤드샷으로 사살하기", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "[야간 작전 (Night Sweep), 성공]\n빌어먹을... 전부 직접 구한 거야? 자네 배짱 한번 두둑하군. 그 정신병자들 뭔가 잘못된 것 같던데, 아무튼 조심해...", "60e82c12fd1bf4491c4e4547": "레이드에서 [Cultist 광신도의 칼] 획득하기", "60e82c5926b88043510e0ad7": "[Cultist 광신도의 칼] 건네주기", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "[LEDX] 건네주기", "60f028ca86abc00cdc03ab89": "레이드에서 [Pile of meds 약더미] 획득하기", "60f028f85caf08029e0d6277": "[Pile of meds 약더미] 건네주기", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "레이드에서 [OLOLO Multivitamins 종합 비타민] 획득하기", "62a70168eb3cb46d9a0bba7a": "[OLOLO Multivitamins] 건네주기", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "[청소부(The Cleaner), 성공]\n정말 예술이군. 이제 우리 쪽 사람들이 리저브(Reserve)에서 훨씬 수월하게 작전을 수행할 수 있을 것 같네! 잘 처리해 줘서 고맙소.", "60e745d6479eef59b01b0bdc": "리저브(Reserve)에서 레이더 사살하기", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "[전리품(Trophies)]\n좋아, 훌륭해! 고객들은 벌써... 어, 성공적인 임무에 감사해 하더군. 잘 했소, 용병.", "60e8174d0367e10a450f7818": "레이드에서 레벨 50 이상의 BEAR PMC 인식표를 획득하여 건네주기", "60e81795479eef59b01b0bdf": "레이드에서 레벨 50 이상의 USEC PMC 인식표를 획득하여 건네주기", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "레이드에서 [군용 COFDM 무선 신호 전송기] 획득하기", "60e7449875131b4e61703b7e": "[Virtex 프로그래밍 가능한 프로세서] 건네주기", "60e744c9d1a062318d3d2262": "[군용 COFDM 무선 신호 전송기] 건네주기", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "레이드에서 [Military 군용 플래시 드라이브] 획득하기", "62a7019ea9a0ea77981b57da": "플래시 드라이브 건네주기", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "[영점 조정(Calibration), 성공]\n좋아, 내게 딱 필요한 결과들이네. 노트를 이리 주게. 정말 고맙네.", "60e740b8b567ff641b129573": "100미터 이상의 거리에서 PMC를 사살하기", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "[배달부(The Courier), 성공]\n훌륭해, 정말 고맙네 친구. 자네가 오기 전에 물건을 잘 받았다고 손님한테서 연락을 받았네. 이게 마지막 주문은 아닌 것 같은데, 나중에 자네에게 꼭 보답하겠네.", "60e84ba726b88043510e0ad8": "세관(Customs) 요새화된 큰 건물 옆 노란색 크레인 아래에 [Trijicon REAP-IR 열화상 조준경]을 숨겨두기", "60e85b2a26b88043510e0ada": "세관(Customs) 큰길 옆에 지어진 주유소 뒤편의 쓰레기통 뒤에 [Trijicon REAP-IR 열화상 조준경]을 숨겨두기", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "[대기줄 (Long Line), 성공]\n정말 고맙네 형제여! ULTRA에서 위험한 놈들이 보이면 내게 말해줘. 아마 조만간 그놈들을 다시 만날지도 모르겠군.", "60e73ee8b567ff641b129570": "인터체인지(Interchange)에 위치한 ULTRA 쇼핑몰 내부에서 PMC 사살하기", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "위스키 건네주기", "60f028268b669d08a35bfad8": "레이드에서 [Purified water 정제수] 찾기", "60f0284e8b669d08a35bfada": "정제수 건네주기", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "레이드에서 [Pevko Light 병맥주] 획득하기", "62a70110eb3cb46d9a0bba78": "맥주 건네주기", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "슈트르만 사살하기", "60e7261eb567ff641b129557": "글루하 사살하기", "60e72629465ea8368012cc47": "세니타 사살하기", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "[날쌘돌이 (Swift One), 성공]\n이 늙은이를 기쁘게 해주다니, 여기 보상받게 날쌘돌이. 자네 스스로 무언가를 얻을 수 있었던 도전이었길 바라네. 자네가 걸치고 있는 그 쇳덩어리가 아니라, 자네가 무기 그 자체라네.", "60e729cf5698ee7b0505743c": "삼림(Woods)에서 방탄복과 헬멧을 착용하지 않은 상태로 PMC 사살하기", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "[선택 (The Choice), 성공]\n용감한 선택이었네.", "60effdac12fec20321367038": "[보안 컨테이너 엡실론] 건네주기", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Listen, brother, can you help me find proper info on a guy? He's already left the city. Why can't I find him myself? Because his fucking name is Ivan Ivanov. Seriously, I'm not kidding. There are two hundred thousand of them all over the country with that name. If we could find his former address in Tarkov, we might be able to run him through the database. Let me see what I can find on him. I think he used to run a bar, right. I don't know the name of the bar though... Listen, I don't know how you're gonna know which bar is his. Oh, that reminds me, he was into ballet. No kidding. He went to the Mariinsky every season. Even tried to host something at our local theater, but people weren't really crazy about chicks in tutus. More specific? Brother, I'm already fucking specific! I believe in you, use your intuition.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Found both the bar and the guy's address? Here, write it down for me. You're better than those psychics on TV finding missing people. Wanna be a detective when all this is over, bro? I'll fix you up with a Poirot hat, I promise.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Locate the balletmeister's apartment on Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Survive and extract from the location", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Come here, my dear employee. Everything okay in the city? I got a few teams of mine missing. At first I thought, why the fuck would someone be so cocky, trying to shut my business down? Unless they're messing with me or something. I assumed it was that punk from the Lighthouse at first. But then I get a message from Seva Shket. He wrote that they were kept in some private prison. Have you heard about it? It's hidden somewhere in the old apartment buildings. Suits would dump their rivals there and whoever's easier to keep locked up than kept loose. I'd just kill them if that was such a problem, honestly. But it looks like someone would rather keep them in jail than just pop the cunts bothering them... Here's the deal: Shket was the only one in the group who escaped, but now he's on the run, hasn't contacted us since that message he sent. Didn't even tell us where to find the guys, this rat-faced fuck. The guys themselves are to blame for being caught like some bitches, and I would have just told them to fuck off for such a screwup. But the fact that someone's trying to fuck me over is outrageous. All right, enough of this bullshit. Find out where they keep my boys.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Fucking hell. Why would someone keep them there? I'd understand if they sent me a letter saying they'd kill my people if I didn't pay up and shit. A serial killer or something? Anyway, come around in a little while, I'll find out what's going on.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Survive and extract from the location", "63a7d767f32fa1316250c3da": "Locate where the missing group was held captive on Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "It's the same story again, a new recording, now with a strange symbol. What the hell is going on? People are being sacrificed. To whom? Why? So many questions, yet no answers. I keep thinking it's the worst we'll ever see, but every time I'm proven wrong. We've fought looters with only money on their minds. Murderers who just want to shoot innocents, too. But at least I understand the motivation there, the beast has defeated the human in their soul. But with what purpose do people become these... I cannot understand this. So, soldier, I'll look for them in the woods, you do the same in the city. Somewhere there must be their hideout. Look for the same symbol, I'm sure we'll see it again.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Did you find it? Where? Was there anyone there? What does the symbol mean? Even more questions...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Survive and extract from the location", "63a7d6d61f06d111271f5aeb": "Locate the cultist meeting spot on Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "[시범운용 - 파트 2 (Test Drive - Part 2)]\n반갑네! 자, 시작하겠네. 기대되는가? 이번 일은 꽤나 구체적인데, 러시아제 장난감 하나를 근접전에서 사용해봐야 하네. 그래야 실제 도시 환경에서 사용할 수 있다는 믿음을 줄 수 있기 때문이지. 이 장난감의 효과를 의심하는 고객들이 몇몇 있는데... 자네가 그들의 마음을 돌릴 수 있겠나?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "[시범운용 - 파트 2 (Test Drive - Part 2)]\n어떤가? 잘 작동하던가? 도심에서의 근접 전투에 사용할만 한가?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "타르코프 시내(Streets of Tarkov)에서 소음기와 KP-SR2 조준기를 장착한 SR-2M을 사용하여 PMC 사살하기", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Some are still intact, huh. Well, that's cool, we'll go pay them a little visit. Your reward.", "6572e876dc0d635f633a5718": "Locate the first group of ATMs on Klimov Street on Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Scout the Sparja store in Pinewood hotel", "6572e876dc0d635f633a571e": "Scout the Goshan store in Concordia", "6572e876dc0d635f633a5720": "Hand over the found in raid Salty Dog beef sausage", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Atm №11", "65733403eefc2c312a759df2": "Atm №12", "65733403eefc2c312a759df4": "Atm №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Atm №15", "65733403eefc2c312a759dfa": "Atm №16", "65801ad655315fdce2096bec": "Unravel the secret of the firm's success", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Did you find it? Nice work, now bring it here! And take your reward, you deserve it.", "6573397ef3f8344c4575cd88": "Locate the real estate fund on Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Locate and obtain the Tarkov real estate transactions document", "658167a0e53c40116f8632fa": "Hand over the obtained information", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, yeah, I've already heard the rumors. People're gonna nail those punks to the wall soon. You did a great job. Here's your reward.", "65734c186dc1e402c80dc1a2": "Eliminate any target while wearing a Bomber beanie and RayBench Hipster Reserve sunglasses on Streets of Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Stash a Bomber beanie inside the barber shop on Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Stash RayBench Hipster Reserve sunglasses inside the barber shop on Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "It's in the fucking swamp? That explains the fucking price. It would cost more to get it out from there and clean it up! All right, here, that's for helping me out.", "65802b627b44fa5e1463889a": "Locate Ragman's SUV on Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Survive and extract from the location", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Locate and obtain the “Bison VS Undertaker” poster at the USEC camp on Woods", "664bbb5f217c767c35ae3d51": "Locate and obtain the “Killa and Tagilla” poster at the USEC camp on Woods", "664bbb73c71d456fd03714ca": "Locate and obtain the “Easy Money” poster at the USEC camp on Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm, looking for the one who ordered the hit. They'll get over it and realize they're crossing the line. Here, this is your reward.", "660d5effb318c171fb1ca234": "Eliminate Kaban's guards on Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminate Kollontay's guards on Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Win 6 matches out of 10 in ranked mode in Arena", "662bb24b3d34cd5e19206e63": "Failure condition: Lose 5 matches", "6633a85e347a2a2b4051a26b": "Hand over Roubles from the EFT balance", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Failure Condition: Lose 5 matches", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.", "66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.", "66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Locate and obtain the compromising information on Ref", "664fd7f0837ee02ad4c8e658": "Hand over the found info", "66563f0a2684eee09e8dcd86": "Locate the old champion's hideout", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "I think I'm beginning to understand why people watch these \"live streams\". It's addictive!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Install a WI-FI Camera on the mountain ledge on Woods", "667bf840981b1c594af358ce": "Install a WI-FI Camera at the pier tower on Shoreline", "667bf845dc371ee9869f185e": "Install a WI-FI Camera at the office corridor on Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Well done! They say that even the outside world found out about our little move, haha!", "667442da875be5fb415df535": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Shoreline", "66828746efaecf435dde20ca": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", "66d080533a3c33d823a3477d": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hello, friend. Things have been a little bumpy for me lately. I will be temporarily raising the prices of my products and services from today until I can solve some pressing matters. A mercenary friend of mine is putting together a team to raid the underground lab, and he needs reliable firepower. Can you help? I see you know as much about the ARs as I do, so I thought I'd entrust this to you. I need an M4A1 with no more than 300 total recoil and ergonomics no less than 70. Not easy, I know. Now, be sure to put an EOTech XPS 3-0 on it, since the client refuses to use any other scope.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Many thanks. I think this will keep me on track for some time.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modify an M4A1 to comply with the given specifications", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "You didn't lose anything along the way, correct? All right, then it's time to send the engineers out to do some measurements, we're about to find out what these factory walls are hiding. Thanks for your help, friend.", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory (In one raid)", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory (In one raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Locate and obtain the precision tools package in the laboratory on Customs", "66ab97d56cb6e3bfd7c79fbc": "Stash the package at the laboratory storage room on Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "So you have found it indeed. Excellent! How's the passage, is it safe? In a state of disrepair, you say? Well, it seems like this opportunity won't be with us for long. I'll send my men as soon as possible.", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov (In one raid)", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab (In one raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab (In one raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab (In one raid)", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab (In one raid)", "66b10eef0951e90ec383850b": "Scout the control room in The Lab (In one raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "The buyer has told me everything is in place. You've earned your reward, and you can expect my men to help you on the new trails.", "66abb32aeb102b9bcd088d62": "Use the transit from Ground Zero to Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Use the transit from Streets of Tarkov to Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use the transit from Interchange to Customs", "66abb3ac416b26ade4a1446c": "Use the transit from Customs to Factory", "66abb3bf228ace5ca9f3d745": "Use the transit from Factory to Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Install a WI-FI Camera at the bear who sat into a flaming car on Woods", "66debf2e1e254957b82711ff": "Install a WI-FI Camera at the upside-down chair on Shoreline", "66debf30802386a45d0adb60": "Install a WI-FI Camera at the not-so-lonely bathroom on Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "The soldier of fortune has come for his new task! Rumors have it that Tarkov has become even more dangerous. Who would've thought, right? Someone's started targeting certain areas with mortar fire. \n\nYou better go and see what's going on. And yes, this means going right into the middle of those mortar strike areas. Yup. Alright, so we've noticed the bombardments in the nature reserve, the military base, the customs office, and the coast line. Off you go then.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Alive and well, that's great. So let's see what we're working with here. Somebody stole the mortars and now they're hitting various locations right before the airdrop supplies come in. \n\nVery suspicious. These local powdermen sure couldn't have secured communications with the outside world, could they? Either way, all we can do for now is watch.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visit an active mortar strike area on any specified location (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Okay, I got word of a major fuck-up. It may not be your fault, but that's beside the point. The assholes at the water treatment plant intercepted a bunch of these crates with portable EW equipment in them. \n\nThey're obviously useless at this point, but I'm not gonna let them steal government property like this. \n\nFor a warrior like you, the task is feasible. Go to the WTP and get me those EW thingies. And yes, those rats need to be put down. \n\nThe EWs themselves have probably already been handed over to their commanders, so you're guaranteed to get this equipment from them. Assuming you don't die, I suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendid, the new toys have arrived. My guys are gonna love these. You need to be ready for anything these days, and such protection is definitely not superfluous.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Hand over the found in raid item: GARY ZONT portable electronic warfare device", "66e19f359fee1e54e0e01f7c": "Eliminate Rogues", "66e19f7d534a8ff2bb7e9f89": "Locate and neutralize Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "This whole trader thing is going pretty well for me, wouldn't you say? You know, If I didn't have my wits about me, I'd be dead in this hellhole a long time ago. Anyway, I'll deal with the reports later, not the first time. \n\nRight now, I need to equip the guys posted outside my territory. Bring them this new equipment we found. I'll give you a part of it, but the rest you need to get yourself - you already know where to look. No, you won't meet them face to face. Just stash the items in the designated spot.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Good, now that they're safe from airborne threats, their combat mission will be accomplished with no problem.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Stash the GARY ZONT portable electronic warfare device inside the sunken church on Woods", "66e071c8a9e80c3f25bb1bad": "Stash the Radar station spare parts inside the old sawmill hangar on Woods", "66e0735089627301d900ef1d": "Stash the GARY ZONT portable electronic warfare device inside the weather station tower on Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "나는 어둠의 목소리를 듣는다", "6514134eec10ff011f17cc26 description": "PMC로 플레이하며 나이트 15번 사살하기", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "훌륭한 사격 솜씨", "651413e9c31fcb0e163577c9 description": "PMC로 플레이하며 즈랴치 15번 사살하기", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/pl.json b/Libraries/SptAssets/Assets/database/locales/global/pl.json index a805b216..fa963e78 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/pl.json +++ b/Libraries/SptAssets/Assets/database/locales/global/pl.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Zostaw przedmiot: „Zabezpieczony folder 0022” w pokoju socjalnym w fabryce (drugi poziom, niedaleko bramy 3)", "5968929e86f7740d121082d3": "Znajdź przedmiot: „Zabezpieczony folder 0022” w biurze dyrektora Tarcone w magazynie terminalu składu celnego", "5977784486f774285402cf52": "Przetrwaj i ewakuuj się z fabryki", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Naprawdę imponujące! To prawie walizka z kodami atomowymi! Nic dziwnego, że nie oszczędzał ludzi na tę operację.", "5968981986f7740d1648df42": "Znajdź cenny przedmiot w pokoju 203 budynku noclegowego w składzie celnym", "5968988286f7740d14064724": "Przekaż przedmiot: „Pancerna walizka transportowa”", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Zdobądź dostęp do pokoju 214 budynku noclegowego", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Dziękuję ci z całego serca. Nie jestem w stanie wyrazić, jak wiele to dla mnie znaczy i jednocześnie jak niewiele w naszej obecnej sytuacji. Większość ludzi zatrzymałaby je dla siebie, ale ty podzieliłeś się z tymi, którzy ich potrzebowali. Dziękuję.", "5969f98286f774576d4c9542": "Znajdź w rajdzie przedmiot: „Wstrzykiwacz morfiny”", "5969f99286f77456630ea442": "Przekaż przedmiot: „Wstrzykiwacz morfiny”", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Znajdź w rajdzie przedmiot: „Świeca zapłonowa”", "596b470c86f77457ca18618a": "Przekaż przedmiot: „Akumulator samochodowy”", "596b472686f77457c7006f8a": "Przekaż przedmiot: „Świeca zapłonowa”", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "A mówił, że nic tam nie ma! Chociaż może są puste. Trzeba to sprawdzić. W każdym razie oto twoja działka.", "5979ee2986f7743ec214c7a4": "Znajdź w rajdzie przedmiot: „Zaszyfrowany pendrive”", "5979ee4586f7743ec214c7a5": "Przekaż przedmiot: „Zaszyfrowany pendrive”", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Zlokalizuj i oznacz trzeci zbiornik paliwa nadajnikiem MS2000 w składzie celnym", "59c128f386f774189b3c84bb": "Zlokalizuj i oznacz czwarty zbiornik paliwa nadajnikiem MS2000 w składzie celnym", "5c92184386f7746afa2e7840": "Przetrwaj i ewakuuj się z lokalizacji", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Świetnie! Proszę, weź to jako nagrodę. W międzyczasie ja przekażę ten pendrive moim specjalistom do odszyfrowania.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Zostaw przedmiot: „Karabin powtarzalny SW-98 7,62\u00A0×\u00A054 R” w łodzi", "5a27d85286f77448d82084e7": "Zostaw przedmiot: „Multitool Leatherman” w łodzi", "5a3ba11786f7742c9d4f5d29": "Zlokalizuj łódź ukrytą obok falochronu na wybrzeżu", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Przetrwaj i ewakuuj się z lokalizacji", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Świetnie, od teraz zawsze możesz na mnie liczyć.", "5a56489d86f7740cfe70eba2": "Przekaż\u00A0USD", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Masz to? Zostaw to w kącie, dziękuję. Piękna rzecz, prawda? Tak czy inaczej, jestem teraz trochę zajęty, nie mogę długo rozmawiać.", "5accd5e386f77463027e9397": "Zmodyfikuj MP-133 zgodnie z podaną specyfikacją", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Cóż, w odpowiednich rękach ta broń jest w stanie obalać reżimy i wzniecać rewolucje. Zostaw ją w kącie, sprawdzę ją później.", "5accd9b686f774112d7173d1": "Zmodyfikuj AKS-74U zgodnie z podaną specyfikacją", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Poręczny w walkach w zwarciu i cichy… Dobra modyfikacja, klient będzie zadowolony.", "5accde3686f7740cea1b7ec2": "Zmodyfikuj MP5 zgodnie z podaną specyfikacją", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Dziękuję, zostaw karabin na stole, ja przekażę go Di- ahem, Snajperowi.", "5acce08b86f7745f8521fa64": "Zmodyfikuj DWL-10 zgodnie z podaną specyfikacją", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Tak, nie da się ukryć przed czymś takim. Kocham 7,62, to dobry kaliber. Dzięki za pracę. Następne zamówienie powinno przyjść jutro.", "5acce11786f77411ed6fa6eb": "Zmodyfikuj R11 RSASS zgodnie z podaną specyfikacją", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Przekaż ją, sprawdźmy, jak wygląda twoja konstrukcja. Tak, broń demokracji… Dziękuję.", "5accdfdb86f77412265cbfc9": "Zmodyfikuj M4A1 zgodnie z podaną specyfikacją", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Napraw pierwszą tablicę kontrolną z zestawem narzędzi w fabryce", "5ac7a51a86f774738a4ffc96": "Napraw drugą tablicę kontrolną z zestawem narzędzi w fabryce", "5ac7a5d586f774383111ee63": "Przetrwaj i ewakuuj się z lokalizacji", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Przekaż przedmiot: „Potrójny rozgałęźnik”", "5ac5061386f77417e429ce7a": "Znajdź w rajdzie przedmiot: „Płytka drukowana”", "5ac5062586f774587c327395": "Przekaż\u00A0przedmiot: „Płytka drukowana”", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Zlokalizuj magazyn zajętych towarów w składzie celnym", "5ac6248586f77416781dd3a3": "Znajdź\u00A0przedmiot: „Paczka z kartami graficznymi”", "5ac624b286f77416781dd3ac": "Przekaż przedmiot: „Paczka z kartami graficznymi”", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Przekaż\u00A0przedmiot: „Karta graficzna”", "5ac5083d86f7740be2744eed": "Znajdź w rajdzie przedmiot: „Chłodzenie procesora”", "5ac5084d86f7740bde1b0031": "Przekaż przedmiot: „Chłodzenie procesora”", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Zlokalizuj pierwsze źródło sygnału na wybrzeżu", "5ac5e13586f7746074388f93": "Zlokalizuj drugie źródło sygnału na wybrzeżu", "5ac5e18c86f7743ebd6c9575": "Przetrwaj i ewakuuj się z lokalizacji", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Przekaż przedmiot: „Akumulatorek”", "5ac5e98886f77479bc6ca201": "Przekaż\u00A0przedmiot: „Płytka drukowana”", "5ac5ea0586f774609f36280c": "Przekaż\u00A0przedmiot: „Zepsuty GPhone”", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Znajdź w rajdzie przedmiot: „Procesor”", "5cb6f88d86f7747d215f09c1": "Znajdź w rajdzie przedmiot: „Akumulatorek”", "5cb6f8de86f7740e9d452685": "Znajdź w rajdzie przedmiot: „Płytka drukowana”", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Siódma cyfra po przecinku liczby pi? IIO? Dobra, kiedy nadejdzie czas, skontaktuję się z tobą.", "5ac5eb3286f7746e7a509a09": "Osiągnij wymagany poziom umiejętności „Uwaga”", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Przekaż przedmiot: „Papierosy Strike”", "5ac5ef9886f7746e7a509a2d": "Znajdź w rajdzie przedmiot: „Papierosy Wilston”", "5ac5eff886f7740f43322559": "Przekaż przedmiot: „Papierosy Wilston”", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Zlokalizuj drugie wyjście z fabryki", "5ac61adf86f774741c1bf096": "Zlokalizuj trzecie wyjście z fabryki", "5ac61b1486f7743a8f30fc84": "Przetrwaj i ewakuuj się z lokalizacji", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Zlokalizuj czwarte wyjście z fabryki", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "Nie lubię udawać, chociaż teraz wszyscy to robią. Czasami, żeby przeżyć, czasem ze strachu. Wiesz, nie gadam zbyt dużo, w szczególności z nieznajomymi, ale sprawiasz wrażenie porządnego gościa. Jeśli ja zdołałem ci zaufać, to wydaje mi się, że dogadasz się z każdym. Ostatecznie tylko znajomości pomogą nam teraz przetrwać. Porozmawiam z Pawłem Jegorowiczem i jeśli ci ufa, to może uda mi się zorganizować dostawy prochu strzelniczego.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Paweł Jegorowicz jeden z niewielu, którzy zostali. Zastanawiam się, czy to dlatego, że jest wojskowym, czy po prostu nie miał czasu, żeby uciec. Chociaż wydaje mi się, że robi on jakieś podejrzane interesy.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Osiągnij 3. poziom lojalności u Prapora", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Świetna broń i solidna konstrukcja. Nie ma nowych zamówień, możesz przyjść\u00A0jutro.", "5ae34b8b86f7741e5b1e5d48": "Zmodyfikuj Remington Model 870 zgodnie z podaną specyfikacją", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Wygodna broń, mistrzowsko wykonana, dziękuję. Dam znać klientowi, że broń jest gotowa.", "5ae3550b86f7741cf44fc799": "Zmodyfikuj AKM zgodnie z podaną specyfikacją", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "A więc AK Zenit jest gotowy? Świetnie, zostaw go na tej skrzyni, dziękuję. Jeśli chcesz, możesz wpaść jutro po kolejne zamówienie.", "5ae3570b86f7746efa6b4494": "Zmodyfikuj АKS-74N zgodnie z podaną specyfikacją", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "Chyba wiem, jak wytrenować sieć! Ach, tak, to AK wystarczy, dziękuję. Zostaw to gdzieś w kącie, spojrzę na nie później.", "5ae445f386f7744e87761331": "Zmodyfikuj АК-105 zgodnie z podaną specyfikacją", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Skończyłeś z karabinkiem? Świetnie, przekaż mi go. Mam tu ciekawy klucz, który może ci się przydać. Otwiera on sklep z bronią w ULTRA, sklep Kiba. Znajduje się tam kilka świetnych modyfikacji broni, mogą się przydać w naszym przyszłym rusznikarstwie.", "5ae4479686f7744f6c79b7b3": "Zmodyfikuj AS Wał zgodnie z podaną specyfikacją", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Witaj w ekipie, ziomek. Więc przejdźmy do interesów?", "5ae44c6886f7744f1a7eb2b8": "Osiągnij 2. poziom lojalności u Ragmana", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Osiągnij 2. poziom lojalności u Ragmana", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Strzelasz jak snajper, niezła sprawa. Moi ludzie mówią, że węzeł transportowy jest pełen ciał Scavów, a ULTRA jest teraz cichsza, więc oto twoja nagroda, zasłużyłeś na nią.", "5ae44ecd86f77414a13c970e": "Zlikwiduj Scavy na węźle transportowym", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Zlokalizuj i sprawdź sklep DINO CLOTHES na węźle transportowym", "5ae4511d86f7740ffc31ccb5": "Zlokalizuj i sprawdź sklep TOP BRAND na węźle transportowym", "5ae4514986f7740e915d218c": "Przetrwaj i ewakuuj się z lokalizacji", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Oznacz drugi zbiornik paliwa nadajnikiem MS2000 na węźle transportowym", "5ae452fa86f774336a39758e": "Oznacz trzeci zbiornik paliwa nadajnikiem MS2000 na węźle transportowym", "5ae4531986f774177033c3e6": "Przetrwaj i ewakuuj się z lokalizacji", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Jak to mówią, piękno zbawi świat. Dziękuję, naprawdę mi pomogłeś, bracie. Kapelusze zostaną sprzedane w ciągu ledwie jednego dnia, zaufaj mi. Masz, weź to jako nagrodę.", "5ae4543686f7742dc043c903": "Przekaż przedmiot: „Uszanka”", "5ae454a086f7742be909a81a": "Przekaż przedmiot: „Kapelusz tak jakby kowbojski”", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Znajdź w rajdzie przedmiot: „Uszanka”", "5fd89799c54dc00f463272d3": "Znajdź w rajdzie przedmiot: „Kapelusz tak jakby kowbojski”", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Przekaż przedmiot: „Wykazy ładunków OLI”", "5ae9b3b186f7745bbc722762": "Znajdź przedmiot: „Wykazy ładunków IDEA” na węźle transportowym", "5ae9b3c986f77432c81e2ce6": "Przekaż przedmiot: „Wykazy ładunków IDEA”", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Znalazłeś dokumenty? Wielkie dzięki. Przekaż je i sprawdźmy, gdzie zniknął nasz mały ładunek.", "5ae9b5bd86f774307c29df37": "Znajdź przedmiot: „Dokumenty trasy ładunku OLI” na węźle transportowym", "5ae9b63286f774229110402d": "Przekaż\u00A0przedmiot: „Dokumenty trasy ładunku OLI”", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Przekaż przedmiot: „Narciarska czapka z otworami na oczy”", "5ae455fb86f7744dd8242380": "Znajdź w rajdzie przedmiot: „Plecak turystyczny Pilgrim”", "5ae4562086f774498b05e0dc": "Przekaż przedmiot: „Plecak turystyczny Pilgrim”", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Przekaż przedmiot: „Kamizelka kuloodporna BNTI Gżel-K”", "5ae9b91386f77415a869b3f3": "Znajdź przedmiot: „Kamizelka kuloodporna BNTI Gżel-K” z 50-100% wytrzymałości", "5ae9b93b86f7746e0026221a": "Przekaż przedmiot: „Kamizelka kuloodporna BNTI Gżel-K”", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Przekaż przedmiot: „Kamizelka taktyczna WARTECH TV-109 + TV-106”", "5af079e486f77434693ad7f8": "Znajdź w rajdzie przedmiot: „Kamizelka taktyczna BlackRock”", "5af07a0286f7747dba10d8ac": "Przekaż przedmiot: „Kamizelka taktyczna BlackRock”", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Przekaż przedmiot: „Podręcznik projektowania ubrań, część 1”", "5ae9c0e186f7746419683c5e": "Znajdź przedmiot: „Podręcznik projektowania ubrań – część 2” na węźle transportowym", "5ae9c10686f774703201f146": "Przekaż przedmiot: „Podręcznik projektowania ubrań, część 2”", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Hej, hej, spokojnie, jestem po twojej stronie, stary! Przepraszam, tylko się wygłupiam. Widzę, że opanowałeś swoją charyzmę, to dobrze. Porozmawiajmy więc o interesach.", "5ae9c29386f77427153c7fb0": "Osiągnij wymagany poziom umiejętności „Charyzma”", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Wygląda na to, że poszło jak z płatka, dzięki.", "5ae9c38e86f7743515398707": "Osiągnij 3. poziom lojalności u Terapeutki", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Zostaw przedmiot: „Arafatka (zielona)” w określonym miejscu", "5ae9e2a286f7740de4152a0a": "Zostaw przedmiot: „Okulary przeciwsłoneczne RayBench Hipster Reserve” w określonym miejscu", "5ae9e2e386f7740de4152a0d": "Zostaw przedmiot: „Okulary przeciwsłoneczne z okrągłymi oprawkami” w określonym miejscu", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Raz wystraszyłeś kilku Scavów z ULTRA, pamiętasz, bracie? Teraz ludzie mówią, że jest coraz gorzej. Mówi się, że roi się tam od wszelkiego rodzaju szumowin. Mam dla ciebie zadanie: sprawdź, jak wygląda sytuacja na węźle transportowym, upewnij się, że można tam przynajmniej swobodnie chodzić. Znajdź bezpieczne ścieżki czy coś. Naprawdę chcę, żeby to poszło gładko, okej?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Jesteś jak jakiś niewidzialny człowiek, duch czy coś w tym rodzaju. Chwila, wezmę mapę. Najbezpieczniejsze drogi są tutaj i tutaj, tak? Świetnie, dam znać moim ludziom. Dzięki, przyjacielu, naprawdę mi pomogłeś.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Przetrwaj i ewakuuj się z węzła transportowego", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "To jest dopiero prawdziwy as! Zbieram moich chłopaków, przyniosą tyle dobrego z Gochan! A co do twojej nagrody: sprawdź nową dostawę pancerzy, wszystko dla ciebie.", "5ae9e55886f77445315f662a": "Znajdź przedmiot: „Klucz do kas fiskalnych Gochan”", "5ae9e58886f77423572433f5": "Przekaż przedmiot: „Klucz do kas fiskalnych Gochan”", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Tylko nie włączaj latarki, jeśli nie chcesz oślepnąć na kilka dni! Tak czy inaczej, dobra robota, zostaw to na tej skrzyni.", "5b47796686f774374f4a8bb1": "Zmodyfikuj АК-102 zgodnie z podaną specyfikacją", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "No dalej, daj go tu, muszę go przekazać klientowi i to szybko. Mam nadzieję, że nikomu nie powiedziałeś, do czego zbudowano to MPX. Cóż, życzmy temu człowiekowi powodzenia.", "5b477b3b86f77401da02e6c4": "Zmodyfikuj SIG MPX zgodnie z podaną specyfikacją", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Dzięki, zostaw go gdzieś tutaj. Jestem teraz trochę zajęty, do zobaczenia później.", "5b477f1486f7743009493232": "Zmodyfikuj AKMN zgodnie z podaną specyfikacją", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "Karabin jest gotowy? Świetnie. Pewnie już się zorientowałeś, że Snajper naprawdę nazywa się Dima, jakiś czas temu mi się wymsknęło. Nikomu o nim ani słowa, mam nadzieję, że rozumiesz.", "5b47824386f7744d190d8dd1": "Zmodyfikuj M1A zgodnie z podaną specyfikacją", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Sprawia, że mam ochotę wystawić go na pokaz. Mistrzowska robota, naprawdę okazało się, że to arcydzieło.", "5b4783ba86f7744d1c353185": "Zmodyfikuj M4A1 zgodnie z podaną specyfikacją", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "O, świetnie, daj je tutaj. Mechanik prosił o nie, jak się pewnie domyślasz. Wyślę mu je dzisiaj. Dzięki, duża pomoc.", "5b47884886f7744d1c35327d": "Znajdź w rajdzie przedmiot: „Depresator oleju napędowego”", "5b47886986f7744d1a393e65": "Przekaż przedmiot: „Depresator oleju napędowego”", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Przekaż znaleziony w rajdzie przedmiot: „Figurka kota”", "5b478a6c86f7744d190d8f4d": "Znajdź w rajdzie przedmiot: „Złoty zegarek Roler Submariner”", "5b478a8486f7744d1c35328b": "Przekaż znaleziony w rajdzie przedmiot: „Złoty zegarek Roler Submariner”", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Znajdź w rajdzie przedmiot: „Złote jajo”", "62a70058ec21e50cad3b6709": "Przekaż znaleziony w rajdzie przedmiot: „Złote jajo”", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Zostaw przedmiot: „Słuchawki Peltor ComTac 2” w określonym miejscu", "5b478c7386f7744d1a393fb1": "Zostaw przedmiot: „Hełm 6B47 „Ratnik-BSz”” w określonym miejscu", "5b478cb586f7744d1a393fb5": "Zostaw przedmiot: „Kamizelka kuloodporna BNTI Gżel-K” w określonym miejscu", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Zlokalizuj i oznacz drugi żółty minibus nadajnikiem MS2000 na węźle transportowym", "5b478dca86f7744d190d91c2": "Zlokalizuj i oznacz trzeci żółty minibus nadajnikiem MS2000 na węźle transportowym", "5b478de086f7744d1c3533a1": "Przetrwaj i ewakuuj się z lokalizacji", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Znajdź przedmiot: „Pojemnik na substancje chemiczne #3” na węźle transportowym", "5b4c832686f77419603eb8f0": "Przekaż przedmiot: „Pojemnik na substancje chemiczne #2”", "5b4c836486f77417063a09dc": "Przekaż przedmiot: „Pojemnik na substancje chemiczne #3”", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Nieźle, wszystko jak trzeba! Mam nadzieję, że moi chłopcy z tego wyjdą, dostaną sporą pulę genową z nowej krwi, ale cholera, nie mają wielkiego wyboru.", "5b47905886f7746807461fe2": "Przekaż przedmiot: „Półmaska ochronna”", "5b4790a886f774563c7a489f": "Przekaż przedmiot: „Medyczny zestaw transfuzyjny”", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Znajdź w rajdzie przedmiot: „Półmaska ochronna”", "5ec1388d83b69d213d3c2ee0": "Znajdź w rajdzie przedmiot: „Medyczny zestaw transfuzyjny”", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Zainstaluj kamerę wi-fi, aby obserwować dok tartaku w lesie", "5b47936686f77427fd044025": "Zainstaluj kamerę wi-fi, aby obserwować drogę do portu w składzie celnym", "5b47938086f7747ccc057c22": "Zainstaluj kamerę wi-fi, aby obserwować wejście do sklepu Kiba Arms na węźle transportowym", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Przekaż przedmiot: „Obwód sterowniczy #3”", "5b4c7aec86f77459732b4b08": "Przekaż przedmiot: „Jednoosiowy żyroskop optyczny #2”", "5b4c8e6586f77474396a5400": "Znajdź przedmiot: „Jednoosiowy żyroskop optyczny #2” na wybrzeżu", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Znajdź przedmiot: „Obwód sterowniczy #1” w lesie", "66d07de6c7ef9040fff0b789": "Przekaż przedmiot: „Obwód sterowniczy #1”", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Zostaw przedmiot: „Złoty łańcuszek na szyję” pod materacami obok BTR-82A w sklepie na węźle transportowym", "5b4796c086f7745877352c2c": "Zostaw przedmiot: „Złoty łańcuszek na szyję” w mikrofalówce na trzecim poziomie budynku noclegowego w składzie celnym", "5b47971086f774587877ad34": "Zostaw przedmiot: „Złoty łańcuszek na szyję” w środkowej drewnianej kabinie w tartaku w lesie", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Zlikwiduj operatorów PMC w godzinach 22:00-10:00 na węźle transportowym", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "Czy czujesz się już jak Zajcew? Snajper jest zadowolony z wyników pierwszego testu i już przygotowuje się do kolejnego zadania.", "5bc850d186f7747213700892": "Zlikwiduj Scavy z odległości ponad 40 metrów używając karabinu powtarzalnego z celownikami mechanicznymi", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Nieźle, nieźle. Nawet ja nie byłbym tak celny w swoich strzałach, jestem już za stary. Podczas gdy ty strzelałeś, Snajper przygotował dla ciebie następny test.", "5bd983d886f7747ba73fc246": "Strzel dowolnemu celowi w nogi z odległości ponad 40 metrów, używając karabinu powtarzalnego", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Strzel dowolnemu celowi w głowę z odległości ponad 40 metrów, używając karabinu powtarzalnego", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Masz dobry refleks, skoro wciąż tu stoisz. Zgodnie z obietnicą chwyć swój nowy kapelusz! Dalej, strzelcu, czekają na ciebie nowe testy.", "5bc47e3e86f7741e6b2f3332": "Zlikwiduj operatorów PMC z mniej niż 25 metrów używając karabinu powtarzalnego", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Gotowy? No to do roboty. Snajper bardzo się tobą zainteresował.", "5bc4813886f774226045cb9a": "Zlikwiduj operatorów PMC z odległości ponad 80 metrów używając karabinu powtarzalnego", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Zlikwiduj operatorów PMC z odległości przynajmniej 80 metrów używając karabinu powtarzalnego", "657b0567ec71635f16471dd2": "Zlikwiduj operatorów PMC z odległości ponad 80 metrów używając karabinu powtarzalnego", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Dobra robota, sowie oczy. Przerzedziłeś tych nocnych drapieżników.", "5bc84f7a86f774294c2f6862": "Zlikwiduj Scavy używając karabinu powtarzalnego w godzinach 21:00-05:00 w składzie celnym", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "W strzelectwie wyborowym nie ma żadnych brudnych sztuczek. Dobra robota, młody.", "5bc483ba86f77415034ba8d0": "Zlikwiduj snajperów Scavów używając karabinu powtarzalnego", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "Wróg jest całkowicie bezradny, gdy nie wie, skąd do niego strzelają. Dobrze się spisałeś, strzelcu.", "5bc485b586f774726473a858": "Zlikwiduj operatorów PMC z odległości ponad 45 metrów używając wytłumionego karabinu powtarzalnego", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "To nie jest łatwe zadanie. Spróbuj ponownie.", "5bc4893c86f774626f5ebf3e successMessageText": "Wydaje się, że czasem bycie mądrym nie wystarcza, by działać mądrze. Cóż, stary dobry powtarzalniak może w tym pomóc. Snajper na razie milczy, więc poczekajmy trochę na kolejne zadania. Dam ci znać, gdy pojawią się nowe testy dla ciebie.", "5bc48aed86f77452c947ce67": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych bez umierania", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "Nie możesz zginąć lub opuścić rajdu, dopóki misja nie zostanie przekazana zleceniodawcy (status: zabity w akcji (KIA), zaginiony w akcji (MIA), przebiegnięcie)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Zostaw przedmiot: „Złoty zegarek Roler Submariner” w koszu na śmieci naprzeciw schodów na trzecim poziomie budynku noclegowego", "5c12320586f77437e44bcb15": "Zostaw przedmiot: „Pendrive z fałszywymi informacjami” w koszu na śmieci naprzeciw schodów na trzecim poziomie budynku noclegowego", "5c1233ac86f77406fa13baea": "Nie zabijaj żadnych Scavów w składzie celnym, kiedy zadanie jest aktywne", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Znajdź przedmiot: „Pendrive z fałszywymi informacjami” w określonym miejscu w składzie celnym", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "Dobrze się spisałeś, teraz masz mój szacunek! Będę o tobie pamiętał, jeśli będę miał coś ciekawego.", "5c0bc95086f7746e784f39ec": "Zlikwiduj Scavy używając wytłumionej strzelby 12 ga", "5c0bcc9c86f7746fe16dbba9": "Zlikwiduj operatorów PMC używając wytłumionej strzelby 12 ga", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Dobra robota, przyjacielu! Wszystko poszło zgodnie z planem.", "5c1242fa86f7742aa04fed52": "Zlikwiduj operatorów PMC w godzinach 21:00-06:00 (oprócz fabryki i laboratorium)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "No i, co o tym sądzisz? Poważna zabawka, tak? Świetnie, oddaj mi to. Masz, to za pomoc. Bądź w kontakcie, mogę potrzebować więcej pomocy przy testowaniu innych rzeczy.", "5c1b765d86f77413193fa4f2": "Zlikwiduj operatorów PMC z odległości ponad 60 metrów używając karabinu M1A z tłumikiem Hybrid 46 i lunetą Schmidt & Bender PM II 1-8x24", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "No i proszę. Teraz jestem pewien, że nie posrasz się w gacie, jeśli wszystko się\u00A0spierdoli.", "5c0bdbb586f774166e38eed5": "Osiągnij wymagany poziom umiejętności „Odporność na stres”", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych na rezerwach", "5c137ef386f7747ae10a821e": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych na wybrzeżu", "5c137f5286f7747ae267d8a3": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych w składzie celnym", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych na latarni morskiej", "63aec6f256503c322a190374": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych na ulicach Tarkowa", "64b694c8a857ea477002a408": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych na węźle transportowym", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Doświadczony snajper nie zdradzi się w ten sposób. Złap oddech i spróbuj ponownie.", "5c0be13186f7746f016734aa successMessageText": "Szczerze mówiąc, nie byłem pewny, czy dasz radę. Ale wygląda na to, że nie jesteś zwykłym plebsem.", "5c0be2b486f7747bcb347d58": "Osiągnij wymagany poziom umiejętności „Karabiny powtarzalne”", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Zlikwiduj operatorów PMC używając karabinów powtarzalnych bez umierania", "64b67fcd3e349c7dbd06bd16": "Nie możesz zginąć lub opuścić rajdu, kiedy zadanie jest aktywne (status: zabity w akcji (KIA), dezerter, zaginiony w akcji (MIA))", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Przyniosłeś to? Świetnie, zostaw to wszystko tam w rogu. Ostrożnie, ten sprzęt jest bardzo delikatny. Nawet jeśli ten pomysł z kliniką nie wypali, to wiem, że niektórzy ludzie będą zainteresowani tym sprzętem, ale to sprawa między nami. Po co marnować taki drogi sprzęt?", "5c0be66c86f7744523489ab2": "Przekaż przedmiot: „Oftalmoskop”", "5c0be69086f7743c9c1ecf43": "Przekaż\u00A0przedmiot: „Oświetlacz naczyniowy LEDX”", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Znajdź w rajdzie przedmiot: „Oftalmoskop”", "5fd8935b7dd32f724e0fe7ee": "Znajdź w rajdzie przedmiot: „Oświetlacz naczyniowy LEDX”", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "Prawdę mówiąc, nie miałam wątpliwości, że jesteś osobą, której mogę zaufać, nie tylko w pracy.", "5c0d0dfd86f7747f482a89a5": "Osiągnij wymagany poziom umiejętności „Zdrowie”", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Bardzo dobrze, bardzo dobrze! Klienci będą z ciebie zadowoleni, najemniku. Twoja nagroda.", "5c138c4486f7743b056e2943": "Przekaż przedmiot: „Programowalny procesor Virtex”", "5c138d4286f774276a6504aa": "Przekaż przedmiot: „Wojskowy bezprzewodowy nadajnik sygnału COFDM”", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Znajdź w rajdzie przedmiot: „Programowalny procesor Virtex”", "5ec13da983b69d213d3c2ee4": "Znajdź w rajdzie przedmiot: „Wojskowy bezprzewodowy nadajnik sygnału COFDM”", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Dobrze, kończyny są nadal przytwierdzone i zrobiono potrzebny hałas. Przydasz się w tych sprawach, wojowniku. Oto nagroda, zasłużyłeś na nią.", "5c1b760686f77412780211a3": "Zlikwiduj operatorów PMC granatami", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Już zrobione? Wiesz, to naprawdę zadziałało, sposób, w jaki ich przywódcy się porozumiewają, bardzo się zmienił. Nie wiń mnie, w tym świecie musisz dogadywać się nawet z takim łajdakiem. Twoja nagroda, najemniku.", "5c1b778286f774294438b536": "Zlikwiduj Scavy z mniej niż 60 metrów nosząc określone wyposażenie na węźle transportowym", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Zlikwiduj Scavy nosząc mundur ONZ (hełm UNTAR, kamizelka kuloodporna MF-UNTAR, karabinek M4A1) na węźle transportowym", "5c1b713f86f774719c22e8a0": "Zlikwiduj Scavy nosząc mundur ONZ (hełm UNTAR, kamizelka kuloodporna MF-UNTAR, karabinek M4A1) na wybrzeżu", "5c1fd66286f7743c7b261f7b": "Zlikwiduj Scavy nosząc mundur ONZ (hełm UNTAR, kamizelka kuloodporna MF-UNTAR, karabinek M4A1) w lesie", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Zlikwiduj Scavy nosząc mundur ONZ (hełm UNTAR, kamizelka kuloodporna MF-UNTAR, karabinek M4A1) na ulicach Tarkowa", "65e08aa9f5879b2586d5fd4c": "Zlikwiduj Scavy nosząc mundur ONZ (hełm UNTAR, kamizelka kuloodporna MF-UNTAR, karabinek M4A1) w strefie zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Przetrwaj i ewakuuj się z wybrzeża ze statusem wyjścia „przetrwano”", "5c13989886f7747878361a50": "Przetrwaj i ewakuuj się z fabryki ze statusem wyjścia „przetrwano”", "5c1931e686f7747ce71bcbea": "Przetrwaj i ewakuuj się z laboratorium ze statusem wyjścia „przetrwano”", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Przetrwaj i ewakuuj się z rezerw ze statusem wyjścia „przetrwano”", "629f08e7d285f377953b2af1": "Przetrwaj i ewakuuj się z latarni morskiej ze statusem wyjścia „przetrwano”", "63aec66556503c322a190372": "Przetrwaj i ewakuuj się z ulic Tarkowa ze statusem wyjścia „przetrwano”", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Zlokalizuj i oznacz drugi schowek paliwa nadajnikiem MS2000 w lesie", "5c10f94386f774227172c576": "Zlokalizuj i oznacz trzeci schowek paliwa nadajnikiem MS2000 w lesie", "5c10f94386f774227172c577": "Przetrwaj i ewakuuj się z lokalizacji", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "O to chodziło! Biorę lutownicę i zabieram się do pracy. Być może do tego czasu rynek już się ustabilizuje.", "5c1129ed86f7746569440e88": "Przekaż przedmiot: „Wiązka przewodów”", "5c112a1b86f774656777d1ae": "Przekaż przedmiot: „Kondensatory”", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Znajdź w rajdzie przedmiot: „Wiązka przewodów”", "5ca71a1e86f7740f5a5b88a2": "Znajdź w rajdzie przedmiot: „Kondensatory”", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "No i proszę, teraz jestem całkowicie pewien, że możesz wrócić z rajdu z niezłym łupem w plecaku. Dobra robota, bracie!", "5c112dc486f77465686bff38": "Osiągnij wymagany poziom umiejętności „Przeszukiwanie”", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Masz je? Świetnie. Ciekawe, o co poprosi następnym razem: o toaletę pokrytą diamentami? Ale hej, jeśli o to poprosi, będziesz musiał tego poszukać. Dzięki za pomoc, bracie.", "5c11427386f77430ff393793": "Przekaż znaleziony w rajdzie przedmiot: „Zabytkowy czajnik”", "5c122c5f86f77437e44bcb0e": "Przekaż znaleziony w rajdzie przedmiot: „Zabytkowa waza”", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Znajdź w rajdzie przedmiot: „Zabytkowy czajnik”", "5ca7258986f7740d424a2044": "Znajdź w rajdzie przedmiot: „Zabytkowa waza”", "62a700893e015d7ce1151d90": "Znajdź w rajdzie przedmiot: „Figurka papugi Axela”", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Moi ludzie mówią, że w składzie celnym trwa teraz trzecia wojna światowa, BEAR-y i USEC-i zabijają Scavy na lewo i prawo! Dobra rzecz, świetna robota. Oto twoja nagroda, zgodnie z obietnicą.", "5c1fa9c986f7740de474cb3d": "Zlikwiduj operatorów PMC nosząc określone wyposażenie w składzie celnym", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Osiągnij 4. poziom lojalności u Rozjemcy", "5c12489886f77452db1d2b05": "Osiągnij 4. poziom lojalności u Prapora", "5c1248ef86f77428266184c2": "Osiągnij 4. poziom lojalności u Terapeutki", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Osiągnij 4. poziom lojalności u Jaegera", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "Naprawdę je przyniosłeś! Cieszę się! Pozwól mi przyjrzeć się im z bliska.", "5c139eb686f7747878361a72": "Przekaż przedmiot: „Czytnik UHF RFID”", "5c139eb686f7747878361a73": "Przekaż przedmiot: „Moduł pamięci flash VPX”", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Znajdź w rajdzie przedmiot: „Czytnik UHF RFID”", "5ec14080c9ffe55cca300867": "Znajdź w rajdzie przedmiot: „Moduł pamięci flash VPX”", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Witaj, najemniku. Obserwuję cię już od dłuższego czasu i wiem, że potrafisz rozwiązywać powierzone ci zadania. Nie bądź zbyt cwany, nie tylko ty umiesz wykonywać rozkazy. Jest więcej takich wojowników jak ty, nawet bardziej kompetentnych. Chcę zaoferować ci pracę, dać ci szansę stania się częścią czegoś większego, niż możesz sobie wyobrazić. Jeśli jesteś gotowy, oto zadanie dla ciebie: moi ludzie działają w całym Tarkowie i często zostawiają po sobie pamiątki. Misja polega na zdobyciu i dostarczeniu mi tych przedmiotów. Bez żadnych pytań. Przedmioty te są niezwykle rzadkie. Mam nadzieję, że nie muszę ci przypominać, że wszystkie te przedmioty musisz zdobyć sam? Uwierz mi, jak nikt inny wiem, kiedy ludzie kłamią. Zostaniesz poinformowany o miejscu zrzutu. I jeszcze jedno, wszyscy moi partnerzy już dawno temu opanowali swoje umiejętności i udowodnili, że można na nich polegać, a jeśli chcesz być jednym z nich, to udowodnij mi, że nie ustępujesz im w wyszkoleniu. Nie próbuj się ze mną kontaktować, zrobię to sam, gdy przyjdzie na to czas.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Masz już wszystko? Dobrze, najemniku. Twoja ciężko zarobiona nagroda czeka na ciebie we wskazanym miejscu zrzutu, tak jak obiecano. Gratulacje i nie ma sprawy.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Przekaż znaleziony w rajdzie przedmiot: „Zniszczona zabytkowa książka”", "5c51bf8786f77416a11e5cb2": "Przekaż znaleziony w rajdzie przedmiot: „Olej do konserwacji broni #FireKlean”", "5c51bf9a86f77478bf5632aa": "Przekaż znaleziony w rajdzie przedmiot: „Figurka złotego koguta”", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Przekaż znaleziony w rajdzie przedmiot: „Puszka szprotek”", "5c51c24c86f77416a11e5cb7": "Przekaż\u00A0znaleziony w rajdzie przedmiot: „Sztuczne wąsy”", "5c51c25c86f77478bf5632af": "Przekaż znaleziony w rajdzie przedmiot: „Czapka Kottona”", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Przekaż znaleziony w rajdzie przedmiot: „Stare krzesiwo”", "5c52da5886f7747364267a14": "Przekaż\u00A0znaleziony w rajdzie przedmiot: „Zabytkowa siekiera”", "5cb5ddd386f7746ef72a7e73": "Znajdź w rajdzie przedmiot: „Stare krzesiwo”", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Znajdź w rajdzie przedmiot: „Puszka szprotek”", "5cb5df7186f7747d215eca08": "Znajdź w rajdzie przedmiot: „Sztuczne wąsy”", "5cb5df8486f7746ef82c17ea": "Znajdź w rajdzie przedmiot: „Czapka Kottona”", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Znajdź w rajdzie przedmiot: „Figurka kruka”", "5ec7998dc1683c0db84484e7": "Przekaż znaleziony w rajdzie przedmiot: „Figurka kruka”", "5ec79aaac1683c0db84484e8": "Znajdź w rajdzie przedmiot: „Maska plagi Pestily’ego”", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Przekaż znaleziony w rajdzie przedmiot: „Portfel WZ”", "60d0748820a6283a506aebb1": "Znajdź w rajdzie przedmiot: „Trutka na szczury LVNDMARK”", "60d074ef401d874962160aee": "Przekaż znaleziony w rajdzie przedmiot: „Trutka na szczury LVNDMARK”", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Znajdź w rajdzie przedmiot: „Kominiarka Smoke”", "60e827faf09904268a4dbc40": "Przekaż znaleziony w rajdzie przedmiot: „Kominiarka Smoke”", "62a6ff004de19a4c3422ea5d": "Przekaż znaleziony w rajdzie przedmiot: „Klucz do wózka widłowego marki Missam”", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Masz to? Dobra robota. Myślę, że jesteś godny tego, aby skontaktować cię z Jaegerem. Możliwe, że ma dla ciebie dużo roboty.", "5d249a6e86f774791546e952": "Znajdź przedmiot: „Zaszyfrowana wiadomość”", "5d249aa286f77475e8376399": "Przekaż przedmiot: „Zaszyfrowana wiadomość”", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Znajdź obóz Jaegera we wskazanym miejscu w lesie", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Znajdź w rajdzie przedmiot: „Racja żywnościowa Iskra”", "5d24bb4886f77439c92d6bad": "Znajdź w rajdzie przedmiot: „Paczka nudli instant”", "5d24bb7286f7741f7956be74": "Znajdź w rajdzie przedmiot: „Puszka gulaszu wołowego (duża)”", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Jak mawiała pewna znana osoba: „fruwać jak motyl, żądlić jak pszczoła”. Dobra rada, lepiej ją zapamiętaj. Czy czujesz, jak łatwo jest się poruszać bez tych wszystkich płyt na sobie? Jeśli poruszasz się szybko, nie potrzebujesz nawet pancerza, żeby poradzić sobie z szumowinami.", "5d25af3c86f77443ff46b9e7": "Zlikwiduj Scavy bez noszenia żadnego pancerza w lesie", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Zostaw przedmiot: „Butelka wody (0,6 l)” w bunkrze ZB-016 w lesie", "5d2deedc86f77459121c3118": "Zostaw przedmiot: „Racja żywnościowa Iskra” w bunkrze ZB-014 w lesie", "5d2defc586f774591510e6b9": "Zostaw przedmiot: „Butelka wody (0,6 l)” w bunkrze ZB-014 w lesie", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "Nie ma mowy, żebyś wytrzymał tak długo! Imponujące. Proszę bardzo, wypij to i odzyskaj siły.", "5d25c5a186f77443fe457661": "Przetrwaj 5 minut pod wpływem efektu całkowitego odwodnienia (oprócz fabryki)", "5d9f035086f7741cac4a9713": "Przetrwaj i ewakuuj się z lokalizacji", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Dałeś radę? Dobra robota. Twój trening jest już\u00A0prawie ukończony, przyjacielu. Jeśli dalej będzie nam tak szło, to będziemy mogli zająć się porządkiem w mieście wcześniej, niż zakładałem.", "5d25c8c986f77443e47ad47a": "Zlikwiduj Scavy pod wpływem efektu bólu", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Udało się? Świetnie! Pot oszczędza krew! Nie popadaj jednak w zbytnią ekstazę, czeka na ciebie jeszcze kilka zadań.", "5d25d09286f77444001e284c": "Zlikwiduj Scavy w jednym rajdzie bez używania żadnych leków w lesie", "5d25d0d186f7740a22515975": "Nie możesz użyć żadnych medykamentów, kiedy zadanie jest aktywne", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "Potrafisz sobie radzić nawet z drżeniem? Świetnie! Szczerze mówiąc, nie sądziłem, że ci się uda, zadanie było bardzo trudne.", "5d25d4e786f77442734d335d": "Zlikwiduj operatorów PMC trafieniami w głowę pod wpływem efektu drżenia", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Więc przetrwałeś? Kto by pomyślał.", "5d25dc2286f77443e7549028": "Zlikwiduj operatorów PMC pod wpływem efektu oszołomienia", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "Ilu ich było, sześć? I załatwiłeś ich wszystkich bez „gogli”? Rzeczywiście, jesteś świetnym nocnym łowcą, młody.", "5d25fd8386f77443fe457cae": "Zlikwiduj Scavy w godzinach 21:00-04:00 bez używania żadnych noktowizorów czy celowników termowizyjnych (oprócz fabryki)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "Jak to ludzie mówią? Co jest dla ciebie ciężkie w trakcie treningu, stanie się łatwe w walce! Ta umiejętność się przyda, zaufaj mi. Twój trening jest prawie zakończony. Wygląda na to, że jesteś gotowy, by zostać łowcą.", "5d2605ef86f77469ef0f7622": "Osiągnij wymagany poziom umiejętności „Witalność”", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Dobra robota! Oczywiście, w Tarkowie jest wystarczająco dużo szumowin, na pewno pojawią się inni. Ale przynajmniej dwa razy się\u00A0zastanowią, zanim zaczną niszczyć to miejsce.", "5d26143c86f77469ef0f894c": "Zlikwiduj operatorów PMC w pomieszczeniach biurowych (dowolne piętro) w fabryce", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Zlokalizuj i zlikwiduj Reshalę", "5d2710e686f7742e9019a6b2": "Przekaż przedmiot: „Pistolet TT-33 7,62 x 25 TT (złoty)”", "5d66741c86f7744a2e70f039": "Znajdź w rajdzie przedmiot: „Pistolet TT-33 7,62 x 25 TT (złoty)”", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "To oni dokonali wyboru, kiedy weszli na złą drogę. Ty postąpiłeś słusznie, łowco, dziękuję.", "5d2701b586f77469f1599fe2": "Zlikwiduj Scavy na całym terytorium Tarkowa", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Wyciągnąłeś wnioski? Dobrze. Widzisz, wroga możesz rozbroić na wiele sposobów.", "5d307fc886f77447f15f5b23": "Zlikwiduj operatorów PMC, gdy są pod wpływem efektu oszołomienia", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Zlokalizuj i zlikwiduj Killę", "5d271a3486f774483c7bdb12": "Przekaż przedmiot: „Hełm kuloodporny Maska-1SzCz (Killa)”", "5d667a8e86f774131e206b46": "Znajdź w rajdzie przedmiot: „Hełm kuloodporny Maska-1SzCz (Killa)”", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Zlokalizuj i zlikwiduj Nawigatora", "5d272a0b86f7745ba2701532": "Przekaż przedmiot: „Klucz od schowka Nawigatora”", "5d2f464e498f71c8886f7656": "Znajdź w rajdzie przedmiot: „Klucz od schowka Nawigatora”", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Ochroniłeś honor munduru? To świetnie. Chrzanić ich, nie ma nic gorszego, niż złożyć przysięgę i stać się przestępcą.", "5d272bd386f77446085fa4f9": "Zlikwiduj Scavy ubrane w mundur policyjny (ochroniarze Reshali)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "Słyszałem, co zrobiłeś. Wygląda na to, że teraz jest tam spokojniej, a szabrowników jest znacznie mniej. Masz moją wdzięczność.", "5d2733c586f7741dea4f3072": "Zlikwiduj operatorów PMC w budynkach noclegowych w składzie celnym", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Witaj z powrotem, łowco. Więc poradziłeś sobie z bandytami? Nawet sobie nie wyobrażam, ile to było kłopotów, ale świetnie się spisałeś.", "5d27369586f774457411b264": "Zlokalizuj i zlikwiduj Głuchara", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Więc działają w pobliżu laboratoriów i obiektów wojskowych… Och, mam nadzieję, że nie wywoła to kolejnej wojny, obok tej, która już trwa. Cóż, młody, to nie do nas należy rozstrzyganie tej kwestii, przynajmniej na razie.", "5d273a4d86f774457411b266": "Zlikwiduj najeźdźców", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Masz to? Świetnie. Mam nadzieję, że nie będę już musiał bezradnie patrzeć, jak ludzie umierają.", "5d27446f86f77475a86565a3": "Przekaż przedmiot: „Przenośny defibrylator”", "5d7782c686f7742fa732bf07": "Przekaż przedmiot: „Zestaw chirurgiczny CMS”", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Znajdź w rajdzie przedmiot: „Przenośny defibrylator”", "5ec1538a92e95f77ac7a2529": "Znajdź w rajdzie przedmiot: „Zestaw chirurgiczny CMS”", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Zlokalizuj dom przewodniczącego w opuszczonej wiosce na wybrzeżu", "5d357b9586f7745b422d653f": "Zlokalizuj dom rybaka w opuszczonej wiosce na wybrzeżu", "5d357bb786f774588d4d7e27": "Zlokalizuj dom księdza w opuszczonej wiosce na wybrzeżu", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Przetrwaj i ewakuuj się z wybrzeża ze statusem wyjścia „przetrwano”", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Masz go? Dobrze, zobaczmy, co on kombinuje. Wróć za jakiś czas, Mechanik i ja sprawdzimy pendrive’y, a potem damy też znać tobie.", "5d27491686f77475aa5cf5b9": "Przekaż przedmiot: „Zaszyfrowany pendrive”", "5d6949e786f774238a38d9e0": "Znajdź w rajdzie przedmiot: „Zaszyfrowany pendrive”", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Przekaż przedmiot: „Album ze zdjęciami”", "5d357e0e86f7745b3f307c56": "Zlokalizuj pokój Jaegera w sanatorium z widokiem na zatokę na wybrzeżu", "5d357e8786f7745b5e66a51a": "Znajdź przedmiot: „Album ze zdjęciami”", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "Masz je? Dobra robota, młody. Teraz musimy tylko wymyślić, jak znaleźć to laboratorium. Cóż, sam się tym zajmę, nie martw się.", "5d2f375186f7745916404955": "Znajdź w rajdzie przedmiot: „Karta dostępu TerraGroup Labs”", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Przekaż przedmiot: „Karta dostępu do laboratorium TerraGroup”", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Wejdź. Chcesz herbaty? Cóż, to bez znaczenia. Więc słuchaj, jest sprawa. Wkrótce będę gościć kilku moich znajomych. Chcę ich zabrać na polowanie, ale nie dam rady tego zrobić bez strzelb MP, racja? Mam trochę\u00A0niezłych zachodnich karabinów, ale muszę\u00A0najpierw je dobrze wyzerować. I mamy na to klienta, nazywa się\u00A0Nawigator. Więc przetestuj to, co zbudowałem (karabin wyborowy M700 z lunetą Burris FullField TAC30 1-4x24) na tym draniu. Luneta ma bardzo duże powiększenie, więc możesz nawet policzyć\u00A0piegi na twarzach ludzi, więc lepiej znajdź pozycję\u00A0z daleka. Nie martw się, nie zawiodę\u00A0cię z nagrodą, młody.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "To są cholernie dobre karabiny! Dobra robota! Wiesz, myślę, że sam mógłbym zająć się rusznikarstwem, całkiem mi się ta rzecz spodobała. A co do nagrody: sprawdź te drobiazgi, które znalazłem, mogą ci się przydać.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Zlikwiduj Nawigatora trafieniem w głowę z odległości ponad 75 metrów używając karabinu wyborowego M700 z określoną\u00A0lunetą", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Zobaczcie, kogo tu mamy! Witaj! Słuchaj, wiesz o bazie wojskowej w pobliżu sanatorium? Pewnie sam tam byłeś. Mam więc pewne wieści. Mówią, że w tamtejszych starych magazynach zostało jeszcze sporo jedzenia i że zaczęły się tam grasować grupy bandytów, nie są to zwykłe Scavy, są dobrze wyposażeni. Chcę, żebyś sprawdził, czy coś zostało w tych magazynach. Ale uważaj, tam naprawdę jest wielu niebezpiecznych ludzi.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Już zaczęli wszystko wynosić? Rozumiem, musimy działać szybko.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Zlokalizuj miejsce przechowywania żywności na rezerwach", "629f1259422dff20ff234b4d": "Przetrwaj i ewakuuj się z lokalizacji", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Przekaż przedmiot: „Akumulator wojskowy 6-STEN-140-M”", "5d4c020a86f77449c463ced6": "Znajdź w rajdzie przedmiot: „Pocisk OFZ 30 x 165 mm”", "5d4c028c86f774389001e027": "Przekaż przedmiot: „Pocisk OFZ 30 x 160 mm”", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "Zdecydowałeś się? Tylko kilka zastrzyków. Tu i tu. Nie przemęczaj się, przynajmniej przez kilka dni, odpoczywaj więcej i bierz witaminy.", "5d6fb8a886f77449db3db8b6": "Przekaż\u00A0RUB", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Powiedziano mi, że podjąłeś się szkolenia. Cóż, z twoimi umiejętnościami jestem pewien, że szybko się nauczysz.", "5d6fbf0f86f77449d97f738e": "Przekaż\u00A0EUR", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Już to zrobiłeś? Dobra robota. Zaczekaj chwilę, muszę zmierzyć twoje rozmiary i ustalić technikę szycia. Zgodnie z obietnicą. Ale musisz zrozumieć, że w dzisiejszych czasach materiały nie są tanie, więc licz się z ceną. Ale i tak ma trzy paski, wiesz, ikonę stylu.", "5dc53fd386f77469c87589a3": "Zlokalizuj i zlikwiduj Killę", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Przekaż przedmiot: „Tkanina z włókien aramidowych”", "5e38356d86f7742993306cac": "Przekaż przedmiot: „Tkanina ripstop”", "5e3835e886f77429910d4465": "Przekaż przedmiot: „Paracord”", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Przekaż przedmiot: „Tkanina ripstop”", "5e383a6386f77465910ce1f8": "Znajdź w rajdzie przedmiot: „Paracord”", "5e383a6386f77465910ce1f9": "Przekaż przedmiot: „Paracord”", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Przekaż przedmiot: „Tkanina poliamidowa Cordura”", "5e4d4ac186f774264f75833b": "Znajdź w rajdzie przedmiot: „Taśma klejąca KEKTAPE”", "5e4d4ac186f774264f75833c": "Przekaż przedmiot: „Taśma klejąca KEKTAPE”", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Przekaż przedmiot: „Tkanina polarowa”", "5e4d515e86f77438b2195249": "Znajdź w rajdzie przedmiot: „Taśma klejąca KEKTAPE”", "5e4d515e86f77438b219524a": "Przekaż przedmiot: „Taśma klejąca KEKTAPE”", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Och, w samą porę. Może już słyszałeś, że pojawił się nowy lekarz? Ale nie jest to jakiś dobroduszny Eskulap – jednym pomaga, a innych kaleczy. Mówią, że sprzedaje leki i przeprowadza operacje zaraz na ulicy. Nazywają go Sanitar, wyobrażasz sobie? Osiedlił się na wybrzeżu i, co ciekawe, miejscowe gnidy są z niego bardzo zadowoleni, a wiadomo dlaczego: on ich opatruje, a nawet sprzedaje im leki i różnego rodzaju apteczki. Oznacza to, że ma przy sobie niezły inwentarz. Dowiedz się czegoś o tym Sanitarze, ale po cichu. Na razie po prostu dowiedz się, gdzie ta szumowina się kręci. Wydaje mi się, że w tym samym miejscu zajmuje się zarówno sprzedażą, jak i leczeniem. Jesteś zainteresowany?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "Więc mówisz, że jest tam sporo zapasów? Pewnie znalazł sobie świeży, nieotwarty magazyn medyczny i teraz wszystko z niego wyprzedaje. Gdybym tylko mógł znaleźć ten magazyn… Cóż, to i tak nie jest twój problem. Na razie.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Oznacz pierwszy punkt handlowy nadajnikiem MS2000 na wybrzeżu", "5eda1da9a58a4c49c74165ee": "Oznacz drugi punkt handlowy nadajnikiem MS2000 na wybrzeżu", "5eda1dd3317f6066993c1744": "Oznacz trzeci punkt handlowy nadajnikiem MS2000 na wybrzeżu", "5f0389268580cc37797e0026": "Przetrwaj i ewakuuj się z lokalizacji", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "Więc uwierzyłeś tej kobiecie? Zdajesz sobie sprawę, że ona cię oszukuje dla własnych korzyści? Myślisz, że skoro Sanitar leczy jednych ludzi, to nie może zabijać innych? Zupełnie ci odbiło z tą twoją wojną, nie odróżniasz czarnego od białego. Zejdź mi z oczu, chcę być sam.", "5edab4b1218d181e29451435 successMessageText": "Postąpiłeś słusznie. Nawet jeśli inni mówią, że Sanitar robił dobre uczynki, to on przyniósł o wiele więcej zła. Nie wierz w kłamstwa tych ludzi. Widziałem już takich ludzi jak Sanitar: gdy raz oszaleją, nie ma już odwrotu. Można ich tylko zastrzelić jak wściekłe psy.", "5edab5a6cecc0069284c0ec2": "Zlokalizuj i zlikwiduj Sanitara", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Zlokalizuj grupę wysłaną do sanatorium na wybrzeżu", "5edab8890880da21347b3826": "Zlokalizuj grupę wysłaną na molo na wybrzeżu", "5edab8e216d985118871ba18": "Zlokalizuj grupę wysłaną do domków na wybrzeżu", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Przetrwaj i ewakuuj się z lokalizacji", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "Utrata moich ludzi na wybrzeżu jest z pewnością bardzo nieprzyjemnym wydarzeniem, ale ważniejsze jest nowe źródło leków. Potrzebujemy tylko innego podejścia do tej sprawy. Mój asystent zdołał przekupić miejscowego z wybrzeża, aby powiedział nam o Sanitarze, medyku, którego szukamy. Ma niewielką ochronę, kilka miejsc na wybrzeżu, ale co najdziwniejsze, przeprowadza operacje bezpośrednio na ulicy i często ukrywa swoje narzędzia w pobliżu takich miejsc, w pobliskich budynkach. Daj mi te narzędzia. Sanitar będzie bardziej skłonny do współpracy, jeśli zrozumie, że w każdej chwili możemy przerwać jego handel i przejąć kontrolę nad terytorium.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Przyniosłeś narzędzia? Włóż je do tej skrzynki, będę musiała je porządnie wyczyścić, nie wiadomo, gdzie były wcześniej. Widać wyraźnie, że jest w trudnej sytuacji, wszystko jest pokryte krwią, warunki wyraźnie niehigieniczne. Cóż, teraz to już moja sprawa. Oddam Sanitarowi jego narzędzia wraz z listem za pośrednictwem jednego z miejscowych, którego przekupiliśmy, aby zrozumiał, czego od niego chcemy.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Znajdź przedmiot: „Zestaw chirurgiczny oznaczony niebieskim symbolem” na wybrzeżu", "5edabb950c502106f869bc04": "Przekaż przedmiot: „Zestaw chirurgiczny oznaczony niebieskim symbolem”", "5edabbff0880da21347b382b": "Znajdź przedmiot: „Oznaczony oftalmoskop”", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hej ty, twardzielu! Mam dla ciebie robotę. Słyszałem, że Prapor wysłał cię po dostawę narkotyków od jakiegoś kolesia Sanitara. Nie rób takiej miny! Nie mam żadnego interesu w tych prochach, niech Prapor je zbierze i wsadzi sobie w dupę, i tak już dostałeś od niego coś, prawda? Musisz tylko umieścić te bystre małe rzeczy w pojemnikach, które znajdują się w magazynach Sanitara. Prapor nie dowie się o niczym, to robota na dwie minuty, ale zysk jest niezły. Tylko trzeba to zrobić szybko, zanim przeniosą te pojemniki.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Dobre rzeczy, dobre rzeczy! W końcu skrytki Prapora zostaną\u00A0odkryte, w których prawdopodobnie znajdują się całe góry łupów. Broń, amunicja, jedzenie, narkotyki. Kurwa, świetnie! Zrobimy to jednak sami, bez ciebie. Bez urazy. Dzięki.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Przetrwaj i ewakuuj się z lokalizacji", "5f071a9727cec53d5d24fe3b": "Oznacz pojemnik z medykamentami w sanatorium nadajnikiem MS2000 na wybrzeżu", "5f071ae396d1ae55e476abc4": "Oznacz pojemnik z medykamentami obok domków nadajnikiem MS2000 na wybrzeżu", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Młody człowieku, poczekaj. Wiedziałem, że Jaeger poprosi cię o zabicie Sanitara, ale nie musisz tego robić. Rozumiem punkt widzenia Jaegera, który uważa, że to wcielony potwór, ale tak nie jest. Jestem pewna, że Sanitar po prostu stara się pomóc mieszkańcom. W obecnej sytuacji przeprowadza najbardziej skomplikowane operacje i nic dziwnego, że często kończą się one źle. Jest lekarzem posiadającym najcenniejszą wiedzę, która może uratować jeszcze wiele istnień ludzkich. Lekarz, który ma dostęp do magazynu leków, które są dla nas niezwykle ważne. A on już podjął ze mną negocjacje i wkrótce rozpocznie współpracę. Ale do tego potrzebuję czegoś, co go zainteresuje, i chyba wiem, co to będzie: laboratorium. Klucze dostępu i próbki wojskowych środków stymulujących, myślę, że są one podstawą, na której prowadzi swoje eksperymenty. Czy możesz je dla mnie znaleźć? Możesz zdobyć karty dostępu, jak chcesz, ale stymulanty muszą być zapieczętowane, więc musisz je znaleźć sam.", "5edac34d0bb72a50635c2bfa failMessageText": "Szkoda, że posłuchałeś tego Jaegera zamiast głosu rozsądku. Sanitar ze swoją wiedzą i lekami mógł nam pomóc na wiele sposobów. Nie był święty, ale na pewno każdy ma szansę odpokutować za swoje grzechy, ale ty tę szansę odebrałeś. Jestem z ciebie bardzo niezadowolona.", "5edac34d0bb72a50635c2bfa successMessageText": "Dziękuję. Wiedziałam, że zrozumiesz, jak ważny jest teraz Sanitar i jego… lekarstwa. Wykazał już duże zainteresowanie kartami dostępu i stymulantami i wysłał pierwszą partię towaru. Proszę, to jest twoja część.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Nie zabijaj Sanitara", "5f04935cde3b9e0ecf03d864": "Przekaż przedmiot: „Karta do laboratorium TerraGroup (zielona)”", "5f04944b69ef785df740a8c9": "Przekaż przedmiot: „Karta do laboratorium TerraGroup (zielona)”", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Miłego dnia, najemniku. Bo ten dzień jest naprawdę dobry. Miałem rację, nowe stymulanty są powiązane z TerraGroup. Mechanik znalazł informacje o Sanitarze. Nie za wiele i było to dla nas bardzo kosztowne, ale lepsze to niż nic. Sanitar pracował dla TerraGroup, i to nie jako zwykły pracownik. Absolwent medycyny, specjalista od chorób zakaźnych, rozwiedziony… To wszystkie informacje, jakie o nim posiadamy. Daj mi więcej, mój przyjacielu, bardzo mnie interesuje, skąd miał dostęp do takich zasobów. Znajdź jego miejsce pracy i dowiedz się więcej.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Udało nam się rozszyfrować ten pendrive. Jest tam wiele ważnych informacji, ale nie mogę powiedzieć ci wszystkiego. To tajne. Mogę jednak opowiedzieć o Sanitarze, jest naukowcem. Badał i opracowywał leki, a następnie testował je na ludziach. Bardzo… odważne lub, jak to się czasem mówi, nieetyczne badania.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Przekaż przedmiot: „Pendrive oznaczony niebieską taśmą”", "5eec9d054110547f1f545c99": "Znajdź miejsce pracy Sanitara w laboratorium", "5eff5674befb6436ce3bbaf7": "Znajdź informacje o pracy Sanitara", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Witaj, wojowniku. A więc sprawa wygląda tak: doszły mnie słuchy, że ci byli wojskowi, którzy zabezpieczali bazę w rezerwach, wykopali jakieś przejście do podziemnego bunkra. Oczywiście nie zrobili tego własnymi rękami, tylko zmusili do tego Scavów i najprawdopodobniej żaden z tych biedaków nie zdołał się wydostać. Tak czy inaczej, nie mam pojęcia, co to za bunkier. Mam pewne informacje, że może to być bunkier dowodzenia. Ale nie jestem pewien, czy jest to dokładnie ten bunkier, czy tylko schron przeciwbombowy dla personelu bazy. Na razie nie ma sensu wysyłać tam dużej grupy, żeby zginęli z rąk tych łajdaków. Sprawdź te katakumby i daj mi znać, czy warto wysłać tam grupę. Zapłata jest dobra. Wchodzisz w to?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "Więc twierdzisz, że to schron dowodzenia? Plotki nie kłamią, hm… Cholera! Wyślę tam dziś moich ludzi, niech sprawdzą to miejsce. Może tam być tyle cennych śmieci! W każdym razie proszę, weź swoją nagrodę. Zgodnie z obietnicą.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Przetrwaj i ewakuuj się z lokalizacji", "5ee8eea538ca5b3b4f3c4647": "Zlokalizuj podziemny bunkier w rezerwach", "5ee8eecc0b4ef7326256c660": "Zlokalizuj pomieszczenie kontrolne w podziemnym bunkrze na rezerwach", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hej, najemniku, jesteś w samą porę, jesteś dokładnie tym, kogo potrzebuję. Pamiętasz ten pieprzony bunkier dowodzenia, który znalazłeś pod bazą w rezerwach? Krótko mówiąc, moi ludzie tam poszli i okazało się, że to naprawdę paskudne miejsce. Zbudowany z wysokim poziomem ochrony: filtry, generatory, wszystkie wejścia są zablokowane przez niezwykle mocne hermetyczne zamki, to jak podziemna forteca. Ale najeźdźcy otworzyli to cholerstwo i okopali się w nim jak kleszcze w Alabamie. Moi ludzie wpadli w poważne tarapaty, mniej niż połowie udało się stamtąd wydostać. Ale wiesz, teraz to jest jeszcze bardziej intrygujące, do kurwy nędzy. Więc moi ludzie nie pójdą tam więcej bez powodu, ale gdybyś mógł znaleźć dla nich bezpieczną drogę… Jesteś doświadczonym facetem, więc musisz po cichu, na tych swoich miękkich łapkach, sprawdzić, gdzie są wszystkie wejścia. Chłopaki mówili, że wejścia mają te wielkie, hermetyczne drzwi. Do ciebie należy więc sprawdzenie drogi do środka.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Witaj ponownie, słucham. Ach, więc tak to jest… Drzwi są tam, prawda? Po prostu narysuj je bezpośrednio na mojej mapie, nie martw się. Więc ten bunkier łączy prawie wszystkie obiekty w bazie? Cholera, jakie to wygodne, można by obejść pół bazy pod nosem wszystkich. Teraz już wiadomo, dlaczego najeźdźcy tam są, można stamtąd kontrolować całą bazę. Dziękuję ci, wojowniku! Oto twoja nagroda.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Przetrwaj i ewakuuj się z lokalizacji", "5ee8ec5ed72d953f5d2aabd1": "Zlokalizuj hermetyczne drzwi prowadzące do szpitala (biały goniec)", "5ee8ecd75eb3205dae135d17": "Zlokalizuj jedne z dwóch hermetycznych drzwi prowadzących do budynku akademii (czarny goniec)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "Więc tak to jest, to jest na pierwszym poziomie? Ile razy moi ludzie byli tam i nic nie znaleźli. Udało ci się wejść do środka? Znalazłeś tam coś ciekawego? W sumie to nieważne, i tak wyślę moich chłopców, żeby to sprawdzili. Oto twoja nagroda, zasłużyłeś na nią. Dziękuję.", "5f0488c590eea473df674002": "Zlokalizuj gabinet Sanitara w sanatorium", "5f04983ffbed7a08077b4367": "Przetrwaj i ewakuuj się z lokalizacji", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Witaj, wojowniku. Mam dla ciebie zadanie. Krótko mówiąc, straciłem kontakt z jedną z moich grup, a minęło już sporo czasu. Kiedy wszystko się posypało, wysłałem ich do lasu po ładunek. Obawiam się, że wpadli w zasadzkę, ostatnim razem, gdy się z nimi kontaktowałem, donosili, że USEC-i zbliżają się do nich ze wzgórz. Zbadaj to, sprawdź, czy ktoś przeżył. W ich konwoju znajdował się BRDM, Buchanka i jakaś ciężarówka, nie pamiętam dokładnie jakiego rodzaju. Wydaje mi się, że USEC-i też musieli się gdzieś tam osiedlić, więc bądź czujny. Znajdź mój konwój i obóz tych USEC-ów, jeśli rzeczywiście tam jest. Możesz odejść.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "No i moi ludzie nie wyszli stamtąd żywi, a transporty zostały splądrowane… Dodatkowo mówisz, że w pobliżu jest obóz USEC? Do bani, ładunek był bardzo ważny. Cóż, wykonałeś swoją część umowy, więc oto nagroda. Możesz już\u00A0spadać.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Zlokalizuj zaginiony konwój Prapora w lesie", "5fd9fad9c1ce6b1a3b486d05": "Zlokalizuj tymczasowy obóz USEC", "5fd9fad9c1ce6b1a3b486d0d": "Przetrwaj i ewakuuj się z lokalizacji", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "Powietrze w całym lesie zadrżało od tej wściekłej wymiany ognia. Drań dostał to, na co zasłużył, a wszystko to dzięki tobie. Masz, odpowiednia nagroda za taki wyczyn. Nie krępuj się, możesz też kupić nowe karabiny.", "600303250b79c6604058ce30": "Zlokalizuj i zlikwiduj Nawigatora", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Zlokalizuj i obejrzyj drugi LAV III na rezerwach", "608925d455f4ac386d7e7fc4": "Oznacz pierwszy LAV III nadajnikiem MS2000", "608930aa1124f748c94b801e": "Zlokalizuj i obejrzyj czołg T-90 na rezerwach", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Wspaniale, wspaniale, wspaniale! Weź moje pieniądze! Moja jedyna prośba jest taka, żebyś nikomu nie mówił ani słowa o tej umowie.", "60929ad46342771d851b827a": "Znajdź przedmiot: „Panel kontrolny dowodzenia T-90M” na rezerwach", "60929afc35915c62b44fd05c": "Przekaż przedmiot: „Panel kontrolny dowodzenia T-90M”", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Znajdź przedmiot: „Dokumenty wojskowe #3” w biurach bunkra dowodzenia na rezerwach", "60ae0f0586046842a754e21e": "Przekaż\u00A0przedmiot: „Dokumenty wojskowe #2”", "60ae0f17b809a4748759078c": "Przekaż\u00A0przedmiot: „Dokumenty wojskowe #3”", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Dobra robota. Mam nadzieję, że zrozumieją, co się teraz dzieje i że nie mogą tak po prostu zabijać moich ludzi. Oto nagroda.", "608bffeee0cc9c2d4d2ccb29": "Zlikwiduj najeźdźców w bunkrze dowodzenia na rezerwach", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Przekaż\u00A0przedmiot: „Dokumentacja medyczna #1”", "60ae12ffb809a474875907aa": "Znajdź\u00A0przedmiot: „Dokumentacja medyczna #2” na rezerwach", "60ae134cabb9675f0062cf6e": "Przekaż\u00A0przedmiot: „Dokumentacja medyczna #2”", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": " A więc tak to wygląda! Świetnie. Dziękuję, później przestudiuję to dokładniej. Oto twoja nagroda, zgodnie z obietnicą.", "6092942fb0f07c6ea1246e3a": "Znajdź przedmiot: „Zintegrowany system nawigacji MBT” na rezerwach", "6092947635915c62b44fd05b": "Przekaż przedmiot: „Zintegrowany system nawigacji MBT”", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "A więc wyjście działa? Doskonale. Nadal przygotowuję twoją nagrodę, więc w międzyczasie powiedz mi więcej o mechanizmie otwierania tych drzwi do bunkra.", "608a94101a66564e74191fc3": "Znajdź niezasilane tajne wyjście na rezerwach", "608a94ae1a66564e74191fc6": "Ewakuuj się tym wyjściem", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Super, moi chłopcy właśnie wrócili z rajdu cali i zdrowi, ani jednego zadrapania. Oto twoja nagroda!", "608ab22755f4ac386d7e7fdc": "Zlikwiduj Scavy w podziemnym magazynie na rezerwach", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Sprawdź drugą zbrojownię w południowych koszarach (biały pionek) na rezerwach", "608bd2465e0ef91ab810f98a": "Sprawdź pomieszczenie służbowe we wschodnich koszarach (czarny pionek) na rezerwach", "608c187853b9dd01a116f480": "Przetrwaj i ewakuuj się z lokalizacji", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Przetrwaj i ewakuuj się z lokalizacji", "60a4dc7e4e734e57d07fb335": "Oznacz pierwszą grupę\u00A0zbiorników paliwa nadajnikiem MS2000 na rezerwach", "60b90232ec7c6f5eb510c195": "Oznacz drugą grupę\u00A0zbiorników paliwa nadajnikiem MS2000 na rezerwach", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Zrobione? Powietrze wydaje się teraz prawie świeższe. Szkoda, że nie udało nam się w inny sposób naprostować tych szabrowników.", "608a8356fa70fc097863b8f8": "Zlikwiduj Scavy w obszarze koszar na rezerwach", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "To dobra wiadomość. Świat będzie coraz czystszy. Mam nadzieję, że ten drań nie dopadł cię ze swoim młotem kowalskim?", "60c0d187938d68438757cda2": "Zlokalizuj i zlikwiduj Tagillę", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Znajdź w rajdzie przedmiot: „Czapka „BOSS””", "60cfa5a85f9e6175514de2e3": "Przekaż przedmiot: „Czapka „BOSS””", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Zlikwiduj operatorów PMC na węźle transportowym", "60ec0b1871035f300c301acd": "Zlikwiduj operatorów PMC w laboratorium", "60ec2b04bc9a8b34cd453b81": "Nie możesz zginąć lub opuścić rajdu, kiedy zadanie jest aktywne (status: zabity w akcji (KIA), dezerter, zaginiony w akcji (MIA), przebiegnięcie)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Zlikwiduj operatorów PMC w strefie zero", "65e19abadf39d26751b3bb1e": "Zlikwiduj operatorów PMC w strefie zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Zlikwiduj operatorów PMC w bazie Scavów w składzie celnym", "60ec1e72d7b7cb55e94c1764": "Zlikwiduj operatorów PMC w bazie Scavów w lesie", "60ec2229fd1bf4491c4e4552": "Zlikwiduj operatorów PMC na molo przy sanatorium na wybrzeżu", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Proszę bardzo, tak jest o wiele lepiej. Dziękuję ci, wojowniku. Chłopaki mówią, że już się uspokoiło, więc wygląda na to, że kretyni zrozumieli twoje przesłanie.", "60e8650e5d67b234af3d3926": "Zlikwiduj Scavy trafieniami w głowę", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Jebaniutki… Zdobyłeś je wszystkie sam? Masz jaja, to na pewno. Coś tu nie gra z tymi psycholami, mówię ci…", "60e82c12fd1bf4491c4e4547": "Znajdź w rajdzie przedmiot: „Nóż kultysty”", "60e82c5926b88043510e0ad7": "Przekaż przedmiot: „Nóż kultysty”", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Przekaż przedmiot: „Oświetlacz naczyniowy LEDX”", "60f028ca86abc00cdc03ab89": "Znajdź w rajdzie przedmiot: „Sterta leków”", "60f028f85caf08029e0d6277": "Przekaż przedmiot: „Sterta leków”", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Znajdź w rajdzie przedmiot: „Butelka multiwitamin OLOLO”", "62a70168eb3cb46d9a0bba7a": "Przekaż znaleziony w rajdzie przedmiot: „Butelka multiwitamin OLOLO”", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Wspaniale, najemniku. Teraz moim ludziom będzie o wiele łatwiej operować w tym miejscu! Dziękuję ci za twoją pracę.", "60e745d6479eef59b01b0bdc": "Zlikwiduj najeźdźców na rezerwach", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Wspaniale, wspaniale! Klienci już nam podziękowali za udaną misję. Dobra robota, najemniku.", "60e8174d0367e10a450f7818": "Znajdź w rajdzie i przekaż\u00A0przedmiot: „Nieśmiertelnik BEAR” (poziom 50+)", "60e81795479eef59b01b0bdf": "Znajdź w rajdzie i przekaż\u00A0przedmiot: „Nieśmiertelnik USEC” (poziom 50+)", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Znajdź w rajdzie przedmiot: „Wojskowy bezprzewodowy nadajnik sygnału COFDM”", "60e7449875131b4e61703b7e": "Przekaż przedmiot: „Programowalny procesor Virtex”", "60e744c9d1a062318d3d2262": "Przekaż przedmiot: „Wojskowy bezprzewodowy nadajnik sygnału COFDM”", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Znajdź w rajdzie przedmiot: „Wojskowy pendrive”", "62a7019ea9a0ea77981b57da": "Przekaż znaleziony w rajdzie przedmiot: „Wojskowy pendrive”", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Świetnie, to wszystkie wyniki, których potrzebowałem, podaj mi notes. Dzięki, najemniku.", "60e740b8b567ff641b129573": "Zlikwiduj operatorów PMC z odległości ponad 100 metrów", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Świetnie, bardzo dziękuję, przyjacielu. Klient już zgłosił, że otrzymał paczki. Myślę, że to nie jest ostatnie zamówienie od niego, więc będę na ciebie liczył dalej.", "60e84ba726b88043510e0ad8": "Zostaw przedmiot: „Luneta termiczna Trijicon REAP-IR” pod podstawą żółtego żurawia na placu budowy w składzie celnym", "60e85b2a26b88043510e0ada": "Zostaw przedmiot: „Luneta termiczna Trijicon REAP-IR” za kontenerami na śmieci na „nowej” stacji benzynowej w składzie celnym", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Szacunek, bracie, bardzo mi pomogłeś! Jeśli zobaczysz w ULTRA jakichś niebezpiecznych kolesi, daj mi znać. Możesz być potrzebny, żeby znowu się z nimi rozliczyć.", "60e73ee8b567ff641b129570": "Zlikwiduj operatorów PMC w środku centrum handlowego ULTRA na węźle transportowym", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Przekaż przedmiot: „Butelka whiskey Dan Jackiel”", "60f028268b669d08a35bfad8": "Znajdź w rajdzie przedmiot: „Kanister z wodą oczyszczoną”", "60f0284e8b669d08a35bfada": "Przekaż przedmiot: „Kanister z wodą oczyszczoną”", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Znajdź w rajdzie przedmiot: „Butelka piwa „Piewko swietłoje””", "62a70110eb3cb46d9a0bba78": "Przekaż znaleziony w rajdzie przedmiot: „Butelka piwa „Piewko swietłoje””", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Zlokalizuj i zlikwiduj Nawigatora", "60e7261eb567ff641b129557": "Zlokalizuj i zlikwiduj Głuchara", "60e72629465ea8368012cc47": "Zlokalizuj i zlikwiduj Sanitara", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Tutaj jesteś, szybki. Zadowoliłeś starca i sam wyciągnąłeś wnioski, mam nadzieję. To ty sam jesteś bronią i monolitem, a nie ilość stali, którą nosisz.", "60e729cf5698ee7b0505743c": "Zlikwiduj operatorów PMC bez używania żadnego pancerza i hełmów w lesie", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Odważna decyzja, najemniku.", "60effdac12fec20321367038": "Przekaż przedmiot: „Zabezpieczony pojemnik Epsilon”", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Słuchaj, bracie, możesz mi pomóc znaleźć odpowiednie informacje o pewnym facecie? On już opuścił miasto. Dlaczego sam nie mogę go znaleźć? Bo nazywa się kurwa Iwan Iwanow. Poważnie, nie żartuję. W całym kraju jest dwieście tysięcy ludzi o tym imieniu i nazwisku. Gdybyśmy znaleźli jego dawny adres w Tarkowie, moglibyśmy go sprawdzić w bazie danych. Zobaczę, co mogę o nim znaleźć. Chyba prowadził bar. Nie znam nazwy tego baru, ale… Słuchaj, nie wiem, skąd będziesz wiedział, który bar jest jego. O, to mi przypomniało, że lubił balet. Bez żartów. Co sezon chodził do Mariinku. Próbował nawet zorganizować coś w naszym lokalnym teatrze, ale ludzie nie przepadali za laskami w baletowych spódniczkach. Bardziej konkretnie? Bracie, ja już jestem cholernie konkretny! Wierzę w ciebie, użyj swojej intuicji.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Znalazłeś zarówno adres baru, jak i faceta? Weź, zapisz to tu dla mnie. Jesteś lepszy niż ci jasnowidzowie w telewizji, którzy odnajdują zaginionych ludzi. Chcesz zostać detektywem, gdy to wszystko się skończy, bracie? Załatwię ci kapelusz Poirota, obiecuję.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Zlokalizuj mieszkanie baletmistrza na ulicach Tarkowa", "63a7daae04d3dc28a52a2109": "Przetrwaj i ewakuuj się z lokalizacji", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Chodź tu, mój drogi pracowniku. Wszystko w porządku w mieście? Zaginęło kilka moich zespołów. W pierwszej chwili pomyślałem, dlaczego ktoś jest tak zarozumiały i próbuje zamknąć mój interes? Chyba że ze mną zadzierają, czy coś. Na początku założyłem, że to ten śmieć z latarni morskiej. Ale potem dostaję wiadomość od Siewy Szkieta. Napisał, że trzymano go w jakimś prywatnym więzieniu. Słyszałeś o nim? Jest ukryte gdzieś w starych apartamentowcach. Garnitury podrzucały tam swoich rywali, a każdego łatwiej trzymać pod kluczem, niż na wolności. Ja bym ich po prostu zabił, gdyby to był taki problem, szczerze mówiąc. Ale wygląda na to, że ktoś woli trzymać ich w więzieniu, niż po prostu kropnąć\u00A0problematycznych drani… Sprawa wygląda tak: Szkiet jako jedyny z grupy uciekł, ale teraz jest na wolności, nie kontaktował się z nami od czasu tej wiadomości, którą wysłał. Nawet nie powiedział nam, gdzie znaleźć chłopaków, ten szczurowaty skurwiel. Chłopaki sami są sobie winni, że dali się złapać jak jakieś kurwy i ja bym im po prostu kazał wypierdalać za taką wpadkę. Ale fakt, że ktoś próbuje mnie wychujać, jest nie do zaakceptowania. Dobra, dość tych bzdur. Dowiedz się, gdzie trzymają moich chłopców.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Kurwa mać. Dlaczego ktoś miałby ich tam trzymać? Zrozumiałbym, gdyby przysłali mi list, że zabiją moich ludzi, jeśli nie zapłacę i takie tam. Seryjny morderca czy coś? Tak czy inaczej, wpadnij za jakiś czas, dowiem się, co się dzieje.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Przetrwaj i ewakuuj się z lokalizacji", "63a7d767f32fa1316250c3da": "Zlokalizuj miejsce przetrzymywania zaginionej grupy na ulicach Tarkowa", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "To znowu ta sama historia, nowe nagranie, teraz z dziwnym symbolem. Co się dzieje, do cholery? Ludzie są składani w ofierze. Komu? Dlaczego? Tak wiele pytań, a jednak brak odpowiedzi. Ciągle myślę, że to najgorsze, co nas spotka, ale za każdym razem udowadniam, że się mylę. Walczyliśmy z szabrownikami, którzy mieli w głowie tylko pieniądze. Mordercami, którzy chcą strzelać do niewinnych. Ale przynajmniej rozumiem motywację, bestia pokonała człowieka w ich duszy. Ale w jakim celu ludzie stają się tymi… Nie mogę tego zrozumieć. Zatem żołnierzu, ja poszukam ich w lesie, ty zrób to samo w mieście. Gdzieś tam musi być ich kryjówka. Szukaj tego samego symbolu, jestem pewien, że jeszcze go zobaczymy.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Znalazłeś go? Gdzie? Ktoś tam był? Co oznacza ten symbol? Jeszcze więcej pytań…", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Przetrwaj i ewakuuj się z lokalizacji", "63a7d6d61f06d111271f5aeb": "Zlokalizuj miejsce spotkania kultystów na ulicach Tarkowa", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Witam! No to zaczynamy, jesteś podekscytowany? Zadanie jest dość specyficzne, musimy przetestować rosyjską zabawkę do walki w zwarciu, tak aby warunki były właśnie tą prawdziwą walką w mieście. Mam klientów, którzy nie wierzą w skuteczność tej zabawki… Jesteś w stanie zmienić ich zdanie?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "No i? Działa dobrze? Nadaje się do walki w zwarciu w środowisku miejskim?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Zlikwiduj operatorów PMC używając SR-2M z tłumikiem dźwięku i celownikiem kolimatorowym KP-SR2 na ulicach Tarkowa", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Niektóre są nadal nienaruszone, hm. Cóż, to fajnie, odwiedzimy je. Twoja nagroda.", "6572e876dc0d635f633a5718": "Zlokalizuj pierwszą grupę bankomatów na ulicy Klimowa na ulicach Tarkowa", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Zbadaj sklep Sparża w hotelu Pinewood", "6572e876dc0d635f633a571e": "Zbadaj sklep Gochan w Concordii", "6572e876dc0d635f633a5720": "Przekaż znaleziony w rajdzie przedmiot: „Kiełbasa wołowa Słony pies”", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "ATM #11", "65733403eefc2c312a759df2": "ATM #12", "65733403eefc2c312a759df4": "ATM #14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "ATM #15", "65733403eefc2c312a759dfa": "ATM #16", "65801ad655315fdce2096bec": "Odkryj tajemnicę sukcesu firmy", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Znalazłeś to? Dobra robota, teraz daj to tu! I odbierz nagrodę, zasłużyłeś na nią.", "6573397ef3f8344c4575cd88": "Zlokalizuj fundusz nieruchomości na ulicach Tarkowa", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Znajdź\u00A0przedmiot: „Rejestry katastralne”", "658167a0e53c40116f8632fa": "Przekaż\u00A0przedmiot: „Rejestry katastralne”", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "O tak, słyszałem już plotki. Ludzie wkrótce przybiją te śmieci do ściany. Odwaliłeś kawał dobrej roboty. Oto twoja nagroda.", "65734c186dc1e402c80dc1a2": "Zlikwiduj dowolny cel nosząc czapkę bomberkę i okulary przeciwsłoneczne RayBench Hipster Reserve na ulicach Tarkowa", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Zostaw przedmiot: „Czapka bomberka” w salonie fryzjerskim na ulicach Tarkowa", "657356d0a95a1e7e1a8d8d99": "Zostaw przedmiot: „Okulary przeciwsłoneczne RayBench Hipster Reserve” w salonie fryzjerskim na ulicach Tarkowa", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "To jest w jebanym bagnie? To wyjaśnia popierdoloną cenę. Wyciągnięcie go stamtąd i wyczyszczenie kosztowałoby więcej! Dobra, to za pomoc.", "65802b627b44fa5e1463889a": "Zlokalizuj SUV-a Ragmana na wybrzeżu", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Przetrwaj i ewakuuj się z lokalizacji", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Zlokalizuj i zdobądź plakat „Bison konta Undertaker” w obozie USEC w lesie", "664bbb5f217c767c35ae3d51": "Zlokalizuj i zdobądź plakat „Killa i Tagilla” w obozie USEC w lesie", "664bbb73c71d456fd03714ca": "Zlokalizuj i zdobądź plakat „łatwa kasa” w obozie USEC w lesie", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Dobra robota! Kaban i Kołontaj już rozpętują burzę, szukając tego, który zlecił zabójstwo. Przejdzie im i zdadzą sobie sprawę, że przekroczyli granicę. Masz, to twoja nagroda.", "660d5effb318c171fb1ca234": "Zlikwiduj ochroniarzy Kabana na ulicach Tarkowa", "660d5f5a99b1db9725ca1543": "Zlikwiduj ochroniarzy Kołontaja na ulicach Tarkowa", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Wygraj 6 z 10 meczów w trybie rankingowym na Arenie", "662bb24b3d34cd5e19206e63": "Warunek niepowodzenia: przegraj 5 meczy", "6633a85e347a2a2b4051a26b": "Przekaż ruble z balansu EFT", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Warunek niepowodzenia: przegraj 5 meczy", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "Widziałeś martwe ciało. Przeszukałeś je? Sprawdziłeś dookoła? Zwracam tylko uwagę, że jesteś ślepy. Z tego, co wiem, mistrz prowadził dziennik. Tak, jak jakiś nastolatek, ale to akurat działa na twoją korzyść.\n\nMoże pójdziesz tam jeszcze raz i przyjrzysz się bliżej? W dzienniku musi być więcej informacji o Refie, jakieś brudy na jego temat. Zrób to, jeśli chcesz przestać być zbędny na Arenie.\n\nI jeszcze jedno: jeśli przyniesiesz mi jakieś informacje na temat Refa, które będą warte mojego czasu, dobrze ci zapłacę.", "66058ccf06ef1d50a60c1f48 failMessageText": "Chcesz zostać pod spódnicą Refa? Jak tam chcesz.", "66058ccf06ef1d50a60c1f48 successMessageText": "Dobra robota. Cieszę się, że wziąłeś los za jaja.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Znajdź\u00A0przedmiot: „Brudy Refa”", "664fd7f0837ee02ad4c8e658": "Przekaż przedmiot: „Brudy Refa”", "66563f0a2684eee09e8dcd86": "Zlokalizuj kryjówkę starego mistrza", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "Telefon jest fałszywy. Ktoś naprawdę chciał, aby Narciarz i jego ludzie skupili się na tym. Wygląda na to, że gra ma nowego gracza. Przyjrzymy się temu.", "660ab9c4fcef83ea40e29efe": "Przekaż\u00A0przedmiot: „Telefon Unheard”", "660ac159205fdc5a2afb1665": "Znajdź przedmiot: „Telefon Unheard” w składzie celnym", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sprzedaj dowolną broń Narciarzowi", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "Więc w środku jest pusto. To dobrze: jeśli nie ma ciał, istnieje prawdopodobieństwo, że uchodźcy żyją. Wiesz o zasadzie superpozycji, prawda?\nW porządku, wracamy do rzeczy. Przejrzałem dysk. Było tam hasło [bmV3ZGF3bi4u] z napisem „ważne”. Myślę, że możesz to rozwiązać.", "6616a9a14df4f14a474c92ba": "Zlokalizuj i zdobądź dysk twardy w kryjówce w domku na latarni morskiej", "6616a9a98a97f72b921665f2": "Przekaż przedmiot: „Dysk twardy”", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Zlokalizuj i zdobądź dysk twardy w kryjówce w domku na latarni morskiej", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "Więc w środku jest pusto. To dobrze: jeśli nie ma ciał, istnieje prawdopodobieństwo, że uchodźcy żyją. Wiesz o zasadzie superpozycji, prawda?\nW porządku, wracamy do rzeczy. Przejrzałem dysk. Było tam hasło [bmV3ZGF3bi4u] z napisem „ważne”. Myślę, że możesz to rozwiązać.", "6616a9fdfd94e03533038dab": "Zlokalizuj i zdobądź dysk twardy w kryjówce w domku na latarni morskiej", "6616a9fdfd94e03533038dac": "Przekaż przedmiot: „Dysk twardy”", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Zlokalizuj i zdobądź dysk twardy w kryjówce w domku na latarni morskiej", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Przekaż przedmiot: „Torba Sanitara”", "6669769ff0cb253ff7649f27": "Znajdź w rajdzie przedmiot: „Plate carrier Crye Precision AVS (edycja Tagilla)”", "666976ab1a6ef5fa7b813883": "Przekaż przedmiot: „Plate carrier Crye Precision AVS (edycja Tagilla)”", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Znajdź w rajdzie przedmiot: „Kamizelka taktyczna przenoszenia oporządzenia LBT-1961A (edycja Goons)”", "666977849154974010adb5ec": "Przekaż przedmiot: „Kamizelka taktyczna przenoszenia oporządzenia LBT-1961A (edycja Goons)”", "666977bfe975ac480a8f914e": "Znajdź w rajdzie przedmiot: „System ramowy Mystery Ranch NICE COMM 3 BVS (Coyote)”", "666977ca5fa54985173f8e2c": "Przekaż przedmiot: „System ramowy Mystery Ranch NICE COMM 3 BVS (Coyote)”", "666977f2dd6e511e9f33005a": "Znajdź w rajdzie przedmiot: „Plate carrier Crye Precision CPC (edycja Goons)”", "666978023255d2720cbdf76d": "Przekaż przedmiot: „Plate carrier Crye Precision CPC (edycja Goons)”", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Cześć, bandyto! Jak życie? Mały ptaszek powiedział mi, że w centrum handlowym Ultra na węźle transportowym jest specjalny magazyn. Napisali o naszej rosyjskiej grze wideo, która jest rozpoznawalna na całym świecie! Chyba chłopaki naprawdę wpadli na świetny pomysł!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "To dopiero zwycięstwo! Magazyn trafił w dziesiątkę! Wygląda jak prawdziwie historyczna rzecz.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Zlokalizuj i zdobądź przedmiot „Magazyn o grach” na węźle transportowym", "667a95972740eaeca1ecda21": "Przekaż przedmiot: „Magazyn o grach”", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "Chyba zaczynam rozumieć, dlaczego ludzie oglądają te „transmisje na żywo”. To uzależniające!", "6667579086472aaf0bf7bef5": "Przekaż\u00A0przedmiot: „Dysk twardy ze skradzionymi danymi”", "666757c530b9b77ff2d9ac58": "Znajdź przedmiot: „Dysk twardy ze skradzionymi danymi” w starym domu na wybrzeżu", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Zainstaluj kamerę wi-fi na półce górskiej w lesie", "667bf840981b1c594af358ce": "Zainstaluj kamerę wi-fi na wieży molo w fabryce", "667bf845dc371ee9869f185e": "Zainstaluj kamerę wi-fi na korytarzu biurowym w fabryce", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Dobra robota! Mówią, że nawet świat zewnętrzny dowiedział się o naszej małej przeprowadzce, haha!", "667442da875be5fb415df535": "Zostaw przedmiot: „Figurka złotego koguta” przy kamerze wi-fi Prapora w lesie", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Zostaw przedmiot: „Figurka złotego koguta” przy kamerze wi-fi Prapora na wybrzeżu", "66828746efaecf435dde20ca": "Zostaw przedmiot: „Figurka złotego koguta” przy kamerze wi-fi Prapora w fabryce", "66d080533a3c33d823a3477d": "Zostaw przedmiot: „Figurka złotego koguta” przy kamerze wi-fi Prapora w fabryce", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Witaj, przyjacielu. Ostatnio wszystko było dla mnie trochę wyboiste. Od dziś tymczasowo podnoszę ceny moich produktów i usług, dopóki nie rozwiążę kilku pilnych spraw. Mój znajomy najemnik zbiera drużynę do napadu na podziemne laboratorium i potrzebuje niezawodnej siły ognia. Możesz pomóc? Widzę, że wiesz o AR tyle samo, co ja, więc pomyślałem, że powierzę to tobie. Potrzebuję M4A1 z całkowitym odrzutem nie większym niż 300 i ergonomią nie mniejszą niż 70. Wiem, że to niełatwe. Teraz upewnij się, że umieścisz na nim EOTech XPS 3-0, ponieważ klient odmawia używania jakiegokolwiek innego celownika.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Wielkie dzięki. Myślę, że to pozwoli mi utrzymać się na dobrej drodze przez jakiś czas.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Zmodyfikuj M4A1 zgodnie z podaną specyfikacją", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "Nie zgubiłeś niczego po drodze, prawda? W porządku, w takim razie czas wysłać inżynierów na pomiary, zaraz dowiemy się, co kryją te fabryczne ściany. Dzięki za pomoc, przyjacielu.", "66aa74571e5e199ecd094f1b": "Użyj przejścia ze składu celnego do fabryki (w jednym rajdzie)", "66aa74571e5e199ecd094f1e": "Zlikwiduj Scavy w fabryce (w jednym rajdzie)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Zlokalizuj i zdobądź przedmiot: „Walizka z narzędziami precyzyjnymi” w laboratorium w składzie celnym", "66ab97d56cb6e3bfd7c79fbc": "Zostaw przedmiot: „Walizka z narzędziami precyzyjnymi” w pokoju magazynowy laboratorium w fabryce", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "Więc rzeczywiście go znalazłeś. Doskonale! Jak wygląda przejście, czy jest bezpieczne? W stanie ruiny powiadasz? Wygląda na to, że ta okazja nie potrwa długo. Wyślę moich ludzi tak szybko, jak to możliwe.", "66aba85403e0ee3101042878": "Zlokalizuj przejście prowadzące do laboratorium na ulicach Tarkowa (w jednym rajdzie)", "66aba85403e0ee310104287a": "Użyj przejścia z ulic Tarkowa do laboratorium (w jednym rajdzie)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Zlokalizuj przejście prowadzące do ulic Tarkowa w laboratorium (w jednym rajdzie)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Zbadaj serwerownię w laboratorium (w jednym rajdzie)", "66b0910951c5294b9d213918": "Zbadaj kopułę niebezpieczeństwa w laboratorium (w jednym rajdzie)", "66b10eef0951e90ec383850b": "Zbadaj pomieszczenie kontrolne w laboratorium (w jednym rajdzie)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "Kupiec powiedział mi, że wszystko jest na miejscu. Zasłużyłeś na swoją nagrodę i możesz oczekiwać, że moi ludzie pomogą ci na nowych szlakach.", "66abb32aeb102b9bcd088d62": "Użyj przejścia ze strefy zero na ulice Tarkowa", "66abb39bf1d97b9b55390a79": "Użyj przejścia z ulic Tarkowa na węzeł transportowy", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Użyj przejścia z węzła transportowego do składu celnego", "66abb3ac416b26ade4a1446c": "Użyj przejścia ze składu celnego do fabryki", "66abb3bf228ace5ca9f3d745": "Użyj przejścia z fabryki do lasu", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Zainstaluj kamerę wi-fi u niedźwiedzia, który usiadł w płonącym samochodzie w lesie", "66debf2e1e254957b82711ff": "Zainstaluj kamerę wi-fi na odwróconym krześle na wybrzeżu", "66debf30802386a45d0adb60": "Zainstaluj kamerę wi-fi w niezbyt samotnej łazience na wybrzeżu", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "Żołnierz fortuny przybył po swoje nowe zadanie! Plotki głoszą, że Tarkow stał się jeszcze bardziej niebezpieczny. Kto by pomyślał, prawda? Ktoś zaczął ostrzeliwać niektóre obszary z moździerzy.\n\nLepiej idź i zobacz, co się dzieje. I tak, oznacza to udanie się w sam środek obszarów ostrzału moździerzowego. Tak. W porządku, zauważyliśmy bombardowania w rezerwacie przyrody, bazie wojskowej, urzędzie celnym i na wybrzeżu. No to w drogę.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Żyje i ma się dobrze, to świetnie. Zobaczmy więc, z czym mamy do czynienia. Ktoś ukradł moździerze i teraz uderzają w różne miejsca tuż przed nadejściem zrzutów.\n\nBardzo podejrzane. Ci lokalni proszkowcy na pewno nie mogli zabezpieczyć komunikacji ze światem zewnętrznym, prawda? Tak czy inaczej, na razie możemy tylko obserwować.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Odwiedź aktywny obszar ataku moździerzowego w dowolnej określonej lokalizacji (wybrzeże, las, rezerwy, skład celny)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Dobra, dostałem wiadomość o poważnej wpadce. Może to nie twoja wina, ale nie o to chodzi. Dupki z oczyszczalni przechwyciły kilka skrzyń z przenośnym sprzętem WE.\n\nW tym momencie są oczywiście bezużyteczne, ale nie pozwolę im ukraść własności rządowej w ten sposób.\n\nDla wojownika takiego jak ty zadanie jest wykonalne. Idź do oczyszcalni i przynieś mi te urządzenia WE. I tak, te szczury muszą zostać zlikwidowane.\n\nSame WE prawdopodobnie zostały już przekazane ich dowódcom, więc masz gwarancję, że dostaniesz od nich ten sprzęt. Zakładając, że nie zginiesz.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Wspaniale, nowe zabawki dotarły. Moi chłopcy je pokochają. W dzisiejszych czasach trzeba być gotowym na wszystko, a taka ochrona zdecydowanie nie jest zbyteczna.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Przekaż znaleziony w rajdzie przedmiot: „Przenośne urządzenie do walki elektronicznej GARY ZONT”", "66e19f359fee1e54e0e01f7c": "Zlikwiduj Zbuntowanych", "66e19f7d534a8ff2bb7e9f89": "Zlokalizuj i zlikwiduj Big Pipe’a", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "Ten cały handel idzie mi całkiem nieźle, prawda? Wiesz, gdybym nie zachował zdrowego rozsądku, już dawno byłbym martwy w tym piekle. W każdym razie, raportami zajmę się później, nie za pierwszym razem.\n\nTeraz muszę wyposażyć ludzi, którzy są poza moim terytorium. Przynieś im ten nowy sprzęt, który znaleźliśmy. Dam ci jego część, ale resztę musisz zdobyć sam – wiesz już, gdzie szukać. Nie, nie spotkasz się z nimi twarzą w twarz. Po prostu schowaj przedmioty w wyznaczonym miejscu.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Dobrze, teraz, gdy są bezpieczni od zagrożeń z powietrza, ich misja bojowa zostanie wykonana bez problemu.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Zostaw przedmiot:„Przenośne urządzenie do walki elektronicznej GARY ZONT” w zatopionym kościele w lesie", "66e071c8a9e80c3f25bb1bad": "Zostaw przedmiot: „Części zamienne do stacji radarowej” w starym tartaku\u00A0w lesie", "66e0735089627301d900ef1d": "Zostaw przedmiot: „Przenośne urządzenie do walki elektronicznej GARY ZONT” w wieży stacji pogodowej na wybrzeżu", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "Najwyższy czas, żebyś wpadł. Też zauważyłeś te nocne diabły wyłażące zewsząd, prawda? Uzbrajają się o wiele lepiej, co? Jakby ktoś z nimi współpracował. Z góry, wiesz?\n\nPowinniśmy sprawdzić, co te dranie knują. Poza tym, tym lepiej, jeśli uda się zmniejszyć ich liczebność. Tylko ostrożnie.\n\nWśród szabrowników krąży plotka, że w nocy można natknąć się na niezwyciężoną bestię. Podobno poluje i pożera ludzi.\n\nPamiętam wschodnią opowieść o takim demonie, jego przydomek brzmiał… „Oni”. Wcześniej nie wspominałbym o tych historiach. Ale teraz zdecydowanie coś się gotuje, a mroczne myśli same wchodzą mi do głowy.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "Co znalazłeś? Nie siedziałem bezczynnie, gdy cię nie było, spotkałem się z Partizanem. Mówi, że przygotowują specjalny rytuał i dlatego wychodzą ze swoich nor. Wszyscy wspominają o jakiejś „Nocy Kultu”.\n\nNie wiem, o co chodzi, ale to zdecydowanie zła wiadomość dla Tarkowa. I coś mi mówi, że jest ktoś, kto to wszystko organizuje. Ten demon nie pojawił się w naszych stronach bez powodu.\n\nSam coś widziałem zeszłej nocy. Jego twarz była czerwona, jakby płonęła. Chwyciłem za broń i wycelowałem, ale gdy tylko mrugnąłem, nikogo tam nie było. Być może halucynacje starca…", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Zlikwiduj zakapturzonych ludzi nocy", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Dobra, mam dla ciebie dobre wieści.\nPartizanowi udało się podsłuchać rozmowę kultystów, zanim zabiła ich pułapka.\n\nZwiastun, jak go nazywają, jest odpowiedzialny za całą tę paradę terroru. Obiecał im, że jeśli zrobią to, co im powie, otrzymają nowy prezent Unhearda. Co do cholery? Nie mam pojęcia, co to oznacza. Ale jestem pewien, że jeśli pozwolisz im odprawić ten cholerny rytuał, będzie niezliczona ilość ofiar pośród dobrych ludzi. Ludzie zaczęli uciekać z ulic, mówią, że duch poluje na dusze.\n\nNie znamy szczegółów tej tajemnicy, ale na pewno jest ona powiązana z całą sprawą! I wiemy, kto za tym stoi. Musimy zlikwidować Zwiastuna, a jeśli znajdziesz w pobliżu jakieś przerażające gówno, spróbuj zakopać je głęboko w ziemi. Może to utrzyma kultystów w ryzach.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "Dranie załatwione? Cholerstwa i tak należą do piekła. Miejmy nadzieję, że reszta kultystów się wycofa i wróci do swoich nor.\n\nZabawne jest to, że Zriaczij też był ostatnio nieobecny. Ciekawe, czy zszedł z latarni morskiej, by dokończyć rytuał i wypuścić te demony na światło dzienne.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Zlokalizuj i zlikwiduj Oni", "66e3eb4c4a5359f2db0be81a": "Zlokalizuj i zlikwiduj Zwiastuna", "66e3eb65e385f94b38f061d7": "Zlokalizuj i zlikwiduj Ducha", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "Sądzę, że teraz, gdy wróciłeś, widzisz, co się dzieje. Te bydlaki nie tylko się nie rozproszyły, ale zaczęły jeszcze energiczniej organizować swoje przygotowania!\n\nWłaśnie dostałem wiadomość, że biedny dzieciak Ryży został schwytany przez samego Zriaczija. Mówią, że będzie główną ofiarą. To oznacza, że kończy nam się czas!\n\nPartizan wciąż jest w lesie i poluje na kultystów, ale nawet on nie poradzi sobie sam. Teraz to my musimy własnoręcznie pozbyć się szumowin. Jeśli nie będzie nikogo, kto przeprowadzi rytuał, może to będzie koniec.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Stój, szkodniku! A, to ty. W okolicy lasu też zaczynają się pojawiać. Miałem kilku takich gości tuż przed tobą.\n\nMówisz, że oczyściłeś Tarkowa z kultystów? Cóż, z takimi stratami nie będą w stanie nic zrobić w najbliższym czasie. Zapomną o Zwiastunie. Nie wiem jednak, czy przez jakiś czas będę mógł spać spokojnie.\n\nDzięki za pomoc. Bez ciebie nie dałbym rady.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Zlikwiduj zakapturzonych ludzi nocy w strefie zero", "66e3ec28ecbe7102342ea56a": "Zlikwiduj zakapturzonych ludzi nocy na latarni morskiej", "66e3ecad063ef452798d369d": "Zlikwiduj zakapturzonych ludzi nocy na wybrzeżu", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Ok, widzę połączenie, więc zrobiłeś wszystko dobrze… O, są zabezpieczone przed atakami DDoS. Ale co, jeśli uzyskamy dostęp stąd, wy dupki? Hm, tu właśnie wkracza pan Kerman.\n\nNadal tu jesteś? Przepraszam, nie mam już czasu na pogawędki. Kerman właśnie przesłał swoje dane, powiedział, że nie pozwoli, aby projekty TerraGroup zrujnowały nasze miasto.\n\nPodczas gdy on będzie zdejmować\u00A0zabezpieczenia, ja muszę sformatować dyski, by dać terapeutce wszystko, czego możemy się dowiedzieć.", "670411a2cded018840f5b599": "Zlokalizuj wymagany komputer w biurze TerraGroup Cardinal na ulicach Tarkowa", "670411d819aafd130ebc4bb8": "Zainstaluj pendrive na komputerze, aby pobrać pliki", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "Jak śmiesz! Mój kolega przyczynił się do uratowania miasta i nie zasłużył na taki los! Nie wiem, jak mogę ci ufać po tak skandalicznych działaniach.", "67040cae4ac6d9c18c0ade2c successMessageText": "Dokonałeś właściwego wyboru. Wiem, że Jaeger próbował cię nakłonić do skrzywdzenia mojego kolegi.\n\nZapewniam cię jednak, że ta wersja leku była najbezpieczniejszym sposobem na oczyszczenie miasta z wirusa…", "6706a4ddec997e861c3f6f04": "Rozprzestrzeń szczepionkę na latarni morskiej", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Rozprzestrzeń szczepionkę na wybrzeżu", "6706a51fa60dfe2fb85275ed": "Rozprzestrzeń szczepionkę w lesie", "6706a52083168d9e8ed303d8": "Rozprzestrzeń szczepionkę na składzie celnym", "6706a61a5fb5eedf15ec6234": "Rozprzestrzeń szczepionkę w fabryce", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Rozprzestrzeń szczepionkę w laboratorium", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Czekaj! Czy ty też nie wiesz, że opracowała to „lekarstwo” z Sanitarem?\n\nZałożę się, że zrobili uproszczoną wersję, żeby móc zabijać wszystkich chorych bez mrugnięcia okiem, tak? Nie pozwolę na to.\n\nZnam jej naturę… Z pewnością opracowała mniej śmiercionośną wersję leku na własny użytek lub na sprzedaż.\n\nAle jeśli pracowała nad nim z tym gnojkiem, to znaczy, że to on go przechowuje! Ukarz drania i zdobądź prawdziwą wersję leku.\n\nJeśli nie sam lek, to przynajmniej znajdź przepis... Prawdopodobnie stamtąd to rozgryziemy!", "67040ccdcc1f3752720376ef failMessageText": "Jak głupim trzeba być, żeby jej wierzyć, nawet po tym, jak powiedziałem całą prawdę? Krew tych, którzy umrą od tej szczepionki, będzie na twoich rękach, dzieciaku.\n\nKiedy przyjdą do ciebie we śnie, zdasz sobie sprawę z tego, co zrobiłeś.", "67040ccdcc1f3752720376ef successMessageText": "Wszystko zrobione, prawda? Naprawdę utarliśmy nosa tym „biznesmenom”!\n\nTo powinno przypomnieć jej, że składała przysięgę Hipokratesa.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Znajdź przedmiot: „Prawdziwa szczepionka TG-Vi-24” w biurze Sanitara na wybrzeżu", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Zlokalizuj i zlikwiduj Sanitara", "6719135cfab45272c32a8c01": "Przekaż\u00A0przedmiot: „Prawdziwa szczepionka TG-Vi-24”", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Cóż, może teraz to już koniec! Liczy się tylko to, że wybrałeś dobrą stronę, dzieciaku, i masz czyste sumienie.\n\nLekarstwo z pewnością powinno zadziałać, skoro sami je sobie stworzyli, musimy tylko jeszcze trochę poczekać.", "6707e6614e617ec94f0e63e0": "Rozprzestrzeń prawdziwą\u00A0szczepionkę na latarni morskiej", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Rozprzestrzeń prawdziwą\u00A0szczepionkę na wybrzeżu", "6707e6614e617ec94f0e63e3": "Rozprzestrzeń prawdziwą\u00A0szczepionkę w lesie", "6707e6614e617ec94f0e63e4": "Rozprzestrzeń prawdziwą\u00A0szczepionkę na składzie celnym", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Zlokalizuj i zbadaj magazyny w składzie w lesie", "673f2d9a73ff76dd6d5a6344": "Zlokalizuj i zbadaj biuro w składzie w lesie", "673f2da118e615f9f5550544": "Zlokalizuj i zbadaj garaże w składzie w lesie", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Ukończ zadanie „Pomocna dłoń”", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Brzmi dość łatwo. Zajmę się tym.", "673f2cd5d3346c2167020484 declinePlayerMessage": "Nie mogę ci teraz pomóc.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "Pojechałem więc do składu… Te dupki zrujnowały to miejsce i zabrały moje części zamienne. To znaczy, mogę zrozumieć narzędzia czy sprzęt. Ale dlaczego, kurwa, ktoś miałby zabierać jebane koła? Nie zbudujesz drugiego BTR-a w ten sposób.\n\nTak czy inaczej, potrzebuję zapasowego koła, a im szybciej, tym lepiej. Trzeba znaleźć miejsce, gdzie mogą leżeć odpowiednie koła. Nie wiem, gdzie dokładnie szukać, ale nie jesteś kretynem, poradzisz sobie. Możesz zacząć od obszaru składu celnego, ale nie byłem tam od wieków, więc nie mogę obiecać, że tam będą.", "673f4e956f1b89c7bc0f56ef failMessageText": "To jakiś żart, prawda?\n\nTo są jebane koła do ciężarówek, idioto. Prowadzę BTR. B-T-R! Następnie oznacz jebane koła do roweru, jak już to robisz.", "673f4e956f1b89c7bc0f56ef successMessageText": "Super! Te się nadadzą, a dodatkowo zrobiłeś to szybko. Pochwalam to! Zmiana kół zajmie jednak trochę czasu, w końcu to nie Łada.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Zlokalizuj i oznacz zapasowe koła BTR-a nadajnikiem MS2000", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "Koła są wszędzie, nie martw się. Zajmę się tym.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Może innym razem, dobrze? Nie teraz.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "Wiesz, pomagasz mi już od jakiegoś czasu, a ja nawet nie wprowadziłem cię w całą tę sytuację. Pracuję teraz z Narciarzem. Dostarczam jego towary, a czasami jestem zaangażowany w jego operacje. Na początku była to lukratywna fucha, ale teraz ten dupek nie daje mi spokoju nawet na sekundę. Myśli, że jestem teraz jego osobistym pieprzonym mułem!\n\nWygląda na to, że w jakiś sposób dowiedział się, że jestem tym wszystkim zmęczony, a teraz sprowadził swoich gnojków do mojej bazy, aby dać mi nauczkę. Nie zamierzam dłużej znosić tego gówna. Zostawiłbym go już dawno temu, ale potrzebuję ochrony i gwarancji. A skoro jesteś w kontakcie z innymi handlarzami, mógłbyś powiedzieć o mnie dobre słowo. Możesz pomóc przyjacielowi?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Tak, no cóż, spodziewałem się tego.\n\nAle najważniejsze jest to, że zaczęliśmy. Teraz mam realną szansę na ucieczkę od tego zasrańca.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sprzedaj dowolne przedmioty Ragmanowi", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sprzedaj dowolne przedmioty Praporowi", "675196dff77c0b8436ec1ef5": "Sprzedaj dowolne przedmioty Rozjemcy", "673f629c5b555b53460cf827 acceptPlayerMessage": "W porządku, spróbuję z nimi porozmawiać.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "Naprawdę mi pomogłeś! Jeśli kierowca BTR-a jest tak niezawodny, jak ty, to na pewno się dogadamy. Muszę tylko dokończyć kilka innych pilnych spraw i wszystko przygotować.", "6740a322d42204d5c70767e9": "Znajdź w rajdzie wojskową elektronikę", "6740a33685a62f9581c2beaf": "Przekaż znalezione w rajdzie elementy komputerowe", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Przekaż znalezioną w rajdzie wojskową elektronikę", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Zlokalizuj i oznacz drugi odcinek ścieżki na klifie nadajnikiem MS2000 na latarni morskiej", "674492f0636d0661476732f2": "Zlokalizuj i oznacz trzeci odcinek ścieżki na klifie nadajnikiem MS2000 na latarni morskiej", "674492f30f45cb752f21df39": "Zlokalizuj i oznacz czwarty odcinek ścieżki na klifie nadajnikiem MS2000 na latarni morskiej", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Brzmi dość łatwo. Zajmę się tym.", "674492b6909d2013670a347a declinePlayerMessage": "Może innym razem, dobrze? Nie teraz.", "674492b6909d2013670a347a completePlayerMessage": "Moja robota jest skończona. Czas zapłacić.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "Jak idą negocjacje? To znaczy, rozumiem, że Prapor musi to najpierw przemyśleć, ale kończy mi się czas! Trzeba jakoś przetrwać podczas budowania mostów. Oczywiście nie skarżę się na ciebie.\n\nNie mam teraz nawet zapasowych akumulatorów, a elektronika może się rozdupczyć w każdej chwili. Przydałaby mi się nawet akumulator czołgowy, może uda mi się nawet zrobić, by działał z moim BTR-em.\n\nMyślisz, że uda ci się taki znaleźć? Bo bez tego to dla mnie koniec.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "To dużo! Mam nadzieję, że nie było to zbyt kłopotliwe. W porządku, zostaw to tutaj. Robisz dla mnie dużo pracy i nie zapomnę o tym. Dziękuję.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Przekaż przedmiot: „Akumulator wojskowy 6-STEN-140-M”", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Nadstawiam karku dla ciebie… Dobra, coś wymyślę.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Taa, nie. Raz musiałem czołgać się przez kilka godzin z taką baterią. Przykro mi, ale nie zrobię tego.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "Jak idą negocjacje? To znaczy, rozumiem, że Ragman musi to najpierw przemyśleć, ale kończy mi się czas! Trzeba jakoś przetrwać podczas budowania mostów. Oczywiście nie skarżę się na ciebie.\n\nNie mam teraz nawet zapasowych akumulatorów, a elektronika może się rozdupczyć w każdej chwili. Przydałaby mi się nawet akumulator czołgowy, może uda mi się nawet zrobić, by działał z moim BTR-em.\n\nMyślisz, że uda ci się taki znaleźć? Bo bez tego to dla mnie koniec.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "To dużo! Mam nadzieję, że nie było to zbyt kłopotliwe. W porządku, zostaw to tutaj. Robisz dla mnie dużo pracy i nie zapomnę o tym. Dziękuję.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Przekaż przedmiot: „Akumulator wojskowy 6-STEN-140-M”", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Nadstawiam karku dla ciebie… Dobra, coś wymyślę.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Taa, nie. Raz musiałem czołgać się przez kilka godzin z taką baterią. Przykro mi, ale nie zrobię tego.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "Więc? Czujesz, jak gładko teraz działa? Odwaliłeś dobrą robotę z kołami. \n\nTeraz możemy zacząć myśleć o skurwielach, którzy okradli moją bazę. Nie mogli uciec daleko, pewnie wciąż są w rezerwacie przyrody. Idź i ukarz tych skurwieli, dobrze?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Dobra robota! Teraz Scavy zastanowią się dwa razy, zanim zaczną ze mną zadzierać.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Zlikwiduj Scavy w lesie", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Dobra, wchodzę w to.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "Mam już wystarczająco dużo na głowie. Nie mogę ci pomóc.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Oznacz przystanek BTR-a „centrum miasta” nadajnikiem MS2000 na ulicach Tarkowa", "6746012a35218bb89951248e": "Oznacz przystanek BTR-a „Tramwaj” nadajnikiem MS2000 na ulicach Tarkowa", "6746012d871e69a9abb5873d": "Oznacz przystanek BTR-a „kino Rodina” nadajnikiem MS2000 na ulicach Tarkowa", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "Jeśli chciałeś pracować dla obu stron, powinieneś być bardziej ostrożny!\n\nNie zajdziesz daleko z tym frajerem. Ale już dokonałeś wyboru, zjebie.", "674602307e3818d5bb069489 successMessageText": "Bunkier jest otwarty? Te zakapturzone chuje mogą stanowić problem, ale w tej chwili nie są w centrum uwagi. Planu nie można zmienić, ale i tak powiadomię grupę.", "674602682cb1c1f5999f27aa": "Zlokalizuj bunkier pod górą w lesie", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Zostaw pierwszy rosyjski zestaw amunicji przeciwpancernej w bunkrze", "674da90f96d4f32d517cb770": "Zostaw drugi rosyjski zestaw amunicji przeciwpancernej w bunkrze", "674da9141cc05673dc69e7e7": "Zostaw trzeci rosyjski zestaw amunicji przeciwpancernej w bunkrze", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "Ptaszek powiedział mi, że kierowca jest zdeterminowany i szuka nowego pracodawcy. Wątpię, by ten idiota zdawał sobie sprawę ze wszystkich konsekwencji takiego przejścia. W każdym razie i tak nigdy nie dałem mu takiej możliwości! Jedyny trop, który już potwierdziłem, dotyczy Rozjemcy.\n\nPowinieneś pójść do niego i przypomnieć mu, że mamy z nim wspólne interesy! Niech pamięta, kto jest jego kluczowym partnerem.", "6746053b5b555b53460d9896 failMessageText": "Myślałeś, że nie dowiem się o tym, że pomagasz kierowcy? Myślisz, że nie mogę cię zastąpić?\n\nBędziesz musiał bardzo ciężko pracować, jeśli chcesz znowu robić ze mną interesy.", "6746053b5b555b53460d9896 successMessageText": "Rozjemca myśli przyszłościowo, nawet jeśli chce sprawiać wrażenie zwykłego naciągacza. Nie odważy się teraz mi przeciwstawić.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sprzedaj dowolne przedmioty Rozjemcy", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Użyj przejścia ze składu celnego na rezerwy", "674606ccff406a9f6a28e26f": "Użyj przejścia z rezerw do lasu", "674606f1c63637e54bede3a6": "Użyj przejścia z lasu do latarni morskiej", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Przetrwaj i ewakuuj się z latarni morskiej", "674607317781508c405fb979": "Zlikwiduj operatorów PMC podczas wykonywania innych celów", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Wejdź, usiądź. Herbata jest prawie gotowa, rozgrzeje cię. Nie mieliśmy takich temperatur od 1873 roku. Tamta zima była równie ciężka, jak ta, ogrzałem tu nawet zabłąkanego lisa!\n\nTo robi wielką różnicę w sytuacji bojowej. Można odmrozić sobie palce tak bardzo, że nie da się nawet pociągnąć za spust. Nie można też siedzieć w zasadzce, gdy jest się przemarzniętym.\n\nJeśli chcesz przetrwać, musisz wzmocnić swoje ciało. Spróbuj zlikwidować kilku przeciwników, gdy jest ci zimno.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "Jak twoja kondycja? Teraz musisz się rozgrzać, w przeciwnym razie przez tydzień nie będziesz mógł ćwiczyć.\n\nPo rozgrzewce musisz znowu ćwiczyć, bo inaczej twoje ciało się nie przyzwyczai. Wtedy zimno będzie zaletą, a nie przeszkodą.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Witam. Myślę, że widziałeś już BTR-a, który jeździ po Tarkowie. Kierowca oferował swoje usługi operatorom PMC takim jak ty, ale ostatnio zaczął również współpracować z Narciarzem. Kierowca przyszedł do mnie, gdy odrestaurowywał BTR-a. To było całkiem interesujące wyzwanie. Ale to bez znaczenia.\n\nNie kontaktował się ze mną od dłuższego czasu, a teraz nagle poprosił o pomoc. Najwyraźniej stało się coś poważnego. Czy możesz się z nim skontaktować i dowiedzieć się, co się dzieje? Nie pozostało już wielu ludzi ze sprytem i ambicjami w Tarkowie. Ludzie tacy jak my powinni trzymać się razem.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "Powiedziałem mu, że niebezpiecznie jest stać się częścią gangu Narciarza… To prawda, ma to swoje przywileje, ale trudno pozostać niezależnym w tak wielkim biznesie.\n\nZastanawiam się, kto mógł zwrócić się przeciwko Narciarzowi? W końcu BTR powinien być pod jego ochroną…", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Ukończ zadanie „Opóźnienie wysyłki – część 1”", "6752f86d538945df8cc3fc3a": "Znajdź przedmiot: „Ładunek dla Prapora” w lesie", "6756bcb3f93f4c1fc2b2d685": "Przetrwaj i ewakuuj się z lokalizacji", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Słyszę głos ciemności", "6514134eec10ff011f17cc26 description": "Zlikwiduj Death Knighta 15 razy grając jako PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Dobry strzał", "651413e9c31fcb0e163577c9 description": "Zlikwiduj Zriaczija 15 razy grając jako PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/po.json b/Libraries/SptAssets/Assets/database/locales/global/po.json index 3ca794a1..a6af79f2 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/po.json +++ b/Libraries/SptAssets/Assets/database/locales/global/po.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Deixe a caixa na sala de descanso da Factory, no segundo andar perto da extração do Gate 3", "5968929e86f7740d121082d3": "Encontre uma pasta protegida no escritório do Diretor Tarcone, no terminal da Customs", "5977784486f774285402cf52": "Sobreviva e extraia da Factory", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Realmente impressionante! É quase uma bomba nuclear! Não é surpresa que tenha contratado todos que podia para buscar isso.", "5968981986f7740d1648df42": "Encontre algo valioso no dormitório 203 na Customs", "5968988286f7740d14064724": "Entregue o item ao Prapor", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Obtenha acesso ao quarto 214", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Te agradeço do fundo do meu coração. Não consigo explicar o quanto você fez com tão pouco, nessas condições. A maioria das pessoas ficariam para elas, mas você compartilhou com outros. Obrigado.", "5969f98286f774576d4c9542": "Encontre em incursão: Seringas de morfina", "5969f99286f77456630ea442": "Entregue as seringas para a Therapist", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Encontre em incursão: Velas de ignição", "596b470c86f77457ca18618a": "Entregue as baterias à Therapist", "596b472686f77457c7006f8a": "Entregue as velas à Therapist", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "E você fala que não tem nada! Mesmo que possa estar vazio, é sempre bom checar. De qualquer jeito, te pago.", "5979ee2986f7743ec214c7a4": "Encontre em incursão: Pendrives contendo as informações", "5979ee4586f7743ec214c7a5": "Entregue os Pendrives", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Localize e marque o terceiro tanque de combustível na Customs com um sinalizador MS2000", "59c128f386f774189b3c84bb": "Localize e marque o quarto tanque de combustível na Customs com um sinalizador MS2000", "5c92184386f7746afa2e7840": "Sobreviva e extraia da localização", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Maravilha! Pegue aqui seu prêmio. Enquanto isso, eu vou entregar esse pendrive para meus especialistas decriptarem", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Deixe o rifle sniper SV-98 no local", "5a27d85286f77448d82084e7": "Deixe canivete suíço no barco", "5a3ba11786f7742c9d4f5d29": "Localize o barco escondido próximo ao quebra-ondas na Shoreline", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Sobreviva e extraia da localização", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Ótimo, pode sempre contar comigo daqui pra frente.", "5a56489d86f7740cfe70eba2": "Entregue os dólares", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Você conseguiu? Deixe no canto, obrigado. Uma coisa linda, né? De qualquer forma, estou um pouco ocupado agora, não posso conversar por muito tempo.", "5accd5e386f77463027e9397": "Modifique uma MP-133 para cumprir com os requisitos especificados", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Bom, nas mãos certas essa arma pode derrubar regimes e criar revoluções", "5accd9b686f774112d7173d1": "Modifique uma AKS-74U para cumprir com os requisitos especificados", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Ágil pra combate curto e silencioso ...", "5accde3686f7740cea1b7ec2": "Modifique uma MP5 para cumprir com os requisitos especificados", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Obrigado, vou entregar para o Dim... Sniper ", "5acce08b86f7745f8521fa64": "Modifique uma DVL-10 para cumprir com os requisitos especificados", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Sim, você não pode se esconder de algo assim. Amo 7.62, um belo calibre. Obrigado pelo trabalho. Próximo pedido deve ser amanhã.", "5acce11786f77411ed6fa6eb": "Modifique uma R11 RSASS para cumprir com os requisitos especificados", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "A arma da democracia... Obrigado.", "5accdfdb86f77412265cbfc9": "Modifique uma M4A1 para cumprir com os requisitos especificados", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Conserte o primeiro painel de comando", "5ac7a51a86f774738a4ffc96": "Conserte o segundo painel de comando", "5ac7a5d586f774383111ee63": "Sobreviva e extraia da localização", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Entregue: Adaptador T", "5ac5061386f77417e429ce7a": "Encontre em incursão: Placa de circuito impresso", "5ac5062586f774587c327395": "Entregue as placas de circuito impresso", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Encontre o armazém dos confiscados", "5ac6248586f77416781dd3a3": "Pegue o pacote com placas de vídeo", "5ac624b286f77416781dd3ac": "Entregue o pacote com placas de vídeo", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Entregue Placas de video", "5ac5083d86f7740be2744eed": "Encontre em incursão: Ventoinha de processador", "5ac5084d86f7740bde1b0031": "Entregue as ventoinhas de processador", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Encontre a primeira fonte de sinal", "5ac5e13586f7746074388f93": "Encontre a segunda fonte de sinal", "5ac5e18c86f7743ebd6c9575": "Sobreviva e extraia da localização", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Entregue as baterias recarregáveis", "5ac5e98886f77479bc6ca201": "Entregue as placas de circuito impresso", "5ac5ea0586f774609f36280c": "Entregue os Gphones quebrados", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Encontre em incursão: Processadores", "5cb6f88d86f7747d215f09c1": "Encontre em incursão: Bateria recarregável", "5cb6f8de86f7740e9d452685": "Encontre em incursão: Placa de circuito impresso", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Sétimo digito depois do separador decima no número pi? IIO? Vou te contatar logo", "5ac5eb3286f7746e7a509a09": "Alcance o nível requerido na habilidade Atenção", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Entregue: Cigarros Strike", "5ac5ef9886f7746e7a509a2d": "Encontre em incursão: Cigarros Wilston", "5ac5eff886f7740f43322559": "Entregue: Cigarros Wilston", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Encontre o segundo ponto de extração na Factory", "5ac61adf86f774741c1bf096": "Encontre o terceiro ponto de extração na Factory", "5ac61b1486f7743a8f30fc84": "Sobreviva e extraia da localização", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Encontre o quarto ponto de extração na Factory", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "Eu não gosto de fingir, embora todos nós fazemos. Às vezes, para sobreviver, e, às vezes, porque estamos com medo. Você sabe, eu não sou exatamente muito influente, especialmente com estranhos, mas você parece ser um cara legal. Se você conseguiu ganhar a minha confiança, eu acho que você vai se dar bem com qualquer um. Afinal, apenas relações pessoais vai nos ajudar sobreviver agora. Fale com Pavel Yegorovich, se ele confiar em você, talvez eu consiga um fornecimento de pólvora.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich é um dos poucos que ficaram. Eu me pergunto se é porque ele é militar ou simplesmente não teve tempo para sair.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Atingir o nível 3 de fidelidade com Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Bela arma, uma construção sólida. Não há novos pedidos, mas você pode vir amanhã.", "5ae34b8b86f7741e5b1e5d48": "Modifique uma Remington Modelo 870 para cumprir com os requisitos especificados", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Uma arma confortável, feita com maestria, obrigado. Avisarei ao cliente que a arma está pronta. ", "5ae3550b86f7741cf44fc799": "Modifique uma AKM para cumprir com os requisitos especificados", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "Então, o AK Zenit está pronto? Ótimo, deixe-o nessa caixa, obrigado. Você pode vir para o próximo pedido amanhã, se quiser.", "5ae3570b86f7746efa6b4494": "Modifique uma АKS-74N para cumprir com os requisitos especificados", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "Acho que descobri como treinar a rede! Ah, sim, este AK serve, obrigado. Deixa ele ai no canto, vou dar uma olhada mais tarde.", "5ae445f386f7744e87761331": "Modifique uma АК-105 para cumprir com os requisitos especificados", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Terminou com o rifle? Ótimo, entregue para mim. Tenho uma chave interessante aqui, que pode ser útil para você. Abra a loja de armas no Ultra, a loja KIBA. Ele contém ótimos mods de armas que podem ser úteis para nosso futuro armeiro.", "5ae4479686f7744f6c79b7b3": "Modifique uma AS VAL para cumprir com os requisitos especificados", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Bem-vindo à equipe, mano.", "5ae44c6886f7744f1a7eb2b8": "Conquiste lealdade nível 2 com Ragman", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Conquiste lealdade nível 2 com Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Atirando como um franco-atirador, mandou bem. Meus caras estão dizendo que a Interchange está cheia de corpos Scav e o Shopping está mais silencioso agora, então aqui está sua recompensa, você merece.", "5ae44ecd86f77414a13c970e": "Mate Scavs na Interchange", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Localize e verifique a loja DINO CLOTHES na Interchange", "5ae4511d86f7740ffc31ccb5": "Localize e verifique a loja TOP BRAND na Interchange", "5ae4514986f7740e915d218c": "Sobreviva e extraia da localização", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Marque o segundo tanque de combustível com um marcador MS2000 na Interchange", "5ae452fa86f774336a39758e": "Marque o terceiro tanque de combustível com um marcador MS2000 na Interchange", "5ae4531986f774177033c3e6": "Sobreviva e extraia da localização", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "A beleza salvará o mundo, como dizem. Obrigado, me ajudou muito irmão. Os chapéus serão vendidos em apenas um dia, acredite em mim. Aqui, tome isso como uma recompensa.", "5ae4543686f7742dc043c903": "Entregue os gorros Ushanka", "5ae454a086f7742be909a81a": "Entregue chapéu de cowboy encontrado em incursão", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Encontre o gorro Ushanka em incursão", "5fd89799c54dc00f463272d3": "Encontre em incursão: Chapéu Cowboy", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Entregue o manifesto da carga do OLI", "5ae9b3b186f7745bbc722762": "Consiga o manifesto da carga do IDEA", "5ae9b3c986f77432c81e2ce6": "Entregue o manifesto da carga do IDEA", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Tudo está provavelmente intacto, mesmo que o escritório tenha sido aberto.", "5ae9b5bd86f774307c29df37": "Consiga a rota da carga do OLI", "5ae9b63286f774229110402d": "Entregue a rota da carga do OLI", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Entregue touca de esqui com buracos para os olhos", "5ae455fb86f7744dd8242380": "Encontre em incursão: Mochila turística Pilgrim", "5ae4562086f774498b05e0dc": "Entregue mochila turística Pilgrim", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Entregue o colete", "5ae9b91386f77415a869b3f3": "Consiga Gzhel em condição entre 50-100%", "5ae9b93b86f7746e0026221a": "Entregue o colete", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Entregue: 2 Wartech (TV-109, TV-106)", "5af079e486f77434693ad7f8": "Encontre em incursão 2 Vestes táticas BlackRock", "5af07a0286f7747dba10d8ac": "Entregue: Vestes BlackRock", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Entregue Manual de design de roupas Parte 1", "5ae9c0e186f7746419683c5e": "Encontre o Manual de design de roupas Parte 2", "5ae9c10686f774703201f146": "Entregue Manual de design de roupas Parte 2", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Ô, Ô, calma ai, estou do seu lado", "5ae9c29386f77427153c7fb0": "Desenvolva carisma nível 10", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Parece que foi tranquilo, obrigado.", "5ae9c38e86f7743515398707": "Conquiste lealdade nível 3 com Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Deixe o Shemagh no local", "5ae9e2a286f7740de4152a0a": "Deixe o óculos RayBench no local", "5ae9e2e386f7740de4152a0d": "Deixe o óculos de armação redonda no local", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Você assustou alguns Scavs no Ultra uma vez, lembra? Então, agora ta ficando pior. Dizem que esses lixo estão se reunindo. Faça com que parem, por favor, é preciso.", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Uau, você só pode ser um fantasma, um homem invisível ou alguma coisa assim.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Sobreviva 7 incursões na Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Isso é um verdadeiro djigit!", "5ae9e55886f77445315f662a": "Consiga a chave das caixas registradoras do Goshan", "5ae9e58886f77423572433f5": "Entregue a chave das caixas registradoras do Goshan", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Muito bem, deixe na caixa.", "5b47796686f774374f4a8bb1": "Modifique uma АК-102 para cumprir com os requisitos especificados", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Vamos, dá aqui, preciso entregar para o cliente e rápido. Espero que você não tenha contado a ninguém para que essa MPX foi criada. Bem, vamos desejar sorte ao cara.", "5b477b3b86f77401da02e6c4": "Modifique uma SIG MPX para cumprir com os requisitos especificados", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Obrigado, estou um pouco ocupado agora, falamos mais tarde.", "5b477f1486f7743009493232": "Modifique uma AKMN para cumprir com os requisitos especificados", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "Ah, não vá falar nada pra ninguém sobre o Sni... Dima, acho que você já entendeu isso.", "5b47824386f7744d190d8dd1": "Modifique uma M1A para cumprir com os requisitos especificados", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Tenho vontade de colocar em um quadro e guardar em baixo da luz.", "5b4783ba86f7744d1c353185": "Modifique uma M4A1 para cumprir com os requisitos especificados", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "O mecânico me pediu, vou mandar pra ele hoje.", "5b47884886f7744d1c35327d": "Encontre em incursão: Aditivo de Combustível", "5b47886986f7744d1a393e65": "Entregue Aditivo de Combustível", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Entregue Estatueta de Gato", "5b478a6c86f7744d190d8f4d": "Encontre em incursão: Relógio de pulso de ouro Roler Submariner", "5b478a8486f7744d1c35328b": "Entregue Relógio de pulso de ouro Roler Submariner", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Encontre em incursão: Ovo dourado", "62a70058ec21e50cad3b6709": "Entregue o ovo dourado", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Guarde o ComTac 2 no local especificado", "5b478c7386f7744d1a393fb1": "Guarde o capacete 6B47 no local especificado", "5b478cb586f7744d1a393fb5": "Guarde a armadura BNTI Gzhel-K no local especificado", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Marque a segunda van", "5b478dca86f7744d190d91c2": "Marque a terceira van", "5b478de086f7744d1c3533a1": "Sobreviva e extraia da localização", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Encontre o terceiro Contêiner químico", "5b4c832686f77419603eb8f0": "Entregue o segundo Contêiner químico", "5b4c836486f77417063a09dc": "Entregue o terceiro Contêiner químico", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Bom, em cheio! Espero que meu pessoal recupere, eles iram encontrar muito material genético no sangue, azar deles, eles não tem muita escolha.", "5b47905886f7746807461fe2": "Entregue Respirador, 4 unidades", "5b4790a886f774563c7a489f": "Entregue Equipamento de transfusão, 3 unidades", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Encontre em incursão: Respirador, 4 unidades", "5ec1388d83b69d213d3c2ee0": "Encontre em incursão: Equipamento de transfusão", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Instale uma câmera WIFI para vigiar o píer", "5b47936686f77427fd044025": "Instale uma câmera WIFI para vigiar a estrada para o porto", "5b47938086f7747ccc057c22": "Instale uma câmera WIFI para vigiar a loja Kiba Arms", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Entregue a terceira controladora", "5b4c7aec86f77459732b4b08": "Entregue o segundo Giroscópio de fibra ótica com eixo simples", "5b4c8e6586f77474396a5400": "Pegue o segundo Giroscópio de fibra ótica com eixo simples", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Consiga a primeira controladora na Woods", "66d07de6c7ef9040fff0b789": "Entregue a primeira controladora", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Coloque 3 correntes douradas em baixo do colchão perto do BTR-80A", "5b4796c086f7745877352c2c": "Coloque 3 correntes douradas no microondas no terceiro andar dos dormitórios", "5b47971086f774587877ad34": "Coloque 3 correntes douradas no meio dos alojamentos da serraria", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Mate 5 operadores PMC na Interchange no período de 22:00 até 10:00", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "Então, você já se sente como Zaitsev? Sniper está satisfeito com os resultados do primeiro teste e já preparou a próxima tarefa.", "5bc850d186f7747213700892": "Mate Scavs a mais de 40 metros de distância usando rifle de ferrolho com mira de ferro", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Nada mau.", "5bd983d886f7747ba73fc246": "Acerte 3 tiros nas pernas a mais de 40 metros de distância usando um rifle de ferrolho", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Acerte 2 tiros na cabeça a mais de 40 metros de distância usando um rifle de ferrolho", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Fique com o chapéu, como prometido.", "5bc47e3e86f7741e6b2f3332": "Mate operadores PMCs com rifle de ferrolho à menos de 25 metros de distância", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Agora vamos ao trabalho", "5bc4813886f774226045cb9a": "Elimine operadores PMC de uma distância maior de 80 metros enquanto utiliza rifle de ação por ferrolho", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Mate operadores PMCs com rifle de ferrolho à pelo menos 80 metros de distância", "657b0567ec71635f16471dd2": "Elimine operadores PMC com rifle de ferrolho à pelo menos 80 metros de distância", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Espero que tenha atirado somente nos bandidos.", "5bc84f7a86f774294c2f6862": "Mate 8 Scavs na Customs com um rifle de ferrolho entre 21:00 e 05:00", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "Não há erros em trabalho sniper.", "5bc483ba86f77415034ba8d0": "Mate 5 Scav snipers usando um rifle de ferrolho", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "Esse será meu melhor amigo: quem sempre esta de bom humor e não faz perguntas desnecessárias.", "5bc485b586f774726473a858": "Mate 5 operadores PMC com um rifle de ferrolho silenciado a mais de 45 metros de distância", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Esta não é uma tarefa fácil. Tente novamente.", "5bc4893c86f774626f5ebf3e successMessageText": "Parece que, às vezes, ser inteligente não é o suficiente para agir inteligentemente. Bom, a velha 7.62 é útil.", "5bc48aed86f77452c947ce67": "Elimine operadores PMCs com rifle de ferrolho com tiro na cabeça sem morrer", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "Você não pode morrer ou sair da raid enquanto a quest não seja entregue ao cliente (Status: Morto, desertado, morto em ação)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Coloque os relógios Roler (Dormitórios, 3º Andar. Pilha de lixo em frente a escada)", "5c12320586f77437e44bcb15": "Coloque o Pen Drive falso (Dormitórios, 3º Andar. Pilha de lixo em frente a escada)", "5c1233ac86f77406fa13baea": "Não mate Scavs na Customs até concluir a missão", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Encontre o pendrive falso", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "Você fez bem, agora tem meu respeito! Vou lembrar de você quando aparecer algo interessante.", "5c0bc95086f7746e784f39ec": "Elimine Scavs com uma escopeta calibre 12 silenciada", "5c0bcc9c86f7746fe16dbba9": "Mate 10 PMC's com uma escopeta 12 silenciada", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Bom trabalho, meu amigo! Tudo correu de acordo com o planejado.", "5c1242fa86f7742aa04fed52": "Elimine operadores PMC entre 21:00-06:00 (exceto na Factory e Labs)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "Então, o que acha? É um brinquedo sério? Não suma, talvez eu precise dos seus trabalhos para testar algumas outras coisas", "5c1b765d86f77413193fa4f2": "Elimine operadores PMC a mais de 60 metros de distância enquanto usa o rifle M1A com supressor Hybrid 46 e luneta Schmidt & Bender PM II 1-8x24", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "Agora sim! Tenho certeza que não vai amarelar quando a merda bate no ventilador.", "5c0bdbb586f774166e38eed5": "Conquiste a habilidade resistência ao estresse nível 6", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Reserve", "5c137ef386f7747ae10a821e": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Shoreline", "5c137f5286f7747ae267d8a3": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Customs", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Lighthouse", "63aec6f256503c322a190374": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Streets of Tarkov", "64b694c8a857ea477002a408": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Interchange", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Um sniper experiente não se entrega facilmente assim. Recupere o fôlego e tente novamente.", "5c0be13186f7746f016734aa successMessageText": "Francamente, não achava que conseguiria fazer isso. Mas, aparentemente, você não é um comum.", "5c0be2b486f7747bcb347d58": "Alcance o nível de habilidade necessário de Sniper", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Elimine operadores PMCs com rifle de ferrolho sem morrer", "64b67fcd3e349c7dbd06bd16": "Você não deve morrer e não deve extrair da incursão enquanto a tarefa estiver ativa (Situação: Morto, Abandonado, Desaparecido)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Trouxe? Bem, coloque ali no canto. Cuidado com o equipamento, é muito frágil. Mesmo que esse negócio da clínica acabe, conheço algumas pessoas que podem se interessar por isso, mas fica entre nós. Porquê devemos desperdiçar um equipamento tão caro?", "5c0be66c86f7744523489ab2": "Entregue Oftalmoscópio encontrado em incursão, 1 unidade", "5c0be69086f7743c9c1ecf43": "Entregue Transiluminador de pele LEDX encontrado em incursão", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Encontre em incursão: Oftalmoscópio", "5fd8935b7dd32f724e0fe7ee": "Encontre em incursão: LEDX", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "Na verdade, eu não tinha dúvida que você era uma pessoa que eu podia confiar, não só no seu trabalho.", "5c0d0dfd86f7747f482a89a5": "Conquiste a habilidade de saúde nível 10", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Muito bom!", "5c138c4486f7743b056e2943": "Entregue os processadores", "5c138d4286f774276a6504aa": "Entregue o transmissor", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Encontre em incursão: Processador programável Virtex", "5ec13da983b69d213d3c2ee4": "Encontre em incursão: Transmissor militar de sinais sem fio COFDM", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Muito bem, mãos e pernas intactos.", "5c1b760686f77412780211a3": "Elimine operadores PMC's com granadas", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Já terminou? Sabe que realmente funcionou, a maneira que os lideres deles falavam mudou. Não me culpe, no meu mundo você pode negociar até com esse lixo.", "5c1b778286f774294438b536": "Mate 40 Scavs na Interchange, de uma distância menor que 60 metros. Você precisa estar vestindo equipamento específico", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Elimine Scavs na Interchange vestindo o uniforme da ONU (Capacete UNTAR, Colete Balístico MF-UNTAR e Colt M4A1)", "5c1b713f86f774719c22e8a0": "Elimine Scavs na Shoreline vestindo o uniforme da ONU (Capacete UNTAR, Colete Balístico MF-UNTAR e Colt M4A1)", "5c1fd66286f7743c7b261f7b": "Elimine Scavs na Woods vestindo o uniforme da ONU (Capacete UNTAR, Colete Balístico MF-UNTAR e Colt M4A1)", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimine Scavs na Streets vestindo o uniforme da ONU (Capacete UNTAR, Colete Balístico MF-UNTAR e Colt M4A1)", "65e08aa9f5879b2586d5fd4c": "Elimine Scavs no Ground Zero vestindo o uniforme da ONU (Capacete UNTAR, Colete Balístico MF-UNTAR e Colt M4A1)", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Sobreviva na Shoreline (Situação: Sobreviveu)", "5c13989886f7747878361a50": "Sobreviva na Factory (Situação: Sobreviveu)", "5c1931e686f7747ce71bcbea": "Sobreviva no Laboratório (Situação: Sobreviveu)", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Sobreviva na base Reserve (Situação: Sobreviveu)", "629f08e7d285f377953b2af1": "Sobreviva na Lighthouse (Situação: Sobreviveu)", "63aec66556503c322a190372": "Sobreviva na Streets (Situação: Sobreviveu)", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Encontre e marque o segundo estoque de combustível com o marcador MS2000 na Woods", "5c10f94386f774227172c576": "Encontre e marque o terceiro estoque de combustível com o marcador MS2000 na Woods", "5c10f94386f774227172c577": "Sobreviva e extraia da localização", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "É disso que estou falando! Vou pegar meu ferro de solda e começar a trabalhar. E quando notar o mercado vai estar estável também.", "5c1129ed86f7746569440e88": "Entregue os fios", "5c112a1b86f774656777d1ae": "Entregue os capacitores", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Encontre Fios em incursão", "5ca71a1e86f7740f5a5b88a2": "Encontre em incursão: Capacitores", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "Tenho certeza que você vai voltar da incursão e trazer algo bom na mochila", "5c112dc486f77465686bff38": "Ganhe os níveis de habilidade de procura requisitados", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Conseguiu? Ótimo. Eu me pergunto o que ele pediria na próxima vez, uma privada revestida de diamante? Mas ei, se ele pedir, você realmente terá que procurar. Obrigado pela ajuda, irmão.", "5c11427386f77430ff393793": "Entregue os Bules de chá antigos", "5c122c5f86f77437e44bcb0e": "Entregue os Vasos", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Encontre em incursão: Bules de chá antigos", "5ca7258986f7740d424a2044": "Encontre em incursão: Vasos antigos", "62a700893e015d7ce1151d90": "Encontre em incursão: Estatueta de papagario do Axel", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Minha equipe me disse que tá um inferno na Customs, tiroteio acontecendo pra todo lado, como se tivesse começado a terceira guerra mundial. BEAR's e USEC's estão atacando os scavs! Bom trabalho.", "5c1fa9c986f7740de474cb3d": "Mate 15 PMC's na Customs. Você deve vestir o equipamento correto", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Conquiste lealdade nível 4 com Peacekeeper", "5c12489886f77452db1d2b05": "Conquiste lealdade nível 4 com Prapor", "5c1248ef86f77428266184c2": "Conquiste lealdade nível 4 com Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Conquiste lealdade nível 4 com Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "Você trouxe tudo, não é? Gostando de ver! Agora chega aqui vamos dar uma olhada.", "5c139eb686f7747878361a72": "Entregue UHF RFID Fixed Reader", "5c139eb686f7747878361a73": "Entregue Módulo de armazenamento Flash VPX", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Encontre em incursão: Entregue UHF RFID Fixed Reader", "5ec14080c9ffe55cca300867": "Encontre em incursão: Módulo de armazenamento Flash VPX", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "A, é você. Que resolve os problemas locais, não é? Pois é, ouvi sobre você. E é melhor você aprender uma coisa. Você não é o único. Há outros por ai, talvez eles sejam até mais habilidosos que você. Eles estão andando por ai, cuidando dos próprios interesses, e de tempo em tempo deixam coisas para trás. E o negócio é o seguinte: eu preciso dessas coisas. Eu sei que é difícil achar, mas o teu prêmio não vai te desapontar.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Pegou tudo? Beleza. Pegue seu presente, como prometido!", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Encontre: Livro antigo desgastado", "5c51bf8786f77416a11e5cb2": "Entregue Pistola de Lubrificação #FireKlean", "5c51bf9a86f77478bf5632aa": "Entregue o Galo dourado", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Entregue lata de espadilhas", "5c51c24c86f77416a11e5cb7": "Entregue o bigode falso", "5c51c25c86f77478bf5632af": "Entregue o gorro do kotton", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Entregue a pederneira velha", "5c52da5886f7747364267a14": "Entregue o machado antigo", "5cb5ddd386f7746ef72a7e73": "Encontre em incursão: Pederneira velha", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Encontre em incursão: Lata de espadilhas", "5cb5df7186f7747d215eca08": "Encontre em incursão: Bigode falso", "5cb5df8486f7746ef82c17ea": "Encontre em incursão: Gorro do Kotton", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Encontre em incursão: Estatueta de corvo", "5ec7998dc1683c0db84484e7": "Entregue Estatueta de corvo", "5ec79aaac1683c0db84484e8": "Encontre em incursão: Máscara praga Pestily", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Entregue a carteira WZ", "60d0748820a6283a506aebb1": "Encontre o veneno de rato do LVNDMARK em incursão", "60d074ef401d874962160aee": "Entregue o veneno de rato LVNDMARK", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": " Encontre em incursão: Balaclava Smoke", "60e827faf09904268a4dbc40": "Entregue balaclava Smoke", "62a6ff004de19a4c3422ea5d": "Entregue o item encontrado em incursão: Chave da empilhadeira Missam", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Você tem aí? Bom trabalho. Bem, acho que você é digno de entrar em contato com o Jaeger. Ele deve ter muito trabalho pra você.", "5d249a6e86f774791546e952": "Encontre a mensagem do Jaeger", "5d249aa286f77475e8376399": "Entregue a mensagem ao Mechanic", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Encontre o acampamento de Jaeger no local especificado na Woods", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Consiga em incursão: Rações militares \"Iskra\"", "5d24bb4886f77439c92d6bad": "Consiga em incursão: Pacotes de macarrão instantâneo", "5d24bb7286f7741f7956be74": "Consiga em incursão: Latas de ensopado de carne (Grande)", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Como um famoso disse: \"Flutue como uma borboleta e ferroe como uma abelha\". Ótimo conselho", "5d25af3c86f77443ff46b9e7": "Mate 5 scavs na Woods. Você não deve usar armadura", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Coloque a garrafa de água no bunker ZB-016", "5d2deedc86f77459121c3118": "Coloque a ração militar \"Iskra\" no bunker ZB-014", "5d2defc586f774591510e6b9": "Coloque a garrafa de água no bunker ZB-014", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "Tá de brincadeira!? Quanto tempo? Impressionante.", "5d25c5a186f77443fe457661": "Sobreviva por 5 minutos enquanto sofre por desidratação severa (Exceto na Factory)", "5d9f035086f7741cac4a9713": "Sobreviva e extraia da localização", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Conseguiu? Fez bem. Se continuarmos desse jeito, vamos começar a comandar a cidade antes do planejado.", "5d25c8c986f77443e47ad47a": "Mate 3 Scavs enquanto sente dor", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Trabalhou? Maravilha! O suor poupa o sangue.", "5d25d09286f77444001e284c": "Elimine scavs na Woods em uma única incursão. Você não pode usar medicamentos.", "5d25d0d186f7740a22515975": "Não use qualquer medicamento durante a missão", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "Você consegue resolver isso? Ótimo!", "5d25d4e786f77442734d335d": "Elimine PMCs com tiros na cabeça enquanto você esteja com tremor", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Então você sobreviveu? Quem imaginaria.", "5d25dc2286f77443e7549028": "Mate 2 operadores PMC enquanto você esteja cego por uma granada de luz", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "Quantos mesmo você disse que eram? e todos sem um \"dispositivo\"? então de fato a caçada da noite acabou.", "5d25fd8386f77443fe457cae": "Mate Scavs entre 21:00 e 04:00 sem o uso de visão noturna ou mira térmica (Exceto na Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "Como Suvorov costumava dizer? O que é difícil no treino vai se tornar fácil na batalha. Esta habilidade vai vir a calhar, confie em mim.", "5d2605ef86f77469ef0f7622": "Alcance o nível 5 na habilidade Vitalidade", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Bom trabalho! Outros virão, com certeza, mas pelo menos eles vão pensar duas vezes antes de bagunçar o lugar.", "5d26143c86f77469ef0f894c": "Elimine 6 PMCs na área do escritório da Factory", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Localize e elimine Reshala", "5d2710e686f7742e9019a6b2": "Entregue a TT dourada ao Jaeger", "5d66741c86f7744a2e70f039": "Encontre em incursão: TT dourada", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "Eles fizeram a escolha deles quando escolheram esse caminho.", "5d2701b586f77469f1599fe2": "Mate 30 Scavs por todo o território de Tarkov", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Aprendeu a lição? Bom.", "5d307fc886f77447f15f5b23": "Mate 2 PMCs cegados com uma granada de luz", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Localize e elimine Killa", "5d271a3486f774483c7bdb12": "Entregue o capacete do Killa ao Jaeger", "5d667a8e86f774131e206b46": "Encontre o capacete do Killa", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Elimine o Shturman", "5d272a0b86f7745ba2701532": "Entregue a chave do esconderijo do Shturman ao Jaeger", "5d2f464e498f71c8886f7656": "Encontre a chave do Shturman", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Defendeu a honra do uniforme? Bom, tudo bem. Fodam-se, não há nada pior que fazer o juramento e entrar para o crime.", "5d272bd386f77446085fa4f9": "Mate 3 Scavs vestidos de policiais", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "Fiquei sabendo do que você fez. Parece que está um pouco mais calmo agora. Bem menos saqueadores.", "5d2733c586f7741dea4f3072": "Mate 5 PMCs na área dos dormitórios da Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Finalmente, esse safado vai ter seu caldeirão no inferno. Mandou bem", "5d27369586f774457411b264": "Elimine o Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Fiquei sabendo que você conseguiu. Mandou bem mesmo. Espero mesmo que eles entendam a mensagem", "5d273a4d86f774457411b266": "Elimine 6 raiders", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Conseguiu? Ótimo. Espero que não tenha que ver pessoas morrerem sem poder fazer nada", "5d27446f86f77475a86565a3": "Entregue: desfibrilador portátil", "5d7782c686f7742fa732bf07": "Entregue os kits de cirurgia CMS", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Encontre em incursão: Desfibrilador portátil", "5ec1538a92e95f77ac7a2529": "Encontre em incursão: Kit cirúrgicos CMS", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Localize a casa do presidente na vila abandonada na Shoreline", "5d357b9586f7745b422d653f": "Localize a casa do pescador na vila abandonada na Shoreline", "5d357bb786f774588d4d7e27": "Localize a casa do padre na vila abandonada em Shoreline", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Sobreviva e extraia na Shoreline com o status de saída \"Sobreviveu\"", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Conseguiu? Vamos ver o que ele está aprontando", "5d27491686f77475aa5cf5b9": "Entregue os Pendrives", "5d6949e786f774238a38d9e0": "Encontre em incursão: Pendrives", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Entregue o álbum de fotos para o Jaeger", "5d357e0e86f7745b3f307c56": "Encontre o quarto do Jaeger com a vista da baía na Shoreline", "5d357e8786f7745b5e66a51a": "Encontre o album de fotos do Jaeger", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "E aqui estão os cartões! Obrigado, guerreiro.", "5d2f375186f7745916404955": "Encontre em incursão: 2 cartões de acesso ao TerraGroup Labs", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Entregue 2 cartões de acesso ao TerraGroup Labs", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Entre. Quer um chá? Muito bem, o negócio é o seguinte. Em breve eu vou estar recebendo alguns amigos meus. Eu quero ir caçar com eles, mas sem chance de eu levar eles pra caçar com estas escopetas MP. Eu quero que você nos consiga uns rifles bons. Rifles que eu possa incluir na minha coleção pessoal depois dessa caçada. Você deve amar atirar a longa distância. Mas primeiro, tenha certeza que estejam calibrados. Temos o cliente pra isso, seu nome é Shturman. O desgraçado fica se movendo pela madeireira. Não se preocupe com a recompensa, não ira te desapontar. Eu vou te escrever um bilhete com os requerimentos dos rifles. (Remington M700 com luneta FullField TAC30 1-4x24)", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Esses são ótimos rifles! Bom trabalho! Sabe, acho que posso me dedicar a ser armeiro, gostei bastante dessa coisa. Então, sobre a recompensa: confira as coisinhas que encontrei, você pode precisar delas.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Elimine Shturman com um tiro na cabeça a mais de 75 metros de distância usando um rifle sniper M700 com a luneta especificada", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Olha quem eu tenho aqui! E ai! Eu ouvi rumores que ainda tem bastante comida sobrando nos depósitos da antiga base militar. Eles falaram que bandidos começaram a pegar as comidas depois que os militares sairam. Me faz um favor, encontre os rastros deles, e onde os depósitos estão. E então eu vou garantir que a próxima visita dos bandidos vai ser um belo de um show.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Eles já levaram tudo? Merda, precisamos ser mais rápidos.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Encontre o depósito de alimentos", "629f1259422dff20ff234b4d": "Sobreviva e extraia da localização", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Entregue a bateria militar", "5d4c020a86f77449c463ced6": "Encontre em incursão: munições OFZ 30x165mm", "5d4c028c86f774389001e027": "Entregue munições OFZ shells", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "Então, você já decidiu? é apenas um par de injeções. Aqui e aqui. Ficar calmo, pelo menos um par de dias, relaxe mais e tome as vitaminas.", "5d6fb8a886f77449db3db8b6": "Entregue 400 000 rublos", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Bom, bom, bom. Então conseguiu ã? Com suas habilidades, aposto que aprende rápido.", "5d6fbf0f86f77449d97f738e": "Entregue 50 000 euros", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Conseguiu? Bom trabalho! Espera um minuto, eu preciso anotar o tamanho e terminar essa técnica de costura. Mas ei, você já deve ter observado, os materiais não estão baratos hoje em dia!", "5dc53fd386f77469c87589a3": "Eliminar o Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Entregue os tecidos de aramida", "5e38356d86f7742993306cac": "Entregue os tecidos ripstop", "5e3835e886f77429910d4465": "Entregue 3 pcs. de paracord.", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Entregue os tecidos ripstop", "5e383a6386f77465910ce1f8": "Encontre em incursão: paracords", "5e383a6386f77465910ce1f9": "Entregue 3 pcs. de paracord.", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Entregue os tecidos cordura", "5e4d4ac186f774264f75833b": "Encontre em incursão: 5 pcs. de KEKtape.", "5e4d4ac186f774264f75833c": "Entregue 5 pcs. de KEKtape.", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Entregue de tecidos cordura", "5e4d515e86f77438b2195249": "Encontre em incursão: 5 pcs. de KEKtape.", "5e4d515e86f77438b219524a": "Entregue 5 pcs. de KEKtape.", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Opa, chegou na hora. Talvez você já ouviu falar de um doutor que apareceu recentemente? Mas esse não é um Esculápio do bem, ele trata alguns e aleija outros. Eles dizem que ele vende drogas e faz cirurgias na rua. Eles chamam de Sanitar, não chamam? Ele se estabeleceu na Shoreline e interessantemente, os punks locais estão muito felizes com ele, é claro que ele cura eles, até distribui drogas e primeiros socorros... esse tipo de coisa. Isso significa que o estoque dele está cheio. Descubra sobre esse Sanitar, mas vá com calma, por enquanto, só encontre o local de troca dessas mercadorias. Acho que ele vende e cura no mesmo lugar. Consegue fazer isso?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "Então você diz que ele vive bem? É claro que ele conseguiu um novo armazém e está vendendo. Eu queria poder encontrar esse armazém, mas não é problema teu agora. Obrigado!", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Marque o primeiro entreposto na Shoreline", "5eda1da9a58a4c49c74165ee": "Marque o segundo entreposto na Shoreline", "5eda1dd3317f6066993c1744": "Marque o terceiro entreposto na Shoreline", "5f0389268580cc37797e0026": "Sobreviva e extraia da localização", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "E você acreditou naquela mulher? Você acha que porque o Sanitar cura algumas pessoas ele não pode matar outras? A guerra o alterou completamente, não consegue mais distinguir entre certo ou errado. Saia da minha frente, quero ficar sozinho.", "5edab4b1218d181e29451435 successMessageText": "Você fez a coisa certa, mesmo que os outros falem que o Sanitar tenha feito coisas boas, ele trouxe muito mais mal. Eu já vi isso antes, depois que perdem a sanidade não tem mais volta. Você pode atirar neles como atira em cachorro louco.", "5edab5a6cecc0069284c0ec2": "Localize e elimine Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Localize o grupo que foi enviado ao Resort na Shoreline", "5edab8890880da21347b3826": "Localize o grupo que foi enviado ao pier na Shoreline", "5edab8e216d985118871ba18": "Localize o grupo que foi enviado aos chalés na Shoreline", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Sobreviva e extraia da localização", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "A perda do meu pessoal na Shoreline certamente foi um infortúnio, mas um novo fornecedor de medicamentos é mais importante. Nós só precisamos uma nova abordagem nesse caso. Meu assistente conseguiu subornar um morador da Shoreline para nos contar sobre o médico que estamos procurando. Ele tem um pequeno grupo de seguranças, mas o estranho é que faz cirurgias aonde estiver, e geralmente esconde as ferramentas nesses lugares ou prédios perto. Pegue essas ferramentas. O Sanitar vai cooperar quando perceber que podemos parar o seu comércio e tomar controle do território.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Trouxe as ferramentas? Coloque naquela caixa, eu preciso processá-las corretamente, não temos certeza de onde estiveram. Você pode ver imediatamente que ele estava em condições difíceis, todo coberto de sangue e sem higiene. Bom, isso é problema meu. Vou passar essas ferramentas juntamente com a carta por aquele que subornamos. Então o Sanitar vai entender o que nós esperamos dele.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Obtenha o Kit de cirurgia do Sanitar, marcado com um símbolo azul na Shoreline", "5edabb950c502106f869bc04": "Entregue o kit de cirurgia do Sanitar", "5edabbff0880da21347b382b": "Obtenha o Oftalmoscópio do Sanitar na Shoreline", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Ei, você, cara durão! Venha aqui, tenho um caso pra você. Fiquei sabendo que o Prapor te enviou para pegar um lote de drogas de algum médico? Não faça essa cara! Eu não tenho interesse nessas drogas, deixe que o Prapor consiga elas e enfie na bunda dele, Você já recebeu tua parte disso, não é? Só coloque essas coisinhas \"smart\" nos contêiner do Sanitar. O Prapor não vai saber de nada, é jogo rápido, em questão de minutos, você estará com teu lucro.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "É isso aí, é isso aí caralho! Finalmente, o Prapor teve seus estoque expostos, há uma possibilidade que tenha muita coisa. Armas, munição, comida, drogas. Que foda! Nós vamos lá pegar nós mesmos. Sem ofensas. Obrigado.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Sobreviva e extraia da localização", "5f071a9727cec53d5d24fe3b": "Coloque um marcador nos contêineres médicos do Resort de saúde", "5f071ae396d1ae55e476abc4": "Coloque um marcador nos contêineres médicos dos chalés", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "O Jovem, espere. Eu sabia que o Jaeger iria pedir pra você matar o Sanitar, mas você não precisa. Eu sei como isso soa, pelas palavras do Jaeger, ele é um tipo de monstro vivo, mas não é. Eu tenho certeza que o Sanitar está tentando ajudar os moradores locais. Devido as condições atuais, ele tenta fazer as cirurgias mais complexas e não surpreende que a maioria acaba mal. Ele é um médico de grande conhecimento que pode salvar muitas vidas. Um médico com acesso ao armazém de medicamentos é de extrema importância pra nós. E ele já entrou em negociação comigo e logo vai começar a cooperar. Mas para isso vou precisar de algo que interesse ele e eu acho que isso seria um laboratório. Chave de acesso e amostras de estimuladores militares, acho que deve ser a base dos seus experimentos. Consegue acha-los pra mim?", "5edac34d0bb72a50635c2bfa failMessageText": "Que pena que você ficou escutando esse Jaeger e não a voz da razão. O conhecimento e os medicamentos do Sanitar poderiam ter ajudado de muitas formas. Ele não é Santo, mas todo mundo não deveria ter a chance de ter os pecados perdoados? Mas você privou-o disso também, não gostei nada disso.", "5edac34d0bb72a50635c2bfa successMessageText": "Obrigado. Eu sabia que você iria entender quão importante o Sanitar e sua medicação é nesse momento. Ele já mostrou grande interesse em cartões e estimulantes, até já enviou o primeiro lote de bens. Aqui, tome sua parte.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Não mate o Sanitar", "5f04935cde3b9e0ecf03d864": "Entregue o cartão", "5f04944b69ef785df740a8c9": "Entregue o cartão", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Bom dia. Só porque o dia está bom mesmo. Eu estava certo sobre esses novos estimulantes, estão mesmo ligados com o TerraGroup. o Mechanic descobriu algumas informações sobre o Sanitar, foi um pouco caro, mas melhor que nada. Sanitar trabalhou para o TerraGroup, não era qualquer empregado, formado em medicina, especialista em doenças infecciosas, divorciado... Tudo isso. Consiga-me mais informações sobre seus recursos. Encontre seu local de trabalho e tudo que puder.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Nós decodificamos o pendrive. Há muita informação importante, mas não posso te contar tudo. Confidencialmente, posso te falar sobre o Sanitar, ele é um cientista. Ele estudou sobre drogas e criou algumas, então passou a testar em pessoas. Uma pesquisa bem... mas bem arriscada e nada ética.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Entregue o pendrive marcado com fita ao Peacekeeper", "5eec9d054110547f1f545c99": "Encontre o local de trabalho do Sanitar no Lab.", "5eff5674befb6436ce3bbaf7": "Encontre informações sobre o trabalho do Sanitar", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Saudações guerreiro. O negócio é o seguinte, um passarinho me contou que esses ex-militares que estão defendendo a base Reserve cavaram alguma passagem subterrânea, um Bunker. Claro, eles não fizeram isso com as próprias mãos, eles forçaram os scavs a fazer pra eles, provavelmente esses pobres coitados nunca saíram de lá com vida. Então, eu não faço ideia de como esse bunker deve ser. Eu tenho informações que é algo militar. Mas não tenho certeza se é exatamente esse bunker ou pode ser apenas um armazenamento de mísseis de uso pessoal da base. Não tenho como enviar outro esquadrão só pra morrer para os raiders. De uma olhada naquele buraco e me diga se vale a pena enviar um grupo pra lá. O pagamento é bom.", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "Então você está dizendo que é um abrigo militar? Os rumores não mentem então... Merda! Vou enviar meus homens imediatamente. Pegue isso. Como prometido.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Sobreviva e extraia da localização", "5ee8eea538ca5b3b4f3c4647": "Encontre o Bunker subterrâneo na Reserve", "5ee8eecc0b4ef7326256c660": "Localize a sala de controle no bunker subterrâneo na Reserve", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Mercenário! Chegou bem na hora, você é exatamente quem eu preciso. Você lembra daquele bunker que encontrou em baixo da base Reserve? Pra encurtar, meu pessoal foi lá, e descobriram que o lugar é sinistro. Construído com alto nível de proteção: filtros, geradores, todas entradas protegidas por portas herméticas extremamente fortes - Uma fortaleza subterrânea. Mas os raiders abriram tudo e cavaram como umas toupeiras. Então, meu pessoal está com sérios problemas, menos da metade conseguiu sair de lá. E agora que a merda ficou ainda mais interessante. Então, com tudo isso, meu pessoal não quer ir mais lá, mas se você conseguisse encontrar uma rota segura... Você é um cara experiente, vou precisar que você use essas patas silenciosas suas, e encontre aonde todas as entradas se encontram, os sobreviventes disseram que eram portas extremamente fortes e herméticas. Então sobrou pra você escoltar o caminho.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Ahá!! Então é isso, estava debaixo do meu nariz. Então esse bunker conecta quase todos os edifícios da base? Merda, quão conveniente, você pode passar metade da base bem de baixo do nariz de todo mundo. Agora está claro porque os raiders estão lá, a base inteira está sobre controle. Obrigado guerreiro!", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Sobreviva e extraia da localização", "5ee8ec5ed72d953f5d2aabd1": "Localize a porta hermética que leva ao hospital (Bispo Branco)", "5ee8ecd75eb3205dae135d17": "Localize uma das duas portas herméticas que levam ao edifício da academia (Bispo Preto)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "Era mesmo no primeiro andar? Quantas vezes meu pessoal foi la e não achou nada. Obrigado.", "5f0488c590eea473df674002": "Encontre o escritório do Sanitar no resort", "5f04983ffbed7a08077b4367": "Sobreviva e extraia da localização", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Saudações, soldado. Tenho um trabalho pra ti. Pra encurtar a história, perdi contato com um dos meus grupos, e já faz algum tempo. Quando a merda bateu no ventilador, mandei eles pra Woods pegar uma carga. Receio que eles sofreram uma emboscada, no ultimo contato, reportaram que os USECs estavam chegando neles. Vá ver se alguém sobreviveu. Eles tinham um BRDM, Bukhanka e um tipo de caminhão, não lembro exatamente o modelo. Eu acho que os USECs devem ter se estabelecido por perto também.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Isso significa que meu pessoal não conseguiu e os transportes foram saqueados... ainda por cima há um acampamento USEC por perto, é isso? Que merda. Mas obrigado pelo trabalho mesmo assim.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Localize o comboio desaparecido de Prapor", "5fd9fad9c1ce6b1a3b486d05": "Localize o acampamento temporário USEC", "5fd9fad9c1ce6b1a3b486d0d": "Sobreviva e extraia da localização", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "Mas é claro que ouvi sobre o estouro na Woods. O Shturman teve o que mereceu. Não fique aí parado, agora você já pode comprar os rifles novos.", "600303250b79c6604058ce30": "Eliminar Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Encontre e inspecione o segundo IFV LAV III na Reserve", "608925d455f4ac386d7e7fc4": "Marque o primeiro IFV LAV III", "608930aa1124f748c94b801e": "Encontre e inspecione o T-90 na Reserve", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Ótimo-ótimo-ótimo! Toma o meu dinheiro! Meu único pedido é que você não conte uma palavra a ninguém sobre este negócio.", "60929ad46342771d851b827a": "Obtenha o pacote com o painel de controle do comandante do T-90M na Reserve", "60929afc35915c62b44fd05c": "Entregue o pacote", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Obtenha os documentos militares no bunker dos oficiais #3 na Reserve", "60ae0f0586046842a754e21e": "Entregue o segundo documento", "60ae0f17b809a4748759078c": "Entregue o terceiro documento", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Bom trabalho lá fora. Espero que eles entendam o que está acontecendo agora e que não saiam simplesmente matando meu povo assim. Aqui está a recompensa.", "608bffeee0cc9c2d4d2ccb29": "Elimine Raiders no bunker de comando da Reserve", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Entregue o primeiro jornal", "60ae12ffb809a474875907aa": "Obtenha o jornal médico №2 na Reserve", "60ae134cabb9675f0062cf6e": "Entregue o segundo jornal", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "Então é assim que parece! Excelente. Obrigado, vou estudar mais a fundo mais tarde. Aqui está sua recompensa, conforme prometido.", "6092942fb0f07c6ea1246e3a": "Obtenha o sistema de navegação de MBT na Reserve", "6092947635915c62b44fd05b": "Entregue o sistema de navegação", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "Então a saída funciona? Excelente. Ainda estou preparando sua recompensa, então me fale mais sobre o mecanismo de abertura desse bunker.", "608a94101a66564e74191fc3": "Encontre a saída secreta sem energia na Reserve", "608a94ae1a66564e74191fc6": "Extraia por essa saída", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Incrível, meus rapazes acabaram de voltar do ataque sãos e salvos, nem um único arranhão. Aqui está o seu prêmio!", "608ab22755f4ac386d7e7fdc": "Elimine Scavs no depósito subterrâneo na Reserve", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Verifique o segundo arsenal no quartel (Peão Branco) ao oeste da Reserve", "608bd2465e0ef91ab810f98a": "Verifique a sala de serviço no quartel (Peão Preto) ao leste da Reserve", "608c187853b9dd01a116f480": "Sobreviva e extraia da localização", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Sobreviva e extraia da localização", "60a4dc7e4e734e57d07fb335": "Marque o primeiro grupo de tanques de combustíveis com um MS2000 na Reserve", "60b90232ec7c6f5eb510c195": "Marque o segundo grupo de tanques de combustíveis com um MS2000 na Reserve", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Está feito? O ar quase parece mais fresco agora. É uma pena que não conseguimos acertar a cabeça daqueles saqueadores de outra forma.", "608a8356fa70fc097863b8f8": "Elimine Scavs na área dos quarteis na Reserve", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Isso é uma boa notícia. O mundo ficará cada vez mais limpo. Espero que o desgraçado não tenha pegado você com sua marreta?", "60c0d187938d68438757cda2": "Localize e elimine o Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Encontre o boné BOSS em incursão", "60cfa5a85f9e6175514de2e3": "Entregue o boné BOSS", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Elimine operadores PMC na Interchange", "60ec0b1871035f300c301acd": "Elimine operadores PMC no Laboratório", "60ec2b04bc9a8b34cd453b81": "Você não deve morrer e não deve extrair da incursão enquanto a tarefa estiver ativa (Situação: Morto, Abandonado, Desaparecido)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Elimine operadores PMC no Ground Zero", "65e19abadf39d26751b3bb1e": "Elimine operadores PMC no Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Elimine PMCs na base Scav na Customs", "60ec1e72d7b7cb55e94c1764": "Elimine PMCs na base Scav na Woods", "60ec2229fd1bf4491c4e4552": "Elimine operadores PMCs no Resort da Shoreline", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Aí está, assim é melhor. Obrigado, guerreiro. Os caras estão dizendo que agora está mais calmo, então parece que os idiotas entenderam sua mensagem.", "60e8650e5d67b234af3d3926": "Elimine scavs com tiros na cabeça", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Caralho... Você pegou todos sozinho? Você tem coragem, isso eu tenho certeza. Agora, algo não está certo sobre aqueles psicopatas, estou te dizendo...", "60e82c12fd1bf4491c4e4547": "Encontre em incursão: Facas incomuns", "60e82c5926b88043510e0ad7": "Entregue as facas", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Entregue o LEDX", "60f028ca86abc00cdc03ab89": "Encontre em incursão: Pilha de remédios", "60f028f85caf08029e0d6277": "Entregue a pilha de remédios", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Encontre potes de multivitamínicos OLOLO em raid", "62a70168eb3cb46d9a0bba7a": "Entregue os multivitamínicos", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Maravilha, mercenário. Agora vai ser muito mais fácil para meu pessoal trabalhar no local! Obrigado pelo seu trabalho.", "60e745d6479eef59b01b0bdc": "Elimine Raiders na Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Ótimo, ótimo! Os clientes já deposit.... é, digo, agradeceram o sucesso da missão. Bom trabalho, mercenário.", "60e8174d0367e10a450f7818": "Encontre em incursão e entregue: Dogtag de PMC BEAR nível 50+", "60e81795479eef59b01b0bdf": "Encontre em incursão e entregue: Dogtag de PMC USEC nível 50+", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Encontre em incursão: Transmissor militar de sinais sem fio COFDM", "60e7449875131b4e61703b7e": "Entregue processadores programáveis Virtex", "60e744c9d1a062318d3d2262": "Entregue o transmissor de sinal", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Encontre pen drives em incursão", "62a7019ea9a0ea77981b57da": "Entregue os pen drives", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Ótimo, estes eram os resultados que eu queria, me entregue as anotações, Obrigado, mercenário.", "60e740b8b567ff641b129573": "Mate operadores PMC a mais de 100 metros de distância", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Ótimo, muito obrigado, amigo. O cliente já informou que recebeu os pacotes. Não acho que seja o último pedido deles, então ainda vou precisar de você.", "60e84ba726b88043510e0ad8": "Armazene uma luneta Trijicon REAP-IR abaixo do guindaste amarelo na área da construção da Customs", "60e85b2a26b88043510e0ada": "Armazene uma luneta Trijicon REAP-IR atrás da lixeira no \"novo\" posto de gasolina da Customs ", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respeito, irmão, você me ajudou muito! Se você ver alguém perigoso no Ultra, me avise. Pode ser que precise de você para lidar com eles novamente.", "60e73ee8b567ff641b129570": "Elimine operadores PMC no Shopping ULTRA na Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Entregue o Whiskey", "60f028268b669d08a35bfad8": "Encontre em incursão: Água purificada", "60f0284e8b669d08a35bfada": "Entregue a Superwater", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Encontre garrafas de cerveja Pevko Light em incursão", "62a70110eb3cb46d9a0bba78": "Entregue a cerveja", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Elimine o Shturman", "60e7261eb567ff641b129557": "Elimine o Glukhar", "60e72629465ea8368012cc47": "Localize e elimine Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Aqui está você, rápido. Você agradou ao velho e tirou conclusões sozinho, espero. Você mesmo é a arma e o monólito, não a quantidade de aço que usa.", "60e729cf5698ee7b0505743c": "Elimine PMCs sem utilizar qualquer colete ou capacete na Woods", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Uma decisão corajosa, mercenário.", "60effdac12fec20321367038": "Entregue o container seguro Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Ouça, irmão, você pode me ajudar a encontrar informações adequadas sobre um cara? Ele já saiu da cidade. Por que não consigo encontrá-lo sozinho? Porque a porra do nome dele é Ivan Ivanov. Sério, não estou brincando. Existem duzentos mil deles em todo o país com esse nome. Se pudermos encontrar seu antigo endereço em Tarkov, talvez possamos executá-lo no banco de dados. Deixe-me ver o que posso encontrar sobre ele. Acho que ele dirigia um bar, certo. Mas não sei o nome do bar... Escute, não sei como você vai saber qual é o bar dele. Oh, isso me lembra, ele gostava de balé. Sem brincadeiras. Ele foi para o Mariinsky todas as temporadas. Até tentei apresentar algo em nosso teatro local, mas as pessoas não eram realmente loucas por garotas de tutus. Mais específico? Irmão, eu já sou específico pra caralho! Eu acredito em você, use sua intuição.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Encontrou o bar e o endereço do cara? Aqui, escreva para mim. Você é melhor do que aqueles médiuns da TV que encontram pessoas desaparecidas. Quer ser detetive quando tudo isso acabar, mano? Vou arranjar-te um chapéu Poirot, prometo.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Localize o apartamento do mestre do balé na Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Sobreviva e extraia da localização", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Venha aqui, meu caro empregado. Tudo bem na cidade? Tenho algumas equipes minhas desaparecidas. No começo eu pensei, por que diabos alguém seria tão arrogante, tentando fechar meu negócio? A menos que eles estejam brincando comigo ou algo assim. A princípio pensei que fosse aquele punk do Farol. Mas então recebo uma mensagem de Seva Shket. Ele escreveu que eles foram mantidos em alguma prisão particular. Você já ouviu falar sobre isso? Está escondido em algum lugar nos antigos prédios de apartamentos. Os engravatados despejariam seus rivais lá e quem fosse mais fácil de manter preso do que solto. Eu simplesmente os mataria se isso fosse um problema, honestamente. Mas parece que alguém prefere mantê-los na prisão do que apenas estourar as bocetas que os incomodam... O negócio é o seguinte: Shket foi o único do grupo que escapou, mas agora ele está fugindo, não nos contatou desde então mensagem que ele enviou. Nem nos disse onde encontrar os caras, esse merda com cara de rato. Os próprios caras são os culpados por serem pegos como umas vadias, e eu teria dito a eles para se foderem por causa de tal confusão. Mas o fato de alguém estar tentando me foder é ultrajante. Tudo bem, chega dessa besteira. Descubra onde eles mantêm meus meninos.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Porra do inferno. Por que alguém os manteria lá? Eu entenderia se eles me mandassem uma carta dizendo que matariam meu pessoal se eu não pagasse e merda. Um serial killer ou algo assim? De qualquer forma, volte daqui a pouco, vou descobrir o que está acontecendo.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Sobreviva e extraia da localização", "63a7d767f32fa1316250c3da": "Localize onde o grupo desaparecido foi mantido em cativeiro na Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "É a mesma história novamente, uma nova gravação, agora com um símbolo estranho. O que diabos está acontecendo? Pessoas estão sendo sacrificadas. A quem? Porque? Tantas perguntas, mas nenhuma resposta. Continuo pensando que é o pior que já veremos, mas toda vez que estou errado. Lutamos contra saqueadores pensando apenas em dinheiro. Assassinos que só querem atirar em inocentes também. Mas pelo menos eu entendo a motivação lá, a besta derrotou o humano em sua alma. Mas com que propósito as pessoas se tornam essas... Não consigo entender isso. Então soldado, eu vou procurá-los no mato, você faz o mesmo na cidade. Em algum lugar deve estar o esconderijo deles. Procure o mesmo símbolo, tenho certeza que o veremos novamente.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Você achou isso? Onde? Havia alguém lá? O que significa o símbolo? Ainda mais perguntas...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Sobreviva e extraia da localização", "63a7d6d61f06d111271f5aeb": "Localize o ponto de encontro do cultista na Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Saudações! Bem, vamos começar, você está animado? A tarefa é bastante específica, precisamos testar o brinquedo russo para combate corpo a corpo, para que as condições sejam de combate bem real em ambiente urbano. Tenho clientes que não acreditam na eficácia deste brinquedo... Você pode fazê-los mudar de ideia?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Nós iremos? Funciona bem? Adequado para combate corpo a corpo em ambientes urbanos?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Elimine agentes PMC enquanto usa um SR-2M \"Veresk\" com um supressor e mira reflex KP-SR2 em Streets of Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Alguns ainda estão intactos, hein. Que bom, vamos fazer uma visitinha a eles. Sua recompensa.", "6572e876dc0d635f633a5718": "Localize o primeiro grupo de caixa eletrônicos na rua Klimov na Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Explore a loja Sparja no hotel Pinewood", "6572e876dc0d635f633a571e": "Explorar a loja Goshan na Concordia", "6572e876dc0d635f633a5720": "Entregue o salame Salty Dog encontrado em incursão", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "ATM №11", "65733403eefc2c312a759df2": "ATM №12", "65733403eefc2c312a759df4": "ATM №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "ATM №15", "65733403eefc2c312a759dfa": "ATM №16", "65801ad655315fdce2096bec": "Desvende o segredo do sucesso da empresa", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Você achou isso? Bom trabalho, agora traga-o aqui! E receba sua recompensa, você merece.", "6573397ef3f8344c4575cd88": "Localize o fundo imobiliário na Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Localize e obtenha o documento de transações imobiliárias de Tarkov", "658167a0e53c40116f8632fa": "Entregue as informações obtidas", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Ah, sim, eu já ouvi os rumores. As pessoas vão pregar esses punks na parede em breve. Você fez um ótimo trabalho. Aqui está sua recompensa.", "65734c186dc1e402c80dc1a2": "Elimine qualquer inimigo usando um gorro Bomber e óculos de sol Raybench Hipster Reserve na Streets of Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Guarde um gorro Bomber dentro da barbearia na Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Guarde o óculos de sol RayBench Hipster Reserve dentro da barbearia na Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "Está na porra do pântano? Isso explica a porra do preço. Custaria mais tirá-lo de lá e limpá-lo! Certo, aqui, isso é por me ajudar.", "65802b627b44fa5e1463889a": "Localize o SUV de Ragman na Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Sobreviva e extraia da localização", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Localize e obtenha o pôster \"Bison VS Undertaker\" no acampamento da USEC em Woods", "664bbb5f217c767c35ae3d51": "Localize e obtenha o pôster \"Killa e Tagilla\" no acampamento do USEC em Woods", "664bbb73c71d456fd03714ca": "Localize e obtenha o pôster \"Easy Money\" no acampamento da USEC em Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Bom trabalho! Kaban e Kollontay já estão se preparando para uma tempestade, procurando quem ordenou o ataque. Eles vão superar isso e perceberão que estão passando dos limites. Aqui, esta é a sua recompensa.", "660d5effb318c171fb1ca234": "Eliminar os guardas de Kaban em Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminar os guardas de Kollontay em Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Vencer 6 partidas de 10 no modo de classificação na Arena", "662bb24b3d34cd5e19206e63": "Condição de falha: Perder 5 partidas", "6633a85e347a2a2b4051a26b": "Transferir rublos do saldo da EFT", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Condição de falha: Perder 5 partidas", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "Então você viu um corpo morto. Você o revistou? Verificou ao redor dele? Estou apenas apontando que você é cego. O campeão, pelo que sei, tinha um diário. Sim, como um adolescente, mas isso está trabalhando a seu favor.\n\nPor que não vai até lá novamente e dá uma olhada mais de perto? Deve haver mais informações no diário sobre o Ref, alguma sujeira sobre ele. Faça isso se quiser deixar de ser dispensável na Arena.\n\nE mais uma coisa: se você me trouxer alguma informação sobre o Ref que seja digna do meu tempo, eu lhe pagarei bem.", "66058ccf06ef1d50a60c1f48 failMessageText": "Você quer ficar embaixo da saia do Ref? Então, faça você mesmo.", "66058ccf06ef1d50a60c1f48 successMessageText": "Muito bem. Ainda bem que você pegou seu destino pelas bolas.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Localizar e obter as informações comprometedoras sobre o Ref", "664fd7f0837ee02ad4c8e658": "Entregue as informações encontradas", "66563f0a2684eee09e8dcd86": "Localize o esconderijo do antigo campeão", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "O telefone é falso. Alguém realmente queria que o Skier e seus homens se concentrassem nele. Parece que o jogo tem um novo jogador. Vamos dar uma olhada nisso.", "660ab9c4fcef83ea40e29efe": "Entregue o telefone", "660ac159205fdc5a2afb1665": "Localize e obtenha o telefone do The Unheard na alfândega", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Vender qualquer arma para o esquiador", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "Portanto, está vazio por dentro. Isso é bom: se não há corpos, é provável que os refugiados estejam vivos. Você conhece o princípio da superposição, certo?\nMuito bem, voltando ao assunto. Dei uma olhada no drive. Havia uma senha [bmV3ZGF3bi4u] com \"importante\" escrito nela. Acho que você pode descobrir.", "6616a9a14df4f14a474c92ba": "Localize e obtenha o disco rígido dentro do esconderijo do chalé em Lighthouse", "6616a9a98a97f72b921665f2": "Entregue o disco rígido", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Localize e obtenha o disco rígido dentro do esconderijo do chalé em Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "Portanto, está vazio por dentro. Isso é bom: se não há corpos, é provável que os refugiados estejam vivos. Você conhece o princípio da superposição, certo?\nMuito bem, voltando ao assunto. Dei uma olhada no drive. Havia uma senha [bmV3ZGF3bi4u] com \"importante\" escrito nela. Acho que você pode descobrir.", "6616a9fdfd94e03533038dab": "Localize e obtenha o disco rígido dentro do esconderijo do chalé em Lighthouse", "6616a9fdfd94e03533038dac": "Entregue o disco rígido", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Localize e obtenha o disco rígido dentro do esconderijo do chalé em Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Entregar o equipamento", "6669769ff0cb253ff7649f27": "Encontre o suporte de placa Crye Precision AVS (Tagilla Edition) em uma batida", "666976ab1a6ef5fa7b813883": "Entregar o equipamento", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Encontre o LBT-1961A Load Bearing Chest Rig (Goons Edition) em uma incursão", "666977849154974010adb5ec": "Entregar o equipamento", "666977bfe975ac480a8f914e": "Encontre o sistema de quadro Mystery Ranch NICE COMM 3 BVS (Coyote) em uma batida", "666977ca5fa54985173f8e2c": "Entregar o equipamento", "666977f2dd6e511e9f33005a": "Encontre o suporte de placa Crye Precision CPC (Goons Edition) em uma incursão", "666978023255d2720cbdf76d": "Entregar o equipamento", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "E aí, bandido! Como vai a vida? Um passarinho me contou que há uma revista especial no shopping Ultra, no Interchange. Eles escreveram sobre o nosso videogame russo, que é reconhecido em todo o mundo! Acho que os caras realmente criaram um ótimo conceito!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Isso sim é uma vitória! A revista tirou a sorte grande! Parece uma verdadeira merda histórica.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Localize e obtenha a edição especial da revista de jogos no Interchange", "667a95972740eaeca1ecda21": "Entregue o item encontrado", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "Acho que estou começando a entender por que as pessoas assistem a essas \"transmissões ao vivo\". É viciante!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Instale uma câmera WI-FI na borda da montanha em Woods", "667bf840981b1c594af358ce": "Instalar uma câmera WI-FI na torre do píer em Shoreline", "667bf845dc371ee9869f185e": "Instalar uma câmera WI-FI no corredor do escritório na fábrica", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Muito bem! Dizem que até o mundo exterior ficou sabendo da nossa pequena mudança, haha!", "667442da875be5fb415df535": "Guarde uma estatueta de galo de ouro na câmera WI-FI da Prapor em Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Guarde uma estatueta de galo de ouro na câmera WI-FI da Prapor em Shoreline", "66828746efaecf435dde20ca": "Guarde uma estatueta de galo de ouro na câmera WI-FI da Prapor na fábrica", "66d080533a3c33d823a3477d": "Guarde uma estatueta de galo de ouro na câmera WI-FI da Prapor na fábrica", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Olá, amigo. As coisas estão um pouco turbulentas para mim ultimamente. A partir de hoje, aumentarei temporariamente os preços de meus produtos e serviços até que eu possa resolver alguns assuntos urgentes. Um mercenário amigo meu está montando uma equipe para invadir o laboratório subterrâneo e precisa de poder de fogo confiável. Você pode ajudar? Vejo que você sabe tanto sobre os ARs quanto eu, então pensei em confiar isso a você. Preciso de uma M4A1 com recuo total não superior a 300 e ergonomia não inferior a 70. Não é fácil, eu sei. Agora, não se esqueça de colocar uma EOTech XPS 3-0 nela, já que o cliente se recusa a usar qualquer outra mira.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Muito obrigado. Acho que isso me manterá no caminho certo por algum tempo.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modifique um M4A1 para atender às especificações fornecidas", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "Você não perdeu nada no caminho, correto? Tudo bem, então é hora de enviar os engenheiros para fazer algumas medições, estamos prestes a descobrir o que essas paredes da fábrica estão escondendo. Obrigado por sua ajuda, amigo.", "66aa74571e5e199ecd094f1b": "Utilize o trânsito da alfândega para a fábrica (em um único ataque)", "66aa74571e5e199ecd094f1e": "Eliminar Scavs na fábrica (em uma única incursão)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Localize e obtenha o pacote de ferramentas de precisão no laboratório da Alfândega", "66ab97d56cb6e3bfd7c79fbc": "Guarde o pacote na sala de armazenamento do laboratório na Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "Então, de fato, você a encontrou. Excelente! Como está a passagem, é segura? Em estado deplorável, você diz? Bem, parece que essa oportunidade não estará conosco por muito tempo. Enviarei meus homens o mais rápido possível.", "66aba85403e0ee3101042878": "Localize a passagem que leva ao Laboratório nas Ruas de Tarkov (em uma única incursão)", "66aba85403e0ee310104287a": "Use o transporte público de Streets of Tarkov para The Lab (em uma única incursão)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Localize a passagem que leva a Streets of Tarkov em The Lab (em uma única incursão)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Explore a sala do servidor no Laboratório (em uma única incursão)", "66b0910951c5294b9d213918": "Explore a cúpula de perigo no Laboratório (em uma única incursão)", "66b10eef0951e90ec383850b": "Explore a sala de controle no Laboratório (em uma única incursão)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "O comprador me disse que está tudo pronto. Você ganhou sua recompensa e pode esperar que meus homens o ajudem nas novas trilhas.", "66abb32aeb102b9bcd088d62": "Use o transporte público do Ground Zero para as Ruas de Tarkov", "66abb39bf1d97b9b55390a79": "Use o transporte público de Streets of Tarkov para Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use o trânsito do Interchange para a alfândega", "66abb3ac416b26ade4a1446c": "Utilize o trânsito da alfândega para a fábrica", "66abb3bf228ace5ca9f3d745": "Use o trânsito da fábrica para o bosque", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Instale uma câmera WI-FI no urso que sentou em um carro em chamas em Woods", "66debf2e1e254957b82711ff": "Instalar uma câmera WI-FI na cadeira de cabeça para baixo em Shoreline", "66debf30802386a45d0adb60": "Instale uma câmera WI-FI no banheiro não tão solitário em Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "O soldado da fortuna chegou para sua nova tarefa! Há rumores de que Tarkov se tornou ainda mais perigoso. Quem poderia imaginar, não é mesmo? Alguém começou a atacar certas áreas com morteiros. \n\nÉ melhor você ir e ver o que está acontecendo. E sim, isso significa ir direto para o meio dessas áreas de ataque de morteiros. Sim. Certo, então notamos os bombardeios na reserva natural, na base militar, no escritório da alfândega e na linha costeira. Então, vamos lá.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Vivo e bem, isso é ótimo. Então, vamos ver com o que estamos trabalhando aqui. Alguém roubou os morteiros e agora eles estão atingindo vários locais logo antes da chegada dos suprimentos de lançamento aéreo. \n\nMuito suspeito. Esses homens da pólvora locais não poderiam ter assegurado a comunicação com o mundo exterior, poderiam? De qualquer forma, tudo o que podemos fazer por enquanto é observar.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visite uma área ativa de ataque de morteiro em qualquer local especificado (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Ok, fiquei sabendo de uma grande confusão. Pode não ser culpa sua, mas isso não vem ao caso. Os idiotas da estação de tratamento de água interceptaram um monte de caixas com equipamentos portáteis de guerra eletrônica. \n\nEles são obviamente inúteis neste momento, mas não vou deixá-los roubar propriedade do governo assim. \n\nPara um guerreiro como você, a tarefa é viável. Vá até o WTP e me traga esses equipamentos EW. E sim, esses ratos precisam ser abatidos. \n\nOs próprios EWs provavelmente já foram entregues aos seus comandantes, portanto, é garantido que você receberá esse equipamento deles. Supondo que você não morra, eu acho.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Esplêndido, os novos brinquedos chegaram. Meus rapazes vão adorar. Hoje em dia, é preciso estar pronto para tudo, e essa proteção definitivamente não é supérflua.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Entregue o item encontrado na incursão: Dispositivo portátil de guerra eletrônica GARY ZONT", "66e19f359fee1e54e0e01f7c": "Eliminar Rogues", "66e19f7d534a8ff2bb7e9f89": "Localizar e neutralizar o Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "Essa coisa toda de comerciante está indo muito bem para mim, não acha? Sabe, se eu não tivesse juízo, já estaria morto neste buraco do inferno há muito tempo. De qualquer forma, lidarei com os relatórios mais tarde, não na primeira vez. \n\nNo momento, preciso equipar os caras que estão fora do meu território. Leve a eles esse novo equipamento que encontramos. Eu lhe darei uma parte, mas o resto você mesmo precisa conseguir - você já sabe onde procurar. Não, você não os encontrará cara a cara. Apenas guarde os itens no local designado.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Ótimo, agora que eles estão a salvo de ameaças aéreas, sua missão de combate será cumprida sem problemas.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Esconda o dispositivo portátil de guerra eletrônica GARY ZONT dentro da igreja afundada em Woods", "66e071c8a9e80c3f25bb1bad": "Guarde as peças sobressalentes da estação de radar dentro do antigo hangar da serraria em Woods", "66e0735089627301d900ef1d": "Esconda o dispositivo portátil de guerra eletrônica GARY ZONT dentro da torre da estação meteorológica em Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "Já era hora de você passar por aqui. Você também notou aqueles demônios noturnos saindo de todos os lugares, não notou? Eles estão se armando muito melhor, hein. É como se alguém estivesse realmente trabalhando com eles. De cima, sabe?\n\nDeveríamos dar uma olhada no que esses bastardos estão tramando. Além disso, será ainda melhor se conseguirmos reduzir o número deles. Mas tenha cuidado. \n\nHá um boato entre os catadores de que você pode se deparar com uma fera invencível à noite. Dizem que ela caça e devora humanos. \n\nLembro-me de uma história oriental sobre esse demônio, cujo apelido era... \"O Oni\". Eu não teria mencionado essas histórias antes. Mas agora algo está definitivamente se formando, e pensamentos sombrios continuam a rastejar em minha cabeça.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "Então, o que você encontrou? Eu também não fiquei parado enquanto você estava fora, eu me encontrei com Partisan. Ele disse que eles estão preparando um ritual especial, e é por isso que estão saindo de suas tocas. Todos eles estão mencionando algum tipo de \"Noite do Culto\".\n\nNão sei do que se trata, mas definitivamente são más notícias para Tarkov. E algo me diz que há alguém que está orquestrando tudo isso. Esse demônio não apareceu em nossas partes sem motivo. \n\nMas eu mesmo vi algo ontem à noite. Seu rosto estava vermelho, como se estivesse queimando. Peguei minha arma e apontei, mas quando pisquei, não havia ninguém lá. Alucinações de velho, talvez...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminar as pessoas noturnas encapuzadas", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Muito bem, tenho boas notícias para você. \nPartisan conseguiu escutar a conversa dos cultistas antes de serem mortos pelo fio elétrico.\n\nO Harbinger, como eles o chamam, é o responsável por toda essa parada de terror. Ele prometeu a eles que, se fizessem o que ele mandasse, receberiam o novo Dom do Inédito. Mas que diabos? Não faço ideia do que isso significa. Mas tenho certeza de que, se você permitir que eles realizem o maldito ritual, haverá inúmeras vítimas entre as pessoas decentes. As pessoas começaram a fugir das ruas, dizem que um fantasma está caçando almas.\n\nNão sabemos os detalhes desse mistério, mas ele está definitivamente ligado a tudo isso! E sabemos quem está por trás disso. Precisamos eliminar o Harbinger e, se você encontrar alguma coisa assustadora perto dele, tente enterrá-la bem fundo no chão. Talvez isso mantenha os cultistas na linha.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "Os bastardos estão sendo tratados? De qualquer forma, o lugar dos malditos é no inferno. Esperamos que o restante dos cultistas se afaste e volte para suas tocas. \n\nO engraçado é que Zryachiy também tem estado ausente ultimamente. Será que ele desceu do Farol para terminar o ritual e deixar esses demônios saírem para a luz do dia?", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Localize e neutralize o Oni", "66e3eb4c4a5359f2db0be81a": "Localizar e neutralizar o Harbinger", "66e3eb65e385f94b38f061d7": "Localizar e neutralizar o Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "Acho que você pode ver o que está acontecendo agora que está de volta. Esses brutos não só não se dispersaram, como também começaram a organizar seus preparativos com ainda mais vigor! \n\nAcabei de receber a notícia de que o pobre garoto Ryzhy foi capturado pelo próprio Zryachiy. Dizem que ele será o principal sacrifício. Isso significa que estamos ficando sem tempo!\n\nPartisan ainda está na floresta caçando cultistas, mas nem mesmo ele pode fazer isso sozinho. Agora cabe a nós limpar a escória com nossas próprias mãos. Se não houver ninguém para realizar o ritual, talvez ele acabe.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Quieto, seu verme! Ah, é você. Eles também estão começando a aparecer na minha região. Já recebi alguns desses visitantes antes de você.\n\nVocê diz que limpou Tarkov dos cultistas? Bem, com perdas como essa, eles não poderão fazer nada tão cedo. Eles esquecerão tudo sobre o Precursor. No entanto, não sei se vou conseguir dormir tranquilo por um tempo.\n\nObrigado por sua ajuda. Não teria conseguido sem você.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminar as pessoas noturnas encapuzadas no Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminar as pessoas noturnas encapuzadas em Lighthouse", "66e3ecad063ef452798d369d": "Eliminar as pessoas noturnas encapuzadas em Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Ok, estou vendo a conexão, então você fez tudo certo... Oh, eles são à prova de DDoS. Mas e se acessarmos daqui, seus idiotas? É aí que entra o Sr. Kerman.\n\nVocê ainda está aqui? Desculpe-me, não tenho mais tempo para conversar. Kerman acabou de enviar seus dados e disse que não vai deixar os projetos do TerraGroup arruinarem nossa cidade. \n\nEnquanto ele derruba a segurança, tenho de formatar as unidades para dar ao terapeuta tudo o que pudermos descobrir.", "670411a2cded018840f5b599": "Localize o computador necessário no escritório Cardinal do TerraGroup em Streets of Tarkov", "670411d819aafd130ebc4bb8": "Instale a unidade flash no computador para fazer o download dos arquivos", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "Como você se atreve? Meu colega fez uma contribuição fundamental para salvar a cidade e não merecia esse destino! Não sei como posso confiar em você depois de ações tão ultrajantes.", "67040cae4ac6d9c18c0ade2c successMessageText": "Você fez a escolha certa. Sei que Jaeger tentou induzi-lo a prejudicar meu colega.\n\nMas eu lhe asseguro que essa versão da droga era a maneira mais segura de limpar a cidade do vírus...", "6706a4ddec997e861c3f6f04": "Espalhe a vacina sobre o Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Espalhe a vacina sobre a Shoreline", "6706a51fa60dfe2fb85275ed": "Espalhe a vacina em Woods", "6706a52083168d9e8ed303d8": "Espalhe a vacina na alfândega", "6706a61a5fb5eedf15ec6234": "Espalhe a vacina na fábrica", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Espalhe a vacina no laboratório", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Espere! Você também não sabia que ela desenvolveu essa \"cura\" com a Sanitar? \n\nAposto que eles fizeram uma versão simplificada para que pudessem matar todas as pessoas doentes sem pestanejar, certo? Eu não vou deixar isso acontecer.\n\nConheço a natureza dela... Com certeza ela desenvolveu uma versão menos letal da droga para uso próprio ou para venda. \n\nMas se ela trabalhou nela com esse marginal, isso significa que é ele quem a está guardando! Punir o bastardo e obter a versão real da droga. \n\nSe não for a droga em si, pelo menos encontre a receita... Provavelmente descobriremos a partir daí!", "67040ccdcc1f3752720376ef failMessageText": "Quão estúpido você tem que ser para acreditar nela, mesmo depois de eu ter literalmente revelado a verdade? O sangue das pessoas que morrerem por causa dessa vacina estará em suas mãos, garoto. \n\nQuando eles vierem até você em seus sonhos, você perceberá o que fez.", "67040ccdcc1f3752720376ef successMessageText": "Tudo pronto, certo? Nós realmente esfregamos isso no nariz desses \"empresários\"!\n\nIsso deve lembrar à bruxa que ela fez o Juramento de Hipócrates.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Localize e obtenha a vacina verdadeira no escritório da Sanitar em Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Localizar e neutralizar o Sanitar", "6719135cfab45272c32a8c01": "Entregue o item encontrado", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Bem, talvez agora tenha finalmente terminado! Tudo o que importa é que você escolheu o lado certo, garoto, e sua consciência está limpa.\n\nA cura certamente deve funcionar se eles a fizeram para si mesmos, só temos que esperar um pouco mais.", "6707e6614e617ec94f0e63e0": "Divulgue a verdadeira vacina sobre o Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Divulgue a verdadeira vacina sobre a Shoreline", "6707e6614e617ec94f0e63e3": "Espalhe a verdadeira vacina em Woods", "6707e6614e617ec94f0e63e4": "Divulgue a verdadeira vacina na alfândega", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Localize e explore os armazéns no depósito em Woods", "673f2d9a73ff76dd6d5a6344": "Localize e explore o escritório no depósito em Woods", "673f2da118e615f9f5550544": "Localize e explore as garagens no depósito em Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Concluir a tarefa A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Parece bastante fácil. Eu me encarregarei disso.", "673f2cd5d3346c2167020484 declinePlayerMessage": "Não posso ajudá-lo neste momento.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "Então fui até o depósito... Aqueles idiotas arruinaram o lugar e levaram minhas peças de reposição. Quero dizer, posso entender ferramentas ou equipamentos. Mas por que diabos alguém levaria a porra das rodas? Você não vai construir um segundo BTR assim.\n\nDe qualquer forma, preciso de uma roda sobressalente e, quanto mais cedo, melhor. Você precisa descobrir onde as rodas adequadas podem estar por aí. Não sei onde procurar exatamente, mas você não é um idiota, você descobrirá. Você pode começar pela área alfandegária, mas não vou lá há muito tempo, então não posso prometer que elas estarão lá.", "673f4e956f1b89c7bc0f56ef failMessageText": "Isso é uma piada, certo?\n\nEssas rodas são de caminhão, seu idiota. Estou dirigindo um BTR. B-T-R! Vá marcar a porra das rodas de bicicleta em seguida, já que está fazendo isso.", "673f4e956f1b89c7bc0f56ef successMessageText": "Fantástico! Isso vai servir, e você também fez isso rapidamente. Eu elogio isso! Mas trocar as rodas levará algum tempo, afinal, não é um Lada.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Localize e marque as rodas BTR sobressalentes com um marcador MS2000", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "Há rodas por toda parte, não se preocupe. Eu cuidarei disso.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Talvez em outro momento, ok? Não agora.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "Sabe, você tem me ajudado há algum tempo e eu nem sequer o coloquei a par de toda essa situação. Então, agora estou trabalhando com o Skier. Entrego suas mercadorias e, às vezes, participo de suas operações. No início, era um trabalho lucrativo, mas agora esse idiota não me deixa em paz nem por um segundo. Ele acha que sou sua mula pessoal agora!\n\nEle parece ter descoberto, de alguma forma, que estou cansado de tudo isso, e agora trouxe seus punks para a minha base para me dar uma lição. Não vou mais aturar essa merda. Eu o deixaria há muito tempo, mas preciso de proteção e garantias, você sabe. E como você está em contato com outros comerciantes, poderia falar bem de mim. Você pode ajudar um amigo?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Sim, bem, eu já esperava por isso.\n\nMas o importante é que começamos. Agora tenho uma chance real de me afastar desse idiota.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Vender qualquer item para Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Venda qualquer item para a Prapor", "675196dff77c0b8436ec1ef5": "Vender qualquer item para o Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Tudo bem, vou tentar falar com eles.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "Você realmente me ajudou! Se o motorista do BTR for tão confiável quanto você, certamente nos daremos bem. Eu só preciso terminar algumas outras coisas urgentes e preparar tudo.", "6740a322d42204d5c70767e9": "Encontre itens eletrônicos militares em uma batida", "6740a33685a62f9581c2beaf": "Entregue os itens de componentes de PC encontrados na batida", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Entregue os itens eletrônicos militares encontrados na batida", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Localize e marque a segunda seção do caminho do penhasco com um marcador MS2000 no Lighthouse", "674492f0636d0661476732f2": "Localize e marque a terceira seção do caminho do penhasco com um marcador MS2000 no Lighthouse", "674492f30f45cb752f21df39": "Localize e marque a quarta seção do caminho do penhasco com um marcador MS2000 no Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Parece bastante fácil. Eu me encarregarei disso.", "674492b6909d2013670a347a declinePlayerMessage": "Talvez em outro momento, ok? Não agora.", "674492b6909d2013670a347a completePlayerMessage": "Meu trabalho está concluído. É hora de pagar.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "Como as negociações estão progredindo? Quero dizer, eu entendo que Prapor precisa refletir sobre isso primeiro, mas estou ficando sem tempo! Tenho que sobreviver de alguma forma enquanto estiver construindo pontes. Não há queixas contra você, obviamente.\n\nEu não tenho nem mesmo baterias sobressalentes agora, e os eletrônicos podem estragar a qualquer momento. Eu até poderia usar uma bateria de tanque agora, talvez eu consiga fazê-la funcionar com minha BTR.\n\nVocê acha que pode encontrar uma dessas? Porque, sem ela, eu estou acabado.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "Esse é um dos grandes! Espero que não tenha sido muito incômodo. Tudo bem, deixe-o aqui. Você está fazendo muito trabalho para mim e não vou me esquecer disso. Obrigado.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Entregue o item: Bateria militar 6-STEN-140-M", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Quebrar minhas costas por você... Está bem, vou dar um jeito.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Sim, não. Certa vez, tive que rastejar por várias horas com uma bateria como essa. Desculpe, mas não vou fazer isso.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "Como as negociações estão progredindo? Quero dizer, eu entendo que o Ragman precisa refletir sobre isso primeiro, mas estou ficando sem tempo! Tenho que sobreviver de alguma forma enquanto estiver construindo pontes. Nenhuma reclamação contra você, obviamente.\n\nEu não tenho nem mesmo baterias sobressalentes agora, e os eletrônicos podem estragar a qualquer momento. Eu até poderia usar uma bateria de tanque agora, talvez eu consiga fazê-la funcionar com minha BTR.\n\nVocê acha que pode encontrar uma dessas? Porque, sem ela, eu estou acabado.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "Esse é um dos grandes! Espero que não tenha sido muito incômodo. Tudo bem, deixe-o aqui. Você está fazendo muito trabalho para mim e não vou me esquecer disso. Obrigado.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Entregue o item: Bateria militar 6-STEN-140-M", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Quebrar minhas costas por você... Está bem, vou dar um jeito.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Sim, não. Certa vez, tive que rastejar por várias horas com uma bateria como essa. Desculpe, mas não vou fazer isso.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "E daí? Está sentindo como ele funciona bem agora? Você me ajudou muito com as rodas. \n\nAgora podemos começar a pensar nos filhos da puta que roubaram minha base. Eles não podem ter ido longe, provavelmente ainda estão na reserva natural. Vá puni-los, está bem?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Bom trabalho! Agora os Scavs pensarão duas vezes antes de se meterem comigo.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminar os escavadores nas madeiras", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Tudo bem, estou dentro.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "Já tenho muito com o que me preocupar. Não posso ajudá-lo.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Marque a parada BTR do centro da cidade com um marcador MS2000 no Streets of Tarkov", "6746012a35218bb89951248e": "Marque a parada do bonde BTR com um marcador MS2000 em Streets of Tarkov", "6746012d871e69a9abb5873d": "Marque a parada do Rodina Cinema BTR com um marcador MS2000 em Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "Se você quisesse trabalhar para os dois lados, deveria ter sido mais cuidadoso! \n\nVocê não vai longe com esse otário. Mas você já fez sua escolha, idiota.", "674602307e3818d5bb069489 successMessageText": "O bunker está aberto? Esses encapuzados podem ser um problema, mas não são o foco no momento. O plano não pode ser alterado, mas notificarei o grupo de qualquer forma.", "674602682cb1c1f5999f27aa": "Localize o bunker sob a montanha em Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Esconda o primeiro pacote de munição russa perfurante dentro do bunker", "674da90f96d4f32d517cb770": "Esconda o segundo pacote de munição russa perfurante dentro do bunker", "674da9141cc05673dc69e7e7": "Esconda o terceiro pacote de munição russa perfurante dentro do bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "Então, um passarinho me disse que o motorista está determinado e está procurando um novo empregador. Duvido que o idiota se dê conta de todas as consequências dessa transição. De qualquer forma, eu nunca dei a ele essa opção! A única pista que confirmei agora é sobre o Peacekeeper. \n\nVocê deveria ir até ele e lembrá-lo de que temos interesses em comum com ele! Faça com que ele se lembre de quem é seu principal parceiro.", "6746053b5b555b53460d9896 failMessageText": "Você achou que eu não descobriria que você estava ajudando o motorista? Você acha que não posso substituí-lo?\n\nVocê vai ter que se esforçar muito se quiser fazer negócios comigo novamente.", "6746053b5b555b53460d9896 successMessageText": "O Peacekeeper é um pensador avançado, mesmo que ele queira parecer um simples traficante. Ele não se atreverá a me enfrentar agora.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Vender qualquer item para o Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Utilizar o trânsito da alfândega para a reserva", "674606ccff406a9f6a28e26f": "Use o transporte público de Reserve para Woods", "674606f1c63637e54bede3a6": "Use o transporte público de Woods para Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Sobreviver e sair do Lighthouse", "674607317781508c405fb979": "Elimine os agentes da PMC enquanto cumpre os outros objetivos", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Entre, sente-se. O chá está quase pronto, ele vai aquecê-lo. Não tínhamos essas temperaturas desde 1873. Aquele inverno foi tão rigoroso quanto este, e eu até aqueci uma raposa perdida aqui!\n\nIsso faz uma grande diferença em uma situação de combate. Você pode congelar seus dedos a ponto de não conseguir nem mesmo puxar o gatilho. Também não é possível ficar em uma emboscada quando se está com muito frio.\n\nSe quiser sobreviver, precisa endurecer seu corpo. Tente derrotar alguns inimigos quando estiver com frio.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "Então, como está sua condição? Agora você precisa se aquecer, ou ficará fora de serviço por uma semana.\n\nDepois de se aquecer, você terá que praticar novamente, caso contrário seu corpo não se acostumará. Então o frio será uma vantagem, não um contratempo.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Elimine qualquer alvo que esteja sofrendo o efeito de status Frostbite", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Olá. Imagino que você já tenha visto o BTR que está circulando por Tarkov. O motorista costumava oferecer seus serviços a PMCs como você, mas ultimamente ele também começou a trabalhar com o Skier. O motorista me procurou quando estava restaurando o BTR. Foi um desafio bastante interessante, deixe-me dizer. Mas isso não vem ao caso. \n\nEle não entrava em contato há algum tempo e agora, de repente, pediu ajuda. Aparentemente, algo sério aconteceu. Você pode entrar em contato com ele e descobrir o que está acontecendo? Não há muitos homens inteligentes e ambiciosos em Tarkov. Pessoas como nós devem se manter unidas.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "Eu lhe disse que era perigoso fazer parte da gangue do Skier... É verdade que isso tem seus privilégios, mas dificilmente se pode permanecer independente em um negócio tão grande. \n\nEu me pergunto quem poderia ter se voltado contra o Skier? Afinal de contas, a BTR deveria estar sob sua proteção...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Concluir a tarefa Atraso no envio - Parte 1", "6752f86d538945df8cc3fc3a": "Localize e obtenha o pacote do Prapor no Woods", "6756bcb3f93f4c1fc2b2d685": "Sobreviver e sair do local", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "Você aprendeu sua lição. Certifique-se de não esquecê-la. \n\nEsteja sempre preparado para que seu caminho de volta seja encurtado. Não importa em que parte de Tarkov você se encontre. Seu conhecimento do terreno, dos caminhos entre as áreas e das rotas de fuga seguras é seu ponto forte.", "675c1cf4a757ddd00404f0a6": "Sobreviver e sair da alfândega por meio da ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Entregue o item: Estatueta Den", "6761f93bc757eb8c228fa754": "Eliminar Scavs", "6761f9d718fa62aac3264ff2": "Sobreviver e sair do laboratório", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Entregue o item encontrado na incursão: Estatueta de cultista", "6761ff17cdc36bd66102e9e1": "Entregue o item encontrado na incursão: Estatueta do covil", "6762015739c53fca8ac51336": "Eliminar os agentes da PMC", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Eu Ouço a Voz da Escuridão", "6514134eec10ff011f17cc26 description": "Elimine o Knight 15 vezes jogando como PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Isso Que é Tiro", "651413e9c31fcb0e163577c9 description": "Elimine o Zryachiy 15 vezes jogando como PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/ro.json b/Libraries/SptAssets/Assets/database/locales/global/ro.json index ffd43e52..146cb811 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/ro.json +++ b/Libraries/SptAssets/Assets/database/locales/global/ro.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Lasă servietă în fumoarul din Uzină (etajul 1 exterior lângă Poarta 3)", "5968929e86f7740d121082d3": "Gasește mapa în biroul directorului Tarcone din depozitul roșu din Vama", "5977784486f774285402cf52": "Supraviețuiește și extrage-te din Uzină", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Impresionant într-adevăr! E aproape ca o valiză nucleară! Nu-i de mirare că a călcat pe cadavre încercând să scape cu ea.", "5968981986f7740d1648df42": "Găsește ceva valoros în camera de cămin 203 din Vamă", "5968988286f7740d14064724": "Predă bunul de valoare", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Obține accesul în camera 214", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Îți mulțumesc din adâncul inimii. Nici nu îți pot explica cât de mult și în același timp cât de puțin contează, în starea în care suntem. Majoritatea oamenilor le-ar păstra doar pentru ei, dar tu ai împărțit cu cei ce au nevoie. Mulțumesc.", "5969f98286f774576d4c9542": "Găsește Seringi cu Morfină în raid", "5969f99286f77456630ea442": "Predă seringile", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Găsește în raid Bujii", "596b470c86f77457ca18618a": "Predă bateriile", "596b472686f77457c7006f8a": "Predă bujiile", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "Nu credeam că o să fie acolo! S-ar putea să fie goale oricum. Verificăm. În orice caz, partea ta.", "5979ee2986f7743ec214c7a4": "Găsește în raid USB-uri Criptate", "5979ee4586f7743ec214c7a5": "Predă Stickurile Criptate", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Găsește și marchează a treia cisternă cu un Marker MS2000 în Vamă", "59c128f386f774189b3c84bb": "Găsește și marchează a patra cisternă cu un Marker MS2000 în Vamă", "5c92184386f7746afa2e7840": "Supraviețuiește și extrage-te din locație", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Minunat! Poftim, ia-ți plata. Între timp o să las stickul să fie decriptat de specialiștii mei.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Ascunde pușca SV-98 în bărcuța", "5a27d85286f77448d82084e7": "Ascunde multifuncționala în bărcuța", "5a3ba11786f7742c9d4f5d29": "Găsește bărcuța ascunsă după dig pe Litoral", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Supraviețuiește și extrage-te din locație", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Bun, de acum încolo poți conta pe mine mereu.", "5a56489d86f7740cfe70eba2": "Înmânează $", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Ai asamblat-o? Reazămă-o acolo în colț, mulțumesc. Arată chiar bine, așa-i? Oricum, sunt foarte ocupat, nu pot sta în povești.", "5accd5e386f77463027e9397": "Modifică un MP-133 conform cu specificațiile primite", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Ei bine, în mâinile potrivite această armă poate răsturna regimuri și crea revoluții. Las-o în colț, o verific mai târziu.", "5accd9b686f774112d7173d1": "Modifică un AKS-74U conform cu specificațiile primite", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Perfect pentru bătăi în spații închise. Bună modificare, clientul va fi satisfăcut.", "5accde3686f7740cea1b7ec2": "Modifică un MP5 conform cu specificațiile primite", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Mulțumesc, lasă arma pe masă. O să i-o predau lui Di, ahem, Lunetistului.", "5acce08b86f7745f8521fa64": "Modifică un DVL-10 conform cu specificațiile primite", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Da, nu te poți ascunde de așa ceva. Iubesc 7.62, e un calibru bun. Mulțumesc pentru armă. Comanda următoare mâine.", "5acce11786f77411ed6fa6eb": "Modifică un R11 RSASS conform cu specificațiile primite", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Hai să vedem ce-ai asamblat aici. Da, arma democrației... Mulțumesc.", "5accdfdb86f77412265cbfc9": "Modifică un M4A1 conform cu specificațiile primite", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Repară primul panou de control cu o trusă de scule în Uzină", "5ac7a51a86f774738a4ffc96": "Repară al doilea panou de control cu o trusă de scule în Uzină", "5ac7a5d586f774383111ee63": "Supraviețuiește și extrage-te din locație", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Predă ștecherele", "5ac5061386f77417e429ce7a": "Găsește în raid circuite imprimate", "5ac5062586f774587c327395": "Predă circuitele imprimate", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Găsește depozitul cu colete confiscate în Vamă", "5ac6248586f77416781dd3a3": "Găsește coletul cu plăci video", "5ac624b286f77416781dd3ac": "Predă coletul", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Predă plăcile video", "5ac5083d86f7740be2744eed": "Găsește în raid coolere de procesor", "5ac5084d86f7740bde1b0031": "Predă coolerele", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Găsește prima antenă pe Litoral", "5ac5e13586f7746074388f93": "Găsește a doua antenă pe Litoral", "5ac5e18c86f7743ebd6c9575": "Supraviețuiește și extrage-te din locație", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Predă bateriile", "5ac5e98886f77479bc6ca201": "Predă circuitele imprimate", "5ac5ea0586f774609f36280c": "Predă telefoanele", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Găsește în raid procesoare", "5cb6f88d86f7747d215f09c1": "Găsește în raid baterii reîncărcabile", "5cb6f8de86f7740e9d452685": "Găsește în raid circuite imprimate", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Care-i a șaptea cifra după virgula a lui Pi? 0,1,2? Bun, te voi contacta la momentul potrivit.", "5ac5eb3286f7746e7a509a09": "Atinge nivelul de Atenție necesar", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Predă pachetele de țigări Strike", "5ac5ef9886f7746e7a509a2d": "Găsește țigări Wilston în raid", "5ac5eff886f7740f43322559": "Predă pachetele de țigări Wilston", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Găsește a doua ieșire din Uzină", "5ac61adf86f774741c1bf096": "Găsește a treia ieșire din Uzină", "5ac61b1486f7743a8f30fc84": "Supraviețuiește și extrage-te din locație", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Găsește a patra ieșire din Uzină", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "Nu-mi place să mă prefac, deși știu că toată lumea o face. Câteodată o facem în momente critice, de supraviețuire, altă dată nu e nimic important, decât frica. Știi, nu mă pricep la spus povești, mai ales la povestit cu necunoscuții, dar tu pari băiat de treaba. Dacă ai reușit să-mi câștigi încrederea, eu zic că poți fi prieten cu oricine. Până la urmă, doar relațiile ne mai ajută să supraviețuim. Vorbește cu Pavel Yegorovich. Când începă sa aiba încredere în tine, ajută-mă să stabilesc un acord de livrare a prafului de pușcă. Știu, omul nu e sfânt, dar am nevoie mare de praf.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich e unul dintre puținii care au rămas în urmă. Mă întreb care-o fi motivul, a rămas pentru că era militar sau pentru că n-a avut timp să scape. Totuși, îmi dă impresia că se ocupă cu ceva foarte dubios.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Atinge nivelul 3 de încredere cu Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Frumoasă armă, solidă. Nu am alte comenzi, dar poți veni mâine.", "5ae34b8b86f7741e5b1e5d48": "Modifică un Remington Model 870 conform cu specificațiile", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "O armă confortabilă, muncă de maistru, mulțumesc. Voi anunța clientul că arma e pregătită.", "5ae3550b86f7741cf44fc799": "Modifică un AKM conform cu specificațiile primite", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "Bun, ai terminatul Kalashnikovul Zenit? Perfect, lasă-l acolo pe cutie, mulțumesc. Poți veni mâine după altă comandă, dacă dorești.", "5ae3570b86f7746efa6b4494": "Modifică un AKS-74N conform cu specificațiile primite", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "Mi-am dat seama cum să antrenez rețeaua neuronală! A, da, e bună arma, mulțumesc. Pune-o undeva într-un colț, am s-o verific mai târziu.", "5ae445f386f7744e87761331": "Modifică un AK-105 conform cu specificațiile primite", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Gata deja arma? Perfect, dă-mi-o. Am o cheie interesantă aici, poate iți folosește. Deschide ușa de la magazinul de arme KIBA din ULTRA. Ai șanse mari să găsești acolo atașamente bune, îți vor fi de folos în munca de armurier.", "5ae4479686f7744f6c79b7b3": "Modifică un AS-VAL conform cu specificațiile primite", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Bun venit în echipa, frate. Putem să începem?", "5ae44c6886f7744f1a7eb2b8": "Atinge nivelul 2 de încredere cu Croitorul", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Atinge nivelul 2 de încredere cu Croitorul", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Tragi ca un lunetist, ești nebun?! Băieții mi-au zis ca e plin de cadavre pe lângă mall, iar înăuntru e liniște acum. Poftim plata, o meriți.", "5ae44ecd86f77414a13c970e": "Elimină Scavi în Zona ULTRA", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Găsește și verifică magazinul DINO CLOTHES în ULTRA", "5ae4511d86f7740ffc31ccb5": "Găsește și verifică magazinul TOP BRAND în ULTRA", "5ae4514986f7740e915d218c": "Supraviețuiește și extrage-te din locație", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Găsește și marchează a doua cisternă cu un Marker MS2000 în Zona ULTRA", "5ae452fa86f774336a39758e": "Găsește și marchează a treia cisternă cu un Marker MS2000 în Zona ULTRA", "5ae4531986f774177033c3e6": "Supraviețuiește și extrage-te din locație", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Numai frumusețea poate salva lumea. Mulțumesc, chiar mi-ai fost de ajutor, frate. Pălăriile se vor vinde imediat, crede-mă. Poftim plata.", "5ae4543686f7742dc043c903": "Predă Ushăncile", "5ae454a086f7742be909a81a": "Predă pălăriile", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Găsește șepci tip Ushanka", "5fd89799c54dc00f463272d3": "Găsește pălării tip Cowboy", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Predă registrul de inventar de la OLI", "5ae9b3b186f7745bbc722762": "Găsește registrul de inventar de la IDEA în ULTRA", "5ae9b3c986f77432c81e2ce6": "Predă registrul de inventar de la IDEA", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Ai găsit documentele? Mișto. Dă-mi-le, să vedem unde a dispărut marfa.", "5ae9b5bd86f774307c29df37": "Găsește documentele de transport OLI din ULTRA", "5ae9b63286f774229110402d": "Predă documentul", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Predă cagulele de schior", "5ae455fb86f7744dd8242380": "Obține rucsac ”Pelerin” în raid", "5ae4562086f774498b05e0dc": "Predă rucsacul", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Predă armura", "5ae9b91386f77415a869b3f3": "Obține o armură BNTI Gzhel-K cu durabilitate între 50-100%", "5ae9b93b86f7746e0026221a": "Predă armura", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Predă hamurile", "5af079e486f77434693ad7f8": "Găsește hamuri tactice BlackRock în raid", "5af07a0286f7747dba10d8ac": "Predă hamurile", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Predă primul manual", "5ae9c0e186f7746419683c5e": "Găsește manualul Design Haine - Vol. 2 în ULTRA", "5ae9c10686f774703201f146": "Predă al doilea manual", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Ce faci frateeee, sunt de partea ta, omule! Scuze, fac un pic de caterincă. Văd că ești mai carismatic acum, asta-i bine. Să trecem la afaceri atunci.", "5ae9c29386f77427153c7fb0": "Atinge nivelul de Carismă necesar", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Se pare că a mers fără probleme, mulțumesc.", "5ae9c38e86f7743515398707": "Atinge nivelul 3 de încredere cu Doctorița", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Ascunde Eșarfa (Verde) pe ponton", "5ae9e2a286f7740de4152a0a": "Ascunde ochelarii de soare RayBench Hipster Reserve pe ponton", "5ae9e2e386f7740de4152a0d": "Ascunde ochelarii de soare cu Ramă Rotundă pe ponton", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Ai speriat niște Scavi la Ultra cândva, îți amintești, frate? Se pare că se înrăutățește situația. Vorba e că roiește cu tot felul de gunoaie. Am o misiune pentru tine: verifică situația în Zona Ultra, asigură-te că e cât de cât liniște. Găsește niște căi sigure de acces măcar. Am nevoie să meargă totul perfect, ok?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Ești Omul Invizibil sau ceva fantomă. Stai așa, să scot harta. Deci, cărările sigure sunt aici și aici, corect? Perfect, îi anunț pe băieți. Mulțumesc, frate, ești de mare ajutor.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Supraviețuiește și extrage-te din Zona Ultra", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Asta da încăpățânare! Îi adun acum pe băieți, o să se încarce cu bunătățuri în Goshan! Recompensa ta, ia vezi ce armură am acum pe stoc, doar pentru tine.", "5ae9e55886f77445315f662a": "Găsește cheia de la casele de marcat Goshan", "5ae9e58886f77423572433f5": "Predă cheia", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Nu porni lanterna că ne orbești până diseara! Oricum, bravo, las-o pe cutie.", "5b47796686f774374f4a8bb1": "Modifică un AK-102 conform cu specificațiile primite", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Haide, ne grăbim. Trebuie să livrez urgent arma. Sper că nu ai spus nimănui pentru ce e MPX-ul ăsta. Să-i ținem pumnii cumpărătorului.", "5b477b3b86f77401da02e6c4": "Modifică un SIG MPX conform cu specificațiile primite", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Mulțumesc, las-o aici undeva. Sunt un pic ocupat acum, ne vedem mai târziu.", "5b477f1486f7743009493232": "Modifică un AKMN conform cu specificațiile primite", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "E gata pușca? Perfect. Mă gândesc că te-ai prins deja că pe Lunetist îl cheamă Dima, mi-a scăpat acum ceva vreme. Nici o vorba despre el nimănui, sper că înțelegi.", "5b47824386f7744d190d8dd1": "Modifică un M1A conform cu specificațiile primite", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Îmi vine să o pun în vitrină. Muncă de maestru, pe bune, e incredibilă.", "5b4783ba86f7744d1c353185": "Modifică un M4A1 conform cu specificațiile primite", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Beton, dă-mi-le. Mecanicul le-a cerut, cred că te-ai prins. I le trimit azi. Mulțam, mare ajutor.", "5b47884886f7744d1c35327d": "Găsește Aditivi Combustibil în raid", "5b47886986f7744d1a393e65": "Predă Aditivul de Combustibil", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Predă figurinele de Pisică", "5b478a6c86f7744d190d8f4d": "Găsește ceas de mână Roler Submariner din Aur", "5b478a8486f7744d1c35328b": "Predă ceasul de mână", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Găsește în raid un Ou de Aur", "62a70058ec21e50cad3b6709": "Predă Oul de Aur", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Ascunde Peltor ComTac 2 în locul indicat", "5b478c7386f7744d1a393fb1": "Ascunde căștile 6B47 în locul indicat", "5b478cb586f7744d1a393fb5": "Ascunde armura BNTI Gzhel-K în locul indicat", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Găsește și marchează al doilea microbuz galben cu un Marker MS2000 în Zona ULTRA", "5b478dca86f7744d190d91c2": "Găsește și marchează al treilea microbuz galben cu un Marker MS2000 în Zona Ultra", "5b478de086f7744d1c3533a1": "Supraviețuiește și extrage-te din locație", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Găsește al treilea recipient Chimic pe Litoral", "5b4c832686f77419603eb8f0": "Predă al doilea recipient", "5b4c836486f77417063a09dc": "Predă al treilea recipient", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Bun, la fix! Să sperăm că băieții mei au să-și revină, ce mai fond genetic își vor avea de la sânge, dar la dracu', oricum n-au de ales.", "5b47905886f7746807461fe2": "Predă respiratoarele", "5b4790a886f774563c7a489f": "Predă seturile de transfuzii", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Găsește în raid Respiratoare", "5ec1388d83b69d213d3c2ee0": "Găsește în raid Seturi Medicale de Transfuzie", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Instalează o cameră WI-FI îndreptată spre pontonul de la gater în Pădure", "5b47936686f77427fd044025": "Instalează o cameră WI-FI care să bată pe drumul spre Port în Vamă", "5b47938086f7747ccc057c22": "Instalează o cameră WI-FI care să supravegheze intrarea în Kiba Arms în Ultra", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Predă al treilea Controller", "5b4c7aec86f77459732b4b08": "Predă al doilea giroscop", "5b4c8e6586f77474396a5400": "Găsește al doilea Giroscop Mono-Axă cu Fibră Optică pe Litoral", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtain the first motor controller on Woods", "66d07de6c7ef9040fff0b789": "Hand over the first controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Ascunde lanțuri de aur sub saltea lângă BTR-82A în magazinul Generic din Ultra", "5b4796c086f7745877352c2c": "Ascunde lanțuri de aur în cuptorul cu microunde de la etajul 2 din căminul din Vamă", "5b47971086f774587877ad34": "Ascunde lanțuri de aur în baraca din mijloc de la gaterul din Pădure", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Elimină operatori PMC între orele 22:00 și 10:00 în Zona ULTRA", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "Deja te crezi Zaitsev la Stalingrad? Lunetistul e mulțumit de rezultat și are deja o idee pentru următoarea provocare.", "5bc850d186f7747213700892": "Elimină Scavi folosind o pușcă cu repetiție și doar cătările de metal la peste 40 de metri", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Nu-i rău deloc. Eu n-aș fi bun pentru așa ceva, sunt prea bătrân. Cât timp trăgeai, Lunetistul a pregătit următorul test.", "5bd983d886f7747ba73fc246": "Lovește orice țintă în picior de la peste 40 de metri folosind o pușcă cu repetiție", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Lovește orice țintă în cap de la peste 40 de metri folosind o pușcă cu repetiție", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Ai reacții rapide altfel n-ai fii în viață. Poftim pălăria, așa cum am promis! Hai, trăgătorule, la următorul test.", "5bc47e3e86f7741e6b2f3332": "Elimină operatori PMC folosind arme cu repetiție(zăvor) la o distanță mai mică de 25 de metri", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Pregătit? La treabă atunci. Lunetistul a întrebat de tine.", "5bc4813886f774226045cb9a": "Elimină operatori PMC folosind arme cu repetiție(zăvor) la o distanță mai mare de 80 de metri", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Elimină PMC folosind arme cu repetiție(zăvor) la o distanță de ce puțin 80 de metri", "657b0567ec71635f16471dd2": "Elimină operatori PMC folosind arme cu repetiție(zăvor) la o distanță mai mare de 80 de metri", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Treabă bună, buhă de noapte. Ai decimat Gunoierii nocturni.", "5bc84f7a86f774294c2f6862": "Elimină Scavi folosind o armă cu repetiție între orele 21:00 și 05:00 în Vamă", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "Nu sunt trucuri ”murdare” în arta trasului cu luneta. Treabă bună, băiete.", "5bc483ba86f77415034ba8d0": "Elimină Scavi Lunetiști folosind o armă cu repetiție", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "Inamicul este complet neajutorat atunci când nu știe de unde vine focul. Te-ai descurcat bine, trăgătorule.", "5bc485b586f774726473a858": "Elimină operatori PMC folosind arme cu repetiție(zăvor) și amortizor la o distanță mai mare de 45 de metri", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Asta nu-i muncă ușoară. Mai încearcă.", "5bc4893c86f774626f5ebf3e successMessageText": "Ca să fi inteligent nu-i destul doar să pari inteligent. Bun, o arma clasică cu zăvor ți-ar fi de folos aici. Lunetistul nu mai spune nimic, așa că hai să așteptăm. Te anunț daca ia legătura cu mine.", "5bc48aed86f77452c947ce67": "Elimină operatori PMC cu lovitură la cap folosind armă cu repetiție fără să mori", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "Nu ai voie să mori sau să părăsești raidul cât timp misiunea nu e predată clientului (Status: Decedat, Dezertat, DIA sau Retras)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Ascunde ceasul de aur Roler Submariner între gunoaie vis-a-vis de scări la ultimul etaj din cămin", "5c12320586f77437e44bcb15": "Ascunde stickul cu informații false între gunoaie vis-a-vis de scări la ultimul etaj din cămin", "5c1233ac86f77406fa13baea": "Nu elimina niciun Scav în Vamă până la terminarea misiunii", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Găsește stickul cu informații false în locul descris în Vamă", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "Te-ai descurcat bine, acum ai respectul meu! Am să mă gândesc la tine dacă voi avea ceva interesant de făcut.", "5c0bc95086f7746e784f39ec": "Elimină Scavi folosind puști de vânătoare calibrul 12 cu amortizor", "5c0bcc9c86f7746fe16dbba9": "Elimină operatori PMC folosind puști de vânătoare calibrul 12 cu amortizor", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Treabă bună, prietene! Întâlnirea a decurs în liniște, conform planului.", "5c1242fa86f7742aa04fed52": "Elimină operatori PMC între orele 21:00 și 06:00 (Exclus Uzină și Laborator)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "Deci, ce crezi? E o jucărie serioasă? Perfect, dă-o înapoi. Ținem legătura, s-ar putea să am nevoie de ajutorul tău ca să testez și alte arme.", "5c1b765d86f77413193fa4f2": "Elimină operatori PMC folosind arma M1A echipată cu amortizor Hybrid 46 și lunetă Schmidt & Bender PM II 1-8x24 la o distanță mai mare de 60 de metri", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "Poftim. Acum știu că n-o să o iei la fugă când apar problemele.", "5c0bdbb586f774166e38eed5": "Atinge nivelul de Rezistență la Stres necesar", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Elimină operatori PMC cu lovitură la cap folosind arme cu repetiție(zăvor) în Rezervă", "5c137ef386f7747ae10a821e": "Elimină operatori PMC folosind arme cu repetiție(zăvor) pe Litoral", "5c137f5286f7747ae267d8a3": "Elimină operatori PMC cu lovitură la cap folosind arme cu repetiție(zăvor) în Vamă", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Elimină operatori PMC cu lovitură la cap folosind arme cu repetiție(zăvor) în zona Farului.", "63aec6f256503c322a190374": "Elimină operatori PMC cu lovitură la cap folosind arme cu repetiție(zăvor) pe Străzile din Tarkov", "64b694c8a857ea477002a408": "Elimină operatori PMC cu lovitură la cap folosind arme cu repetiție(zăvor) în Zona ULTRA", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Un lunetist cu experiență nu se dă de gol așa. Odihnește-te și încearcă iar.", "5c0be13186f7746f016734aa successMessageText": "Sincer, nu eram sigur că o poți scoate la capăt. Dar aparent nu ești un plebeu ordinar.", "5c0be2b486f7747bcb347d58": "Atinge nivelul de Lunetist necesar", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Elimină operatori PMC folosind armă cu repetiție fără să mori", "64b67fcd3e349c7dbd06bd16": "Nu ai voie să mori sau să părăsești raidul cât timp misiunea este activă (Status: Decedat, Dezertat, DIA sau Retras)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "L-ai adus? Păi, pune-l cu totul acolo jos în colț. Cu grijă, echipamentul este foarte fragil. Chiar dacă toată chestia cu clinica pică, știu câțiva oameni care ar putea fi interesați de asta, dar asta rămâne între mine și tine. De ce am irosi un echipament atât de scump?", "5c0be66c86f7744523489ab2": "Înmânează Oftalmoscopul", "5c0be69086f7743c9c1ecf43": "Predă LEDX Transiluminare Vasculară", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Găsește Oftalmoscop în raid", "5fd8935b7dd32f724e0fe7ee": "Găsește LEDX Transiluminare Vasculară în raid", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "Sincer, nu am avut nici o îndoială că tu ești persoana în care pot să am încredere, nu numai la muncă.", "5c0d0dfd86f7747f482a89a5": "Atinge nivelul de Sănătate necesar", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Foarte bine, foarte bine! Clienții vor fi mulțumiți de munca ta, mercenare. Plata ta.", "5c138c4486f7743b056e2943": "Predă procesoarele", "5c138d4286f774276a6504aa": "Predă transmițătorul", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Găsește Procesor programabil Virtex în raid", "5ec13da983b69d213d3c2ee4": "Găsește Transmițător Militar COFDM în raid", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Bun, văd ca nu ți-ai amputat nimic cât ai făcut gălăgie. Vei fi util în treburile astea, luptător. Poftim plata, o meriți.", "5c1b760686f77412780211a3": "Elimină operatori PMC utilizând grenade de mâna", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Deja ai terminat? Știi, chiar a funcționat, modul în care liderii lor vorbesc s-a schimbat mult. Nu mă învinovăți, în lumea asta trebuie să negociezi chiar și cu un asemenea gunoi. Plata, mercenare.", "5c1b778286f774294438b536": "Elimină Scavi de la distanța sub 60 metri purtând echipamentul potrivit în Zona Ultra", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Elimină Scavi îmbrăcat în uniformă ONU (armura MF-UNTAR, cască UNTAR, armă M4A1) în Zona Ultra", "5c1b713f86f774719c22e8a0": "Elimină Scavi îmbrăcat în uniformă ONU (armura MF-UNTAR, cască UNTAR, armă M4A1) pe Litoral", "5c1fd66286f7743c7b261f7b": "Elimină Scavi îmbrăcat în uniformă ONU (armura MF-UNTAR, cască UNTAR, armă M4A1) în Pădure", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimină Scavi îmbrăcat în uniformă ONU (armura MF-UNTAR, cască UNTAR, armă M4A1) pe Străzile Tarkov", "65e08aa9f5879b2586d5fd4c": "Elimină Scavi îmbrăcat în uniformă ONU (armura MF-UNTAR, cască UNTAR, armă M4A1) în Epicentru", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Supraviețuiește și extrage-te din locația ”Litoral” cu calificativul ”Supraviețuit”", "5c13989886f7747878361a50": "Supraviețuiește și extrage-te din locația ”Uzină” cu calificativul ”Supraviețuit”", "5c1931e686f7747ce71bcbea": "Supraviețuiește și extrage-te din locația ”Laborator” cu calificativul ”Supraviețuit”", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Supraviețuiește și extrage-te din locația ”Rezervă” cu calificativul ”Supraviețuit”", "629f08e7d285f377953b2af1": "Supraviețuiește și extrage-te din locația ”Farul” cu calificativul ”Supraviețuit”", "63aec66556503c322a190372": "Supraviețuiește și extrage-te din locația ”Străzile” cu calificativul ”Supraviețuit”", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Găsește și marchează al doilea depozit de combustibil cu un Marker MS2000 în Pădure", "5c10f94386f774227172c576": "Găsește și marchează al treilea depozit de combustibil cu un Marker MS2000 în Pădure", "5c10f94386f774227172c577": "Supraviețuiește și extrage-te din locație", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Acum vorbim! Ia acum un pistol de lipit și mă apuc de treabă. Până termin poate se stabilizează și piața.", "5c1129ed86f7746569440e88": "Predă firele", "5c112a1b86f774656777d1ae": "Predă condensatoarele", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Găsește Grămadă de fire în raid", "5ca71a1e86f7740f5a5b88a2": "Găsește Condensatoare în raid", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "Așa da, acum sunt absolut sigur că te poți întoarce din raid cu bunătăți în rucsac. Bravo, frate!", "5c112dc486f77465686bff38": "Atinge nivelul de Căutare necesar", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Ai tot? Perfect. Chiar sunt curios ce-o să mai ceară data viitoare, o budă cu diamante? Auzi, daca chiar ne cere una, atunci vei căuta una. Mersi de ajutor, frate.", "5c11427386f77430ff393793": "Predă ceainicele", "5c122c5f86f77437e44bcb0e": "Predă vazele", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Găsește Ceainice Antice în raid", "5ca7258986f7740d424a2044": "Găsește Vaze Antice în raid", "62a700893e015d7ce1151d90": "Găsește figurine Axel în raid", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Am auzit că-n Vamă e al Treilea Război Mondial acum, BEAR și USEC crapă Scavi în stânga și-n dreapta! Mișto, treabă bună. Aici ai banii, cum am promis.", "5c1fa9c986f7740de474cb3d": "Elimină operatori PMC purtând echipamentul potrivit în Vamă", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Atinge nivelul 4 de loialitate cu Peacekeeper", "5c12489886f77452db1d2b05": "Atinge nivelul 4 de loialitate cu Prapor", "5c1248ef86f77428266184c2": "Atinge nivelul 4 de loialitate cu Doctorița", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Atinge nivelul 4 de loialitate cu Pădurarul", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "Le-ai adus, nu? Super! Lasă-mă să văd.", "5c139eb686f7747878361a72": "Predă cititorul", "5c139eb686f7747878361a73": "Predă modulul de stocare", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Găsește Cititor UHF RFID în raid", "5ec14080c9ffe55cca300867": "Găsește Modul Stocare Flash VPX în raid", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Salut, mercenare. Te-am urmărit cu interes pentru o bună perioadă de timp, și știu că poți să duci la bun sfârșit orice sarcină. Nu te umfla în pene, nu ești singurul care știe să urmeze ordinele. Mai sunt și alți luptători ca tine, unii poate mai competenți. Dar vreau să-ți ofer o misiune, să-ți dau șansa de a face parte din ceva mai mare decât iți poți imagina. Dacă ești pregătit, asta e sarcina ta: oamenii mei lucreză peste tot în Tarkov și lasă adesea suveniruri în urma lor. Misiunea ta este să găsești acele suveniruri și să mi le aduci. Nu mă interesează cum. Acele lucruri sunt extrem de rare. Mai trebuie să-ți reamintesc că vreau să le obții singur, fără ajutor? Crede-mă, știu mai bine decât oricine când cineva minte. Vei afla mai târziu unde trebuie lăsate. Încă ceva, partenerii mei și-au demonstrat demult abilitățile și s-au dovedit de încredere, dacă vrei să fii unul din ei, atunci dovedește că ești la același nivel. Nu încerca să mă contactezi, o voi face eu la momentul potrivit.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Ai totul? Bine, mercenare. Premiul tău câștigat cu greu te așteaptă. așa cum am promis. Felicitări, și bine-ai venit.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Predă Carte veche și uzată", "5c51bf8786f77416a11e5cb2": "Predă ulei de armă #FireKlean", "5c51bf9a86f77478bf5632aa": "Predă Cocoș de aur", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Predă Conservă de Șprot", "5c51c24c86f77416a11e5cb7": "Predă Mustaţă falsă", "5c51c25c86f77478bf5632af": "Predă Fes Kotton", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Predă Amnar Vechi", "5c52da5886f7747364267a14": "Predă Topor Antic", "5cb5ddd386f7746ef72a7e73": "Găsește un Amnar Vechi în raid", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Găsește Conservă de șprot în raid", "5cb5df7186f7747d215eca08": "Găsește mustață falsă în raid", "5cb5df8486f7746ef82c17ea": "Găsește fes Kotton în raid", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Găsește figurină Corb în raid", "5ec7998dc1683c0db84484e7": "Predă figurina Corb", "5ec79aaac1683c0db84484e8": "Găsește mască Doctor de ciumă Pestily în raid", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Predă Portofel WZ", "60d0748820a6283a506aebb1": "Găsește otravă de șobolani LVNDMARK în raid", "60d074ef401d874962160aee": "Predă otravă de șobolani LVNDMARK", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Găsește cagulă Smoke in raid", "60e827faf09904268a4dbc40": "Predă cagula Smoke", "62a6ff004de19a4c3422ea5d": "Predă articol găsit în raid: Cheie transpalet Missam", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Ai găsit biletul? Bravo. Eu zic că meriți să intri în contact cu Pădurarul. Are mult de muncă pentru tine.", "5d249a6e86f774791546e952": "Găsește mesajul criptic al Pădurarului", "5d249aa286f77475e8376399": "Predă mesajul", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Găsește tabăra Pădurarului în locul descris din Pădure", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Predă rații Iskra găsite în raid", "5d24bb4886f77439c92d6bad": "Predă pachete de supă instantă găsite în raid", "5d24bb7286f7741f7956be74": "Predă Conserve de Vită (Mari) găsite în raid", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Cum zicea cineva faimos ”Plutește ca fluturele, înțeapă ca albina”. E un sfat bun, ține-l minte. Ce zici, e mai ușor să te miști fără plăci blindate pe tine? Dacă te miști destul de repede, nu mai ai nevoie de armură ca să bați nemernici.", "5d25af3c86f77443ff46b9e7": "Elimină Scavi fără să folosești echipament de protecție de nici un fel în Pădure", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Ascunde o sticlă de apă(0.6L) în buncărul ZB1016 din Pădure", "5d2deedc86f77459121c3118": "Ascunde o rație Iskra în buncărul ZB-014 din Pădure", "5d2defc586f774591510e6b9": "Ascunde o sticlă de apă(0.6L) în buncărul ZB-014 din Pădure", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "Nu cred c-ai rezistat atât! Impresionant. Poftim, bea asta, hidratează-te.", "5d25c5a186f77443fe457661": "Petrece 5 minute în stare completă de deshidratare(Exclus Uzină)", "5d9f035086f7741cac4a9713": "Supraviețuiește și extrage-te din locație", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Ai reușit? Foarte bine. Dacă o ținem tot așa s-ar putea să începem să avem grijă de oraș mult mai devreme decât era planificat.", "5d25c8c986f77443e47ad47a": "Elimină Scavi în timp ce ești afectat de durere", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Succes? Bravo! Sudoarea salvează sângele! Nu fii prea entuziasmat, mai am treabă cu tine.", "5d25d09286f77444001e284c": "Elimină Scavi într-un singur raid fără să folosești tratamente în Pădure", "5d25d0d186f7740a22515975": "Nu ai voie să folosești nici un fel de tratament până când termini misiunea", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "Te descurci cu tremuratul? Perfect! Să fiu sincer, nu credeam că vei reuși, e foarte greu să faci asta.", "5d25d4e786f77442734d335d": "Suferind de tremor elimină operatori PMC cu lovituri la cap", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Ai supraviețuit? Nu m-aș fi gândit.", "5d25dc2286f77443e7549028": "Suferind de orbire elimină operatori PMC", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "Câți crezi că sunt, șase? I-ai eliminat fără un \"dispozitiv\"? Într-adevăr, ești vânător de noapte, băiete.", "5d25fd8386f77443fe457cae": "Elimină Scavi între orele 21:00 și 04:00 fără să folosești vedere pe timp de noapte sau optică termală (Exclus Uzină)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "Cum spun instructorii? Ce e dificil în antrenament va deveni ușor într-o luptă. Această abilitate va fi utilă, ai încredere în mine. Ești gata să devii un vânător.", "5d2605ef86f77469ef0f7622": "Atinge nivelul de Vitalitate necesar", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Treabă bună! Vor veni cu siguranță și alții, sunt destui nemernici în Tarkov, dar măcar o să se gândească de două ori înainte să distrugă locul.", "5d26143c86f77469ef0f894c": "Elimină operatori PMC în birourile din Uzină (oricare etaj)", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Găsește și elimină-l pe Reshala", "5d2710e686f7742e9019a6b2": "Predă pistolul Auriu TT Reshala", "5d66741c86f7744a2e70f039": "Găsește pistolul Auriu TT Reshala în raid", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "Au ales de bunăvoie calea cea rea. Ai îndreptat puțin lucrurile, vânătorule, mulțumesc.", "5d2701b586f77469f1599fe2": "Elimină Scavi oriunde pe teritoriul Tarkov", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Ai învățat lecția? Bun. Ai văzut că îți poți dezarma inamicul în mai multe feluri.", "5d307fc886f77447f15f5b23": "Elimină operatori PMC orbiți", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Găsește și elimină-l pe Killa", "5d271a3486f774483c7bdb12": "Predă casca lui Killa", "5d667a8e86f774131e206b46": "Găsește casca blindată Maska-1SCh Killa în raid", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Găsește și elimină-l pe Shturman", "5d272a0b86f7745ba2701532": "Predă cheia de la cufărul lui Shturman", "5d2f464e498f71c8886f7656": "Găsește cheia de la cufărul lui Shturman în raid", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Ai apărat onoarea uniformei? Bine atunci. Dă-i dracului, nu e nimic mai grav decât cineva care depus jurământul și a trecut la fărădelegi.", "5d272bd386f77446085fa4f9": "Elimină Scavi îmbrăcați în uniformă de poliție (Gărzile lui Reshala)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "Am auzit ce-ai făcut. Se pare ca e mai liniște acum. Mult mai puțini jefuitori. Ai mulțumirile mele.", "5d2733c586f7741dea4f3072": "Elimină operatori PMC în zona căminelor din Vamă", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Bine-ai revenit, vânător. Ai rezolvat bandiții? Nici nu-mi pot imagina cât de greu ți-a fost, bună treabă.", "5d27369586f774457411b264": "Găsește și elimină-l pe Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Deci au baze lângă laboratoare și instalații militare... Sper că nu mai încep un război, pe lângă cel care-l purtăm deja. Bine, băiete, o lăsăm pe altă dată.", "5d273a4d86f774457411b266": "Elimină Prădători", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Ai găsit? Bun. Am speranța că nu voi mai vedea oameni murind neajutorați.", "5d27446f86f77475a86565a3": "Predă defibrilatorul", "5d7782c686f7742fa732bf07": "Predă trusele CMS", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Găsește Defibrilator portabil în raid", "5ec1538a92e95f77ac7a2529": "Găsește truse chirurgicale CMS în raid", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Găsește casa primarului în satul abandonat de pe Litoral", "5d357b9586f7745b422d653f": "Găsește casa pescarului în satul abandonat de pe Litoral", "5d357bb786f774588d4d7e27": "Găsește casa preotului în satul abandonat de pe Litoral", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Supraviețuiește și extrage-te din locația ”Litoral” cu calificativul ”Supraviețuit”", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Le ai? Bun, hai să vedem ce are în plan. Vino mai târziu, le voi verifica împreună cu Mecanicul, iar apoi îți arătăm și ție.", "5d27491686f77475aa5cf5b9": "Predă Stickurile Criptate", "5d6949e786f774238a38d9e0": "Găsește în raid USB-uri Criptate", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Predă albumul cu poze", "5d357e0e86f7745b3f307c56": "Găsește camera Pădurarului cu vedere la mare în Stațiunea Balneară de pe Litoral", "5d357e8786f7745b5e66a51a": "Găsește albumul foto al Vânătorului", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "Le-ai găsit? Treabă bună, băiete. Acum trebuie să găsim intrarea în laboratorul ăsta. Lasă, mă ocup eu de asta, nu te îngrijora.", "5d2f375186f7745916404955": "Găsește carduri de acces TerraGroup Labs în raid", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Predă cardurile de acces", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Hai înăuntru. Vrei niște ceai? Bine, oricum. Ascultă cum stă treaba. În curând o să vina niște prieteni la mine. Vreau să merg la vânătoare cu ei, dar nu-i pot scoate la vânătoare cu niște puști MP. Vreau sa ne faci rost de niște puști bune din occident, să ai grijă să le reglezi tirul înainte. Am și ținta de antrenament perfectă, îl cheamă Shturman. Deci, ai de verificat arma mea (Remington M700 cu lunetă FullField TAC30 1-4x24). Ia o poziție la distanță și lovește-l precis în cap. Nu-ți face griji de recompensă, nu te voi dezamăgi.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Minunate puștile astea! Bună treabă! Știi, cred că mă apuc și eu să învăț meseria de armurier, chiar îmi place. Ca și plată, uita-te la ce mărunțișuri am găsit, vei avea nevoie de ele.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Elimină-l pe Shturman cu lovitură la cap folosind o pușcă cu lunetă M700 cu luneta cerută la peste 75 de metri", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Ia uite pe cine avem aici! Salut! Știi ceva de o bază militară în apropiere de Sanatoriu? Poate ai fost acolo. Am niște noutăți. Se spune că depozitele abandonate au multe provizii în ele, iar bandiții au început să cotrobăie acolo, par să fie mai bine echipați decât Scavii. Vreau să verifici ce-a rămas acolo în depozite. Ai grijă, sunt foarte periculoși bandiții ce cotrobăie acolo.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Deja golesc totul? Am înțeles, trebuie să ne mișcăm rapid.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Găsește stocul de provizii din Rezervă", "629f1259422dff20ff234b4d": "Supraviețuiește și extrage-te din locație", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Predă bateria militară", "5d4c020a86f77449c463ced6": "Găsește obuze OFZ 30x165mm în raid", "5d4c028c86f774389001e027": "Predă obuzele OFZ", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "Deci, te-ai decis? Doar două injecții. Aici și aici. Stai liniștit cel puțin câteva zile, te mai relaxezi, și să iei vitamine.", "5d6fb8a886f77449db3db8b6": "Înmânează RUB", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Am înțeles că ai început pregătirea. Bun, cu abilitățile tale vei prinde repede.", "5d6fbf0f86f77449d97f738e": "Înmânează EUR", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Ai reușit? Treabă bună! Stai puțin, trebuie să marchez măsurătorile și să-mi dau seama ce tehnică de cusut trebuie să folosesc. Dar trebuie să știi și tu, materialul e scump în zilele astea, iar prețul va fi pe măsura! Totuși e în trei dungi, cel mai tare stil, știi tu.", "5dc53fd386f77469c87589a3": "Găsește și elimină-l pe Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Predă țesăturile", "5e38356d86f7742993306cac": "Predă țesăturile", "5e3835e886f77429910d4465": "Predă Paracordurile", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Predă țesăturile", "5e383a6386f77465910ce1f8": "Găsește Paracord în raid", "5e383a6386f77465910ce1f9": "Predă Paracordurile", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Predă țesăturile", "5e4d4ac186f774264f75833b": "Găsește KEKTAPE bandă adezivă în raid", "5e4d4ac186f774264f75833c": "Predă banda adezivă", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Predă țesăturile", "5e4d515e86f77438b2195249": "Găsește KEKTAPE bandă adezivă în raid", "5e4d515e86f77438b219524a": "Predă banda adezivă", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Salut, ai ajuns la fix. Cred că ai auzit de noul Doctor din zona? Am auzit că nu-i un binevoitor, ajută pe unii și-i chinuie pe alții. Se pare că vinde medicamente și face operații pe stradă. I se spune Sanitar, îți vine să crezi? S-a stabilit undeva pe Litoral și în mod ciudat toți nemernicii din zonă îl plac. Mă gândesc ca e evident de ce: îi bandajează, le vinde droguri și îi învață primul ajutor. Asta îmi spune că are un stoc solid. Vezi ce descoperi despre Sanitar ăsta, în liniște. Pe moment, află pe unde stă. Faci vânzări și operații prin aceleași locuri. Te interesează?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "Așadar, are un stoc mare? Sună de parcă a găsit un depozit medical plin și acum vinde tot ce-i înăuntru. Dacă aș pune eu mâna pe depozitul ăla...mda, nu e problema ta. Momentan.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Marchează primul punct de vânzare cu un Marker MS2000 pe Litoral", "5eda1da9a58a4c49c74165ee": "Marchează al doilea punct de vânzare cu un Marker MS2000 pe Litoral", "5eda1dd3317f6066993c1744": "Marchează al treilea punct de vânzare cu un Marker MS2000 pe Litoral", "5f0389268580cc37797e0026": "Supraviețuiește și extrage-te din locație", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "Deci ai crezut-o pe femeie? Nu te prinzi că te minte pentru câștigul ei? Crezi că dacă Sanitar tratează niște oameni, nu-i omoară pe alții? Ai înnebunit și tu cu războiul tău, nu mai distingi între alb și negru. Pleacă, vreau să rămân singur.", "5edab4b1218d181e29451435 successMessageText": "Ai făcut alegerea corectă. Oricine ar zice că Sanitar a făcut fapte bune, amintește-le că a făcut mai mult rău. Să nu crezi minciunile oamenilor. Am mai cunoscut eu oameni ca și Sanitar: odată ce ia iei razna, nu mai are cale de întoarcere. Poți doar să-i dai glonț ca unui câine turbat.", "5edab5a6cecc0069284c0ec2": "Găsește și elimină-l pe Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Găsește grupul trimis la Sanatoriul de pe Litoral", "5edab8890880da21347b3826": "Găsește grupul trimis la pontonul de pe Litoral", "5edab8e216d985118871ba18": "Găsește grupul trimis la vilele de pe Litoral", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Supraviețuiește și extrage-te din locație", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "Pierderea oamenilor mei pe Litoral e un eveniment nefericit, dar avem nevoie de o sursă nouă de medicamente. Avem nevoie de altă abordare în cazul acesta. Asistentul meu a reușit să mituiască un localnic de pe Litoral să ne spună mai multe despre Sanitar, medicul pe care-l căutam. Are o forță de protecție mică, câteva locuri frecventate pe Litoral, și am înteles că face operații pe stradă și apoi iși ascunde trusele în clădirile din zonă. Adu-mi trusa și uneltele lui. Sanitarul va fi mult mai cooperant dacă realizează că-l pot opri oricând din muncă și să-i ocup teritoriul.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Ai adus trusele? Lasă-le în cutia aceea, va trebui să le dezinfectez bine, nu e clar pe unde au fost. Poți vedea clar că e într-o situație dificilă, totul e acoperit cu sânge, condiții insalubre. Asta e treaba mea deja. Am să-i ofer lui Sanitar trusele înapoi împreună cu scrisoarea cu ajutorul unui localnic mituit, ca să înțeleagă de unde sunt.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Găsește trusa chirurgicală cu simbol albastru a lui Sanitar pe Litoral", "5edabb950c502106f869bc04": "Predă trusa chirurgicală a lui Sanitar", "5edabbff0880da21347b382b": "Găsește oftalmoscopul Sanitarului pe Litoral", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hei tu, durule! Hai-ncoa, am o treabă cu tine. Am auzit că Prapor te-a trimis să faci rost de droguri de la ceva Sanitar. Nu fă fața aia! Mă doare în pulă de drogurile alea, dă-i-le să și le bage în cur, te-a plătit deja, nu? Vreau să pui chestiile astea cu semnal în toate cutiile Sanitarului. Prapor n-o să știe nimic, e treabă de două minute și te plătesc. Fă-o repede înainte să le mute.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Frumos, frumos! În sfârșit o să-i găsesc ascunzătorile lui Prapor, probabil că are un munte de bunătățuri. Arme, muniție, mâncare, droguri. Blană! Continuăm fără tine, fără supărare. Mersi.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Supraviețuiește și extrage-te din locație", "5f071a9727cec53d5d24fe3b": "Marchează cutia de medicamente de la Sanatoriu cu un Marker MS2000 pe Litoral", "5f071ae396d1ae55e476abc4": "Marchează cutia de medicamente de la vile cu un Marker MS2000 pe Litoral", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Tinere, așteaptă. Știu că Pădurarul ți-a cerut să-l elimini pe Sanitar, dar nu trebuie să o faci. Înțeleg punctul de vedere al Pădurarului, că Sanitarul e doar un monstru în carne și oase, dar nu este așa. Sunt sigură ca Sanitar doar vrea să ajute oamenii. În circumstanțele actuale, el face cele mai complexe operații și nu-i de mirare că unele se termină prost. E doctor și experiența lui poate salva foarte multe vieți. Iar pentru noi, un doctor cu acces la un depozit de medicamente e extrem de important. Deja au început negocierile între noi și va începe în curând să coopereze. Dar pentru asta, am nevoie de ceva de interes pnetru el, ceva legat de Laborator. Carduri de acces și mostre de stimulente militare, de astea are nevoie pentru experimente. Poți să găsești câteva pentru mine? Cardurile de acces pot proveni de oriunde, dar stimulentele să fie sigilate, deci găsite de tine.", "5edac34d0bb72a50635c2bfa failMessageText": "Mare păcat că l-ai ascultat pe Pădurar în loc să asculți vocea rațiunii. Sanitar cu experiența și medicamentele lui ne putea ajuta în multe feluri. Nu era un sfânt, dar sigur merita o șansă să își îndrepte păcatele ca oricine, dar tu i-ai luat șansa asta. Sunt foarte nemulțumită de tine.", "5edac34d0bb72a50635c2bfa successMessageText": "Mulțumesc. Știam că vei înțelege cât de importante sunt Sanitarul și... medicamentele lui. A fost extrem de interesat de carduri și stimulente așa că a trimis deja primul lot de bunuri. Poftim, partea ta.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Nu-l ucide pe Sanitar", "5f04935cde3b9e0ecf03d864": "Predă cardurile", "5f04944b69ef785df740a8c9": "Predă cardul", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Bună ziua, mercenare. Ziua asta e chiar bună. Am avut dreptate, noile stimulente au legătură cu TerraGroup. Mecanicul a găsit informații despre Sanitar. Nu prea multe și a fost foarte scump, dar totuși e ceva. Sanitar a lucrat la TerraGroup dar nu era un muncitor ordinar. A terminat medicina, specializarea boli infecțioase, divorțat... De fapt, doar atât știm despre el. E rândul tău să sapi, dă-mi ceva mai mult, prietene, sunt foarte interesată de unde are asemenea resurse. Găsește-i locul de muncă și află mai multe.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Am spart criptarea stickului. E multă informație importantă acolo, dar nu-ți pot spune nimic. E secret. Pot să-ți spun despre Sanitar totuși, e om de știință. A studiat și dezvoltat medicamente, iar apoi le-a testat pe oameni. Foarte... curajos, sau cum se spune în alte locuri, cercetare ne-etică.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Predă Stickul însemnat cu bandă albastră", "5eec9d054110547f1f545c99": "Găsește biroul lui Sanitar în Laborator", "5eff5674befb6436ce3bbaf7": "Găsi informații despre munca lui Sanitar", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Salutări, luptătorule. Uite cum stă treaba, o păsărică mi-a ciripit că niște foști militari din Rezervă au ocupat baza și au săpat un tunel către buncărul principal. Normal că nu ei, au forțat niște Scavi să sape, și apoi mai mult ca siguri i-au executat. Oricum, n-am nici o idee despre ce fel de buncăr e. Am avut niște informații că ar putea fi buncărul de comandă. Dar nu-s sigur dacă e buncăr adevărat sau doar o cameră de protecție anti-aeriană pentru personal. Pe moment, nu aș trimite un grup mai mare acolo doar ca să fie omorâți de Prădători. Verifică tunelurile și anunț-mă dacă merită să trimit un grup acolo. Pe bani. Te bagi?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "Deci e un buncăr de comanda? Zvonurile nu mint... Doamne ferește! Am să trimit niște oameni acolo azi, să verifice și ei. Sigur e plin de chestii valoroase acolo! Oricum, poftim plata, așa cum am promis.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Supraviețuiește și extrage-te din locație", "5ee8eea538ca5b3b4f3c4647": "Găsește buncărul subteran din Rezervă", "5ee8eecc0b4ef7326256c660": "Găsește punctul de comandă din buncărul subteran din Rezervă", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Salut, mercenare, ai venit la momentul potrivit, ești fix omul de care am nevoie. Îți amintești de căcatul ăla de buncăr pe care l-ai găsit sub baza Rezervei? Pe scurt, mi-am trimis băieții acolo și, s-a dovedit a fi un loc împuțit. Construit cu nivel ridicat de protecții: filtre, generatoare, uși ermetice la toate intrările, e o fortăreață subternă. Dar Prădătorii au reușit să-l deschidă și s-au înfipt ca căpușele. Băieții mei și-au luat-o grav, mai puțin de jumate s-au întors. Problema e că acum sunt și mai curios, mama dracului. Ai mei nu mai vor să intre acolo, decât dacă le găsești o cale sigură... Ai multă experiență, vreau să mergi în liniște și să verifici toate intrările. Băieții mi-au zis că toate sunt cu uși ermetice. Cercetează toate căile de intrare.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Bine-ai revenit, te ascult. Aha, deci așa stă treaba... Ușa e chiar acolo, corect? Desenează direct pe hartă, nu-ți face griji. Deci buncărul ăsta accesează toate instalațiile din bază? Futui, ce mișto, poți trece prin bază pe sub nasul tuturor. Acum e clar de ce Prădătorii sunt acolo, poți controla toată baza din subsol. Mulțumesc, războinic! Poftim recompensa.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Supraviețuiește și extrage-te din locație", "5ee8ec5ed72d953f5d2aabd1": "Găsește ușa ermetică ce dă în spital (Nebunul Alb)", "5ee8ecd75eb3205dae135d17": "Găsește una dintre ușile ermetice care dau în academie(Nebunul Negru)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "Deci acolo e, la parter? De câte ori au trecut oamenii mei pe-acolo și n-au găsit nimic. Ai reușit să intri în camera? Era ceva interesant înăuntru? Oricum, nu contează, îi trimit pe băieți să verifice oricum. Poftim răsplata, o meriți. Mulțumesc.", "5f0488c590eea473df674002": "Găsește biroul lui Sanitar în Sanatoriu", "5f04983ffbed7a08077b4367": "Supraviețuiește și extrage-te din locație", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Salutări, războinic. Am o treabă pentru tine. Pe scurt, am pierdut legătura cu unul dintre grupurile mele, a trecut ceva timp deja. Când a început nebunia, i-am trimis în Pădure să ridice o încărcătură. Mi-e teamă că au fost prinși în ambuscadă, ultima oară au raportat ca se apropie USEC dinspre dealuri. Investighează, vezi dacă sunt supraviețuitori. Convoiul era format dintr-un BRDM, o dubă Bukhanka și ceva camion, nu mai știu modelul. Cred că USEC au o bază în zona așa că fii atent. Găsește convoiul și baza USEC, daca e acolo. Liber.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Deci ai mei au murit iar transportul a fost jefuit... Plus o bază USEC în apropiere? Nasol, încărcătura era foarte importanta. Oricum, ți-ai făcut datoria, poftim răsplata. Poți pleca.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Găsește convoiul lui Prapor dispărut în Pădure", "5fd9fad9c1ce6b1a3b486d05": "Găsește baza temporară USEC", "5fd9fad9c1ce6b1a3b486d0d": "Supraviețuiește și extrage-te din locație", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "Toată Pădurea a tremurat de la bătălia strașnică. Nemernicii au primit cu vârf și îndesat tot ce-au meritat. Poftim, recompensa potrivită, nu te rușina, poți să cumperi și armele noi.", "600303250b79c6604058ce30": "Găsește și elimină-l pe Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Găsește și verifică al doilea LAV III la Rezervă", "608925d455f4ac386d7e7fc4": "Marchează primul LAV III cu un Marker MS2000", "608930aa1124f748c94b801e": "Găsește și verifică tancul T-90 la Rezervă", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Bun, bun, bun! Ia banii! Te rog să nu spui nimanui de treaba asta.", "60929ad46342771d851b827a": "Găsește pachetul cu panul de control al comandatului de T-90M pe Rezervă", "60929afc35915c62b44fd05c": "Predă pachetul", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Găsește Documente Militare #3 în buncărul de comandă din Rezervă", "60ae0f0586046842a754e21e": "Predă al doilea set de documente", "60ae0f17b809a4748759078c": "Predă al treilea set de documente", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Treabă bună. Sper că au înțeles că nu pot să-mi omoare oamenii fără consecințe. Poftim plata.", "608bffeee0cc9c2d4d2ccb29": "Elimină Prădători în buncărul principal din Rezervă", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Predă prima fișă", "60ae12ffb809a474875907aa": "Găsește Fișa Medicală #2 pe Rezervă", "60ae134cabb9675f0062cf6e": "Predă a doua fișă", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "Deci așa arată! Perfect. Mulțumesc, am să-l studiez mai târziu. Plata, așa cum am promis.", "6092942fb0f07c6ea1246e3a": "Găsește Sistem de Navigație Integrat MBT pe Rezervă", "6092947635915c62b44fd05b": "Predă Sistemul de Navigație", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "Ușa funcționează? Excelent. Încă îți pregătesc răsplata, spune-mi mai multe despre mecanismul de deschidere a ușii de la buncăr.", "608a94101a66564e74191fc3": "Găsește ieșirea secretă dezactivată în Rezervă", "608a94ae1a66564e74191fc6": "Extrage-te prin acea ieșire", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Perfect, ai mei s-au întors din raid bine sănătoși, nici măcar o zgârietură nu au. Poftim plata!", "608ab22755f4ac386d7e7fdc": "Elimină Scavi în zona depozitelor subterane din Rezervă", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Verifică al doilea arsenal din cazarma sudică (Pionul Alb) din Rezervă", "608bd2465e0ef91ab810f98a": "Verifică camera de gardă din cazarma estică (Pionul Negru) din Rezervă", "608c187853b9dd01a116f480": "Supraviețuiește și extrage-te din locație", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Supraviețuiește și extrage-te din locație", "60a4dc7e4e734e57d07fb335": "Marchează primul set de cisterne cu un Marker MS2000 pe Rezervă", "60b90232ec7c6f5eb510c195": "Marchează al doilea set de cisterne cu un Marker MS2000 pe Rezervă", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Ai terminat? Parcă și aerul e mai curat acum. E păcat că n-ai putut să-i convingi prin alte mijloace.", "608a8356fa70fc097863b8f8": "Elimină Scavi în zona cazarmelor din Rezervă", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Ce veste bună. Lumea e mai curată. Sper că n-ai fost lovit cu barosul de bastard?", "60c0d187938d68438757cda2": "Găsește și elimină-l pe Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Găsește chipiul Tagilla BOSS în raid", "60cfa5a85f9e6175514de2e3": "Predă chipiul BOSS", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Elimină operatori PMC în Zona ULTRA", "60ec0b1871035f300c301acd": "Elimină operatori PMC în Laborator", "60ec2b04bc9a8b34cd453b81": "Nu ai voie să mori sau să părăsești raidul cât timp misiunea este activă (Status: Decedat, Dezertat, DIA sau Retras)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Elimină operatori PMC în Epicentru", "65e19abadf39d26751b3bb1e": "Elimină operatori PMC în Epicentru", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Elimină operatori PMC în baza Scavilor din Vamă", "60ec1e72d7b7cb55e94c1764": "Elimină operatori PMC în baza Scavilor din Pădure", "60ec2229fd1bf4491c4e4552": "Elimină operatori PMC în Sanatoriul de pe Litoral", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Poftim, mult mai bine. Mulțumesc. Oamenii îmi spun că treburile s-au calmat, se pare ca dobitocii au prins ideea.", "60e8650e5d67b234af3d3926": "Elimină Scavi cu lovituri la cap", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "A dracului... Le-ai găsit pe toate singur? Ai coaie, asta e clar. Ceva nu-i în regulă cu psihopații ăștia, îți zic eu...", "60e82c12fd1bf4491c4e4547": "Găsește cuțite neobișnuite în raid", "60e82c5926b88043510e0ad7": "Predă cuțitele", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Predă LEDX", "60f028ca86abc00cdc03ab89": "Găsește Grămadă de medicamente în raid", "60f028f85caf08029e0d6277": "Predă Gramadă cu medicamente", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Găsește Cutii Multivitamine OLOLO în raid", "62a70168eb3cb46d9a0bba7a": "Predă multivitaminele", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Minunat, mercenare. Acum va fi mult mai ușor pentru oamenii mei să opereze în locație! Mulțumesc pentru efort.", "60e745d6479eef59b01b0bdc": "Elimină Prădători pe Rezervă", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Super, super! Clienții deja au plă... mulțumit pentru misiunea îndeplinită. Bună treabă, mercenare.", "60e8174d0367e10a450f7818": "Găsește în raid și predă plăcuțe PMC BEAR de nivel 50+", "60e81795479eef59b01b0bdf": "Găsește în raid și predă plăcuțe PMC USEC de nivel 50+", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Găsește Transmițătoare Militare COFDM în raid", "60e7449875131b4e61703b7e": "Predă procesoarele Virtex", "60e744c9d1a062318d3d2262": "Predă transmițătoarele", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Găsește USB-uri Militare în raid", "62a7019ea9a0ea77981b57da": "Predă USB-urile Militare", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Perfect, fix de asta aveam nevoie, dă-mi carnețelul. Mulțumesc, mercenare.", "60e740b8b567ff641b129573": "Elimină operatori PMC la distanțe mai mari de 100 metrii", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Super, mulțumesc mult, prietene. Clientul a primit pachetul. Nu cred că va fi ultima lui comandă, așa că voi conta pe tine în viitor.", "60e84ba726b88043510e0ad8": "Ascunde un vizor Trijicon REAP-IR sub macaraua galbenă din șantierul din Vamă", "60e85b2a26b88043510e0ada": "Ascunde un vizor Trijicon REAP-IR în spatele ghenelor de la benzinăria din Vamă", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respect, frate, m-ai ajutat foarte mult! Dacă vezi ceva periculoși prin Ultra, să mă anunți. Poate ne mai ocupăm o dată de ei.", "60e73ee8b567ff641b129570": "Elimină operatori PMC în interiorul mallului ULTRA", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Predă sticlele de whiskey", "60f028268b669d08a35bfad8": "Găsește Bidoane cu apă purificată în raid", "60f0284e8b669d08a35bfada": "Predă super-apa", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Găsește sticle de bere Pevko Light în raid", "62a70110eb3cb46d9a0bba78": "Predă berea", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Găsește și elimină-l pe Shturman", "60e7261eb567ff641b129557": "Găsește și elimină-l pe Glukhar", "60e72629465ea8368012cc47": "Găsește și elimină-l pe Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Aici ești, cel rapid. Ai mulțumit un bătrânel, și poate ai învățat încă ceva, sper. Tu însuți ești arma și monolitul, nu blindajul pe care-l porți.", "60e729cf5698ee7b0505743c": "Elimină operatori PMC fără nici un fel de protecție pe corp sau cască pe cap în Pădure", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "O decizie curajoasă, mercenare.", "60effdac12fec20321367038": "Predă caseta de valori Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Ascultă, frate, mă poți ajuta să găsesc informații despre un tip? E deja plecat din oraș. De ce nu pot eu? Pentru că-l cheamă pe prost Ivan Ivanon. Nu glumesc, pe bune. Sunt cel puțin două sute de mii cu numele ăsta prin țară. Dacă i-aș ști adresa de domiciliu din Tarkov, atunci aș putea să-l caut în baza de date. Îți spun ce știu momentan despre tip. Era patron de bar, așa. Nu știu cum se numește barul... Ascultă, nu cred că vei putea afla nici tu care bar e. Dar, tipul era iubitor de balet. Nu glumesc. Mergea la Mariinsky în fiecare stagiune. A încercat să găzduiască ceva la teatrul local, dar lumea nu era înnebunită după fete în tutu. Ceva mai specific? Frate, sunt specific, în pula mea! Te cred, folosește-ți intuiția.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Ai găsit barul și adresa tipului? Poftim, scrie-le aici. Ești mai bun decât clarvăzătorii ăia de la TV ce caută oameni dispăruți. Vrei sa te faci detectiv când scăpăm de-aici, frate? Te rezolv eu cu pălăria lui Poirot, pe cuvânt.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Găsește apartamentul instructorului de balet pe Străzi", "63a7daae04d3dc28a52a2109": "Supraviețuiește și extrage-te din locație", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Vino-ncoace, dragul meu angajat. E liniște în oraș? Am dat dispărute niște echipe de-ale mele. La început m-am gândit, cine e așa de prost ca să îmi pună mie bețe în roate? Doar ca să mă ia la mișto sau ceva. Am crezut că e un prostănac de la Far, dar apoi am primit un mesaj de la Seva Shket. Mi-a scris că sunt ținuți în ceva inchisoare privată. Ai auzit de așa ceva? E ascunsă undeva în vechile blocuri de apartamente. Bogații iți bagă acolo rivalii ca să-i țină inchiși și să nu le facă probleme. Eu sincer i-aș omorî, nu m-aș complica așa. Totuși cineva depunde efortul să-i inchidă în loc să-i lichideze... Uite cum stă treaba: Shket a fost singurul care a scăpat, dar acum se ascunde, nu a luat legătura de când a trimis mesajul. Nici nu ne-a zis unde-mi găsesc oamenii, șobolanul pulii. E clar că e vina lor că s-au lăsat prinși ca pizdele, și oricum îi trimit în pizda mă-sii pentru tâmpenia asta. Dar tot mă deranjeaza că cineva vrea să mă fută în cur. Destul. Găsește-mi băieții.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Mama dracului. De ce i-ar ține cineva acolo? Aș înțelege dacă mi-ar fi trimis o scrisoare de amenințare că-i omoară dacă nu plătesc sau ceva câcat. Un criminal în serie? Oricum, să mai treci pe-aici, aflăm noi ce se întâmplă.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Supraviețuiește și extrage-te din locație", "63a7d767f32fa1316250c3da": "Găsește unde a fost ținut ostatic grupul dispărut pe Străzi", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "Iar aceeași poveste, o înregistrare nouă, acum cu un simbol straniu. Ce naiba se întâmplă? Sunt sacrificii umane. Cui? De ce? Atât de multe întrebări și nici un răspuns. Credeam că le-am văzut pe toate, dar în fiecare zi mi se demonstrează contrariul. Am luptat cu jefuitorii ce voiau doar bani, apoi cu criminali care trăgeau în oameni nevinovați. Dar măcar lor le înțeleg motivele, bestia din ei le-a înfrânt omul din suflet. Dar cum pot să devină oamenii așa... Nu pot să înțeleg. Soldat, eu îi căut în Pădure, tu in oraș. Ascunzătoarea lor trebuie să fie undeva. Caută simbolul, sigur îl vei întâlni.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Ai găsit-o? Unde? Mai era cineva acolo? Ce reprezintă simbolul? Tot mai multe întrebări...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Supraviețuiește și extrage-te din locație", "63a7d6d61f06d111271f5aeb": "Găsește locul de întâlnire al sectanților pe Străzi", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Salutari! Hai, să începem, nu ești entuziasmat? Misiunea e foarte particulară. trebuie să testăm o jucărie Rusească pentru luptă în spații închise, similare cu condițiile de luptă urbane. Am clienți care nu cred că jucăria e utilă... Poți să-i convingi?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Cum e? Funcționează? E bună pentru lupte în spații inchise în medii urbane?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Elimină operatori PMC cu armă SR-2M \"Veresk\" echipată cu amortizor și vizor cu reflexie KP-SR2 pe Străzile din Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Au mai rămas câteva deci. Mișto, le vom face o vizită. Poftim plata.", "6572e876dc0d635f633a5718": "Găsește primul set de ATM-uri de pe strada Klimov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Cercetează magazinul Sparja din hotelul Pinewood", "6572e876dc0d635f633a571e": "Cercetează magazinul Goshan din clădirea Concordia", "6572e876dc0d635f633a5720": "Predă articol găsit în raid: salam de vită Salty Dog", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "ATM Nr. 11", "65733403eefc2c312a759df2": "ATM Nr. 12", "65733403eefc2c312a759df4": "ATM Nr. 14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "ATM Nr. 15", "65733403eefc2c312a759dfa": "ATM Nr. 16", "65801ad655315fdce2096bec": "Află secretul succesului firmei de IT", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Ai găsit? Bravo, vreau să văd! Poftim plata, o meriți.", "6573397ef3f8344c4575cd88": "Găsește biroul de cadastru și imobiliare pe Străzile din Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Găsește registrul cu tranzacții imobiliare din Tarkov", "658167a0e53c40116f8632fa": "Predă informația", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Da da, deja am auzit discuțiile. Puțoii or să fi răstigniți prin tot orașul. Ai făcut treabă bună. Poftim răsplata.", "65734c186dc1e402c80dc1a2": "Elimină inamici purtând șapcă de Bombardier și ochelari RayBench Hipster Reserve pe Străzile din Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Ascunde o șapcă de bombardier la frizeria de pe Străzile din Tarkov", "657356d0a95a1e7e1a8d8d99": "Ascunde ochelarii de soare RayBench Hipster Reserve la frizeria de pe Străzile din Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "În mlaștina pulii? De asta a fost așa ieftină. Mă costă mai mult să o scot și să o curăț! Bun, poftim, pentru ajutorul tău.", "65802b627b44fa5e1463889a": "Găsește mașina Croitorului pe Litoral", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Supraviețuiește și extrage-te din locație", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Locate and obtain the “Bison VS Undertaker” poster at the USEC camp on Woods", "664bbb5f217c767c35ae3d51": "Locate and obtain the “Killa and Tagilla” poster at the USEC camp on Woods", "664bbb73c71d456fd03714ca": "Locate and obtain the “Easy Money” poster at the USEC camp on Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm, looking for the one who ordered the hit. They'll get over it and realize they're crossing the line. Here, this is your reward.", "660d5effb318c171fb1ca234": "Eliminate Kaban's guards on Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminate Kollontay's guards on Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Win 6 matches out of 10 in ranked mode in Arena", "662bb24b3d34cd5e19206e63": "Failure condition: Lose 5 matches", "6633a85e347a2a2b4051a26b": "Hand over Roubles from the EFT balance", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Failure Condition: Lose 5 matches", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.", "66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.", "66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Locate and obtain the compromising information on Ref", "664fd7f0837ee02ad4c8e658": "Hand over the found info", "66563f0a2684eee09e8dcd86": "Locate the old champion's hideout", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "I think I'm beginning to understand why people watch these \"live streams\". It's addictive!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Install a WI-FI Camera on the mountain ledge on Woods", "667bf840981b1c594af358ce": "Install a WI-FI Camera at the pier tower on Shoreline", "667bf845dc371ee9869f185e": "Install a WI-FI Camera at the office corridor on Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Well done! They say that even the outside world found out about our little move, haha!", "667442da875be5fb415df535": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Shoreline", "66828746efaecf435dde20ca": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", "66d080533a3c33d823a3477d": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hello, friend. Things have been a little bumpy for me lately. I will be temporarily raising the prices of my products and services from today until I can solve some pressing matters. A mercenary friend of mine is putting together a team to raid the underground lab, and he needs reliable firepower. Can you help? I see you know as much about the ARs as I do, so I thought I'd entrust this to you. I need an M4A1 with no more than 300 total recoil and ergonomics no less than 70. Not easy, I know. Now, be sure to put an EOTech XPS 3-0 on it, since the client refuses to use any other scope.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Many thanks. I think this will keep me on track for some time.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modify an M4A1 to comply with the given specifications", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "You didn't lose anything along the way, correct? All right, then it's time to send the engineers out to do some measurements, we're about to find out what these factory walls are hiding. Thanks for your help, friend.", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Locate and obtain the precision tools package in the laboratory on Customs", "66ab97d56cb6e3bfd7c79fbc": "Stash the package at the laboratory storage room on Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "So you have found it indeed. Excellent! How's the passage, is it safe? In a state of disrepair, you say? Well, it seems like this opportunity won't be with us for long. I'll send my men as soon as possible.", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab", "66b10eef0951e90ec383850b": "Scout the control room in The Lab", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "The buyer has told me everything is in place. You've earned your reward, and you can expect my men to help you on the new trails.", "66abb32aeb102b9bcd088d62": "Use the transit from Ground Zero to Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Use the transit from Streets of Tarkov to Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use the transit from Interchange to Customs", "66abb3ac416b26ade4a1446c": "Use the transit from Customs to Factory", "66abb3bf228ace5ca9f3d745": "Use the transit from Factory to Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Install a WI-FI Camera at the bear who sat into a flaming car on Woods", "66debf2e1e254957b82711ff": "Install a WI-FI Camera at the upside-down chair on Shoreline", "66debf30802386a45d0adb60": "Install a WI-FI Camera at the not-so-lonely bathroom on Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "The soldier of fortune has come for his new task! Rumors have it that Tarkov has become even more dangerous. Who would've thought, right? Someone's started targeting certain areas with mortar fire. \n\nYou better go and see what's going on. And yes, this means going right into the middle of those mortar strike areas. Yup. Alright, so we've noticed the bombardments in the nature reserve, the military base, the customs office, and the coast line. Off you go then.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Alive and well, that's great. So let's see what we're working with here. Somebody stole the mortars and now they're hitting various locations right before the airdrop supplies come in. \n\nVery suspicious. These local powdermen sure couldn't have secured communications with the outside world, could they? Either way, all we can do for now is watch.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visit an active mortar strike area on any specified location (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Okay, I got word of a major fuck-up. It may not be your fault, but that's beside the point. The assholes at the water treatment plant intercepted a bunch of these crates with portable EW equipment in them. \n\nThey're obviously useless at this point, but I'm not gonna let them steal government property like this. \n\nFor a warrior like you, the task is feasible. Go to the WTP and get me those EW thingies. And yes, those rats need to be put down. \n\nThe EWs themselves have probably already been handed over to their commanders, so you're guaranteed to get this equipment from them. Assuming you don't die, I suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendid, the new toys have arrived. My guys are gonna love these. You need to be ready for anything these days, and such protection is definitely not superfluous.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Hand over the found in raid item: GARY ZONT portable electronic warfare device", "66e19f359fee1e54e0e01f7c": "Eliminate Rogues", "66e19f7d534a8ff2bb7e9f89": "Locate and neutralize Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "This whole trader thing is going pretty well for me, wouldn't you say? You know, If I didn't have my wits about me, I'd be dead in this hellhole a long time ago. Anyway, I'll deal with the reports later, not the first time. \n\nRight now, I need to equip the guys posted outside my territory. Bring them this new equipment we found. I'll give you a part of it, but the rest you need to get yourself - you already know where to look. No, you won't meet them face to face. Just stash the items in the designated spot.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Good, now that they're safe from airborne threats, their combat mission will be accomplished with no problem.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Stash the GARY ZONT portable electronic warfare device inside the sunken church on Woods", "66e071c8a9e80c3f25bb1bad": "Stash the Radar station spare parts inside the old sawmill hangar on Woods", "66e0735089627301d900ef1d": "Stash the GARY ZONT portable electronic warfare device inside the weather station tower on Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Find the secret exfil on Customs", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Aud Vocea Întunericului", "6514134eec10ff011f17cc26 description": "Elimină-l pe Knight de 15 ori jucând ca și PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Asta Da Lovitură", "651413e9c31fcb0e163577c9 description": "Elimină-l pe Zryachiy de 15 ori jucând ca și PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/ru.json b/Libraries/SptAssets/Assets/database/locales/global/ru.json index 5a846376..26702765 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/ru.json +++ b/Libraries/SptAssets/Assets/database/locales/global/ru.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Оставить груз во времянке на 2-м этаже около Ворот 3 на локации Завод", "5968929e86f7740d121082d3": "Найти кейс с информацией в кабинете директора Tarcone на локации Таможня", "5977784486f774285402cf52": "Выжить и выйти с локации Завод", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Вот это дела! Это ж почти ядерный чемоданчик! То-то он туда народу не жалел, чтобы вытащить это добро.", "5968981986f7740d1648df42": "Найти ценную вещь в комнате 203 общежития на локации Таможня", "5968988286f7740d14064724": "Передать ценную вещь", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Получить доступ к комнате 214 общежития на локации Таможня", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Большое человеческое спасибо. Даже объяснять не буду, как это много и в тоже время критически мало в наших условиях. Большинство просто оставило бы себе, а вы отдали нуждающимся. Спасибо.", "5969f98286f774576d4c9542": "Найти в рейде Шприцы с морфием", "5969f99286f77456630ea442": "Передать шприцы", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Найти в рейде Свечи зажигания", "596b470c86f77457ca18618a": "Передать аккумуляторы", "596b472686f77457c7006f8a": "Передать свечи зажигания", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "А говорил, ничего там нет! Хотя, может они и пустые. Проверить надо. Но даже если так, оплата с меня.", "5979ee2986f7743ec214c7a4": "Найти в рейде Защищенные флеш-накопители", "5979ee4586f7743ec214c7a5": "Передать Флеш-накопители", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Найти и пометить третью прицеп-цистерну Маркером MS2000 на локации Таможня", "59c128f386f774189b3c84bb": "Найти и пометить четвертую прицеп-цистерну Маркером MS2000 на локации Таможня", "5c92184386f7746afa2e7840": "Выжить и выйти с локации", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21618,8 +21612,6 @@ "5a27d81a86f774472a6e0456": "Оставить снайперскую винтовку СВ-98 в лодке", "5a27d85286f77448d82084e7": "Оставить мультитул в лодке", "5a3ba11786f7742c9d4f5d29": "Найти лодку, спрятанную у волнореза на локации Берег", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Выжить и выйти с локации", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21814,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Отлично, вы всегда можете рассчитывать на меня с этого момента.", "5a56489d86f7740cfe70eba2": "Передать доллары", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21870,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Принес? Оставь в углу, спасибо. Красивая штука, да? Ладно, я тут занят немного, не могу болтать.", "5accd5e386f77463027e9397": "Модифицировать МР-133 в соответствии с требуемой спецификацией", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21878,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Хорошо, в умелых руках это оружие может свергать политические строи и устраивать революции. Оставь в углу, я потом посмотрю, что там у тебя получилось.", "5accd9b686f774112d7173d1": "Модифицировать АКС-74У в соответствии с требуемой спецификацией", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21886,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Удобный в помещениях и тихий… Хорошая модификация, клиент будет доволен.", "5accde3686f7740cea1b7ec2": "Модифицировать МР5 в соответствии с требуемой спецификацией", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21894,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Благодарю, положи винтовку на стол, я потом передам её Ди— кхм, Снайперу.", "5acce08b86f7745f8521fa64": "Модифицировать ДВЛ-10 в соответствии с требуемой спецификацией", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21902,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Да, от такой штуки точно не спрятаться. Люблю 7.62, хороший калибр. Благодарю за работу. Следующая только завтра.", "5acce11786f77411ed6fa6eb": "Модифицировать R11 RSASS в соответствии с требуемой спецификацией", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21910,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Давай сюда, посмотрим на сборку. Да уж, оружие демократии... Спасибо.", "5accdfdb86f77412265cbfc9": "Модифицировать М4A1 в соответствии с требуемой спецификацией", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21920,6 @@ "5ac7a4ba86f77409f3423628": "Починить первую панель управления с помощью Набора инструментов на локации Завод", "5ac7a51a86f774738a4ffc96": "Починить вторую панель управления с помощью Набора инструментов на локации Завод", "5ac7a5d586f774383111ee63": "Выжить и выйти с локации", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21933,6 @@ "5ac505e186f7740bdf2ceabe": "Передать предметы", "5ac5061386f77417e429ce7a": "Найти в рейде Печатные платы", "5ac5062586f774587c327395": "Передать предметы", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21943,6 @@ "5ac6240786f77417204ca2b9": "Найти склад конфиската на локации Таможня", "5ac6248586f77416781dd3a3": "Найти груз с видеокартами", "5ac624b286f77416781dd3ac": "Передать груз с видеокартами", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21954,6 @@ "5ac5082586f77418804f7d4c": "Передать предметы", "5ac5083d86f7740be2744eed": "Найти в рейде Процессорные кулеры", "5ac5084d86f7740bde1b0031": "Передать предметы", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21964,6 @@ "5ac5e0fa86f77431c305d243": "Найти первый источник сигнала на локации Берег", "5ac5e13586f7746074388f93": "Найти второй источник сигнала на локации Берег", "5ac5e18c86f7743ebd6c9575": "Выжить и выйти с локации", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21975,6 @@ "5ac5e88e86f7741c5804f9db": "Передать предметы", "5ac5e98886f77479bc6ca201": "Передать предметы", "5ac5ea0586f774609f36280c": "Передать предметы", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Найти в рейде Центральные процессоры", "5cb6f88d86f7747d215f09c1": "Найти в рейде Аккумуляторные батареи", "5cb6f8de86f7740e9d452685": "Найти в рейде Печатные платы", @@ -22031,8 +21998,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Седьмой знак после запятой в числе Пи? IIO? Ладно, когда придет время, я свяжусь с тобой.", "5ac5eb3286f7746e7a509a09": "Достичь нужного уровня навыка \"Внимательность\"", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22011,6 @@ "5ac5ef5686f77416ca60f644": "Передать предметы", "5ac5ef9886f7746e7a509a2d": "Найти в рейде Сигареты Wilston", "5ac5eff886f7740f43322559": "Передать предметы", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22022,6 @@ "5ac61ab986f7746e352cec8c": "Найти второй выход с Завода", "5ac61adf86f774741c1bf096": "Найти третий выход с Завода", "5ac61b1486f7743a8f30fc84": "Выжить и выйти с локации", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Найти четвёртый выход с Завода", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22030,6 @@ "5ac3479086f7742880308199 description": "Не люблю притворяться. Хотя все мы это делаем. Иногда, чтобы выжить, а иногда потому, что просто боимся. Знаешь, я не особо любитель поговорить, тем более с незнакомыми. Но ты, похоже, неплохой парень. Если у тебя получилось заслужить мое доверие, думаю, ты сможешь договориться с кем угодно. Ведь только человеческие отношения помогут нам сейчас выжить. Переговори с Павлом Егоровичем. Когда он станет тебе доверять, возможно, я смогу наладить поставку пороха. Знаю, нечистый он человек, но его порох мне необходим.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Павел Егорович - один из немногих, кто остался в городе. Интересно, потому что военный или просто не успел выбраться? Хотя чую, есть у него свои тёмные дела.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Достичь 3-го уровня лояльности с Прапором", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22039,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Хорошее ружьё, добротное. Заказов пока нет, можешь завтра зайти.", "5ae34b8b86f7741e5b1e5d48": "Модифицировать Remington Model 870 в соответствии с требуемой спецификацией", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22047,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "Удобный автомат, мастерски сделано, спасибо. Передам клиенту, что оружие готово к получению. ", "5ae3550b86f7741cf44fc799": "Модифицировать АКМ в соответствии с требуемой спецификацией", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22055,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "Ну что, готов Зенитовский калаш? Отлично, оставь вон на том ящике. За следующим заказом можешь завтра зайти.", "5ae3570b86f7746efa6b4494": "Модифицировать АКС-74Н в соответствии с требуемой спецификацией", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22063,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "Я, похоже, придумал, как научить сеть! А, да, АК годится, спасибо. Оставь где-нибудь рядом, я позже с ним разберусь.", "5ae445f386f7744e87761331": "Модифицировать АК-105 в соответствии с требуемой спецификацией", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22071,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Принёс автомат? Отлично, давай сюда. Есть тут у меня один ключик интересный, авось поможет чем. Ключ от оружейного магазина в Ультре, KIBA который. Модулей там много хороших, могут в деле нашем пригодиться.", "5ae4479686f7744f6c79b7b3": "Модифицировать АС Вал в соответствии с требуемой спецификацией", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22079,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Велком в команду, бродяга. Ну что, поговорим о работе?", "5ae44c6886f7744f1a7eb2b8": "Достичь 2-го уровня лояльности с Барахольщиком", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Достичь 2-го уровня лояльности с Барахольщиком", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22088,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Прямо как снайпер стреляешь, хорош. Пацаны горят, что трупов Диких теперь навалом в Ультре, поспокойнее пока стало, так что держи свой приз, заслужил.", "5ae44ecd86f77414a13c970e": "Убить Диких на локации Развязка", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22101,6 @@ "5ae4510786f7740fa614399f": "Проверить магазин DINO CLOTHES на локации Развязка", "5ae4511d86f7740ffc31ccb5": "Проверить магазин TOP BRAND на локации Развязка", "5ae4514986f7740e915d218c": "Выжить и выйти с локации", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22112,6 @@ "5ae452de86f77450595c4333": "Пометить вторую прицеп-цистерну Маркером MS2000 на локации Развязка", "5ae452fa86f774336a39758e": "Пометить третью прицеп-цистерну Маркером MS2000 на локации Развязка", "5ae4531986f774177033c3e6": "Выжить и выйти с локации", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22121,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Красота спасет мир, как говорят. Спасибо, выручил, братан. Шапочки за день разлетятся, уж поверь. Держи, это тебе как награда будет.", "5ae4543686f7742dc043c903": "Передать ушанки", "5ae454a086f7742be909a81a": "Передать шляпы", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Найти в рейде Шапки-ушанки", "5fd89799c54dc00f463272d3": "Найти в рейде Ковбойские шляпы", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22136,6 @@ "5ae9b38a86f77432c81e2ce3": "Передать ведомости OLI", "5ae9b3b186f7745bbc722762": "Найти грузовые ведомости сети IDEA на локации Развязка", "5ae9b3c986f77432c81e2ce6": "Передать ведомости IDEA", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22145,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Нашел? Благодарствую. Давай доки, сейчас посмотрим, куда наш грузик потерялся.", "5ae9b5bd86f774307c29df37": "Найти документы с маршрутами груза сети OLI на локации Развязка", "5ae9b63286f774229110402d": "Передать документы", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22156,6 @@ "5ae455be86f7742dc043c969": "Передать шапку", "5ae455fb86f7744dd8242380": "Найти в рейде Туристический рюкзак \"Пилигрим\"", "5ae4562086f774498b05e0dc": "Передать рюкзак", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22167,6 @@ "5ae9b7c886f774307c29df56": "Передать бронежилет", "5ae9b91386f77415a869b3f3": "Раздобыть Бронежилет БНТИ \"Гжель-К\" в 50-100% состоянии", "5ae9b93b86f7746e0026221a": "Передать бронежилет", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22189,6 @@ "5ae45d9386f774178f23774a": "Передать разгрузки", "5af079e486f77434693ad7f8": "Найти в рейде Разгрузочные жилеты \"BlackRock Chest Rig\"", "5af07a0286f7747dba10d8ac": "Передать разгрузки", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22200,6 @@ "5ae9c0c986f77468ab400f88": "Передать первую книгу", "5ae9c0e186f7746419683c5e": "Найти вторую книгу о технологии изготовления одежды на локации Развязка", "5ae9c10686f774703201f146": "Передать вторую книгу", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22208,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Воу-воу, полегче, я свой, мужик! Ладно, шучу. Вижу, знатно ты так подкрутил харизму, это хорошо. Давай тогда и о деле нашем поговорим.", "5ae9c29386f77427153c7fb0": "Достичь нужного уровня навыка \"Харизма\"", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22216,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Похоже, всё пучком, спасибо.", "5ae9c38e86f7743515398707": "Достичь 3-го уровня лояльности с Терапевтом", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22228,6 @@ "5ae9e1c786f77403fb3f9674": "Оставить Арафатку (Зеленую) на причале лесопилки на локации Лес", "5ae9e2a286f7740de4152a0a": "Оставить Очки RayBench \"Hipster Reserve\" на причале лесопилки на локации Лес", "5ae9e2e386f7740de4152a0d": "Оставить Очки с круглой оправой на причале лесопилки на локации Лес", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22235,6 @@ "5ae449c386f7744bde357697 description": "Ты как-то шугал Диких в Ультре, помнишь, брат? Сейчас, говорят, там еще хуже стало. Мол, кишит отморозками всякими. Просьба к тебе есть: посмотри, че там как на Развязке, убедись, что ходить можно. Найди какие безопасные дорожки, не знаю. Очень нужно, чтобы ровно всё было, понимаешь?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "Ты прямо призрак какой-то, человек-невидимка, что ли. Погоди, дай карту достану. Значит, вот тут и здесь самые тихие места? Шикос, сообщу братве. Спасибо, друг, реально выручил.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Выжить и выйти с локации Развязка", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22245,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Вот это джигит! Сейчас запрягу парней, столько сладостей натаскают с Гошана! Так вот, о награде: смотри, какие броники в продаже есть, всё для тебя.", "5ae9e55886f77445315f662a": "Раздобыть Ключ от касс Гошана", "5ae9e58886f77423572433f5": "Передать ключ", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22253,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Фонарь только не включай, ослепит сразу же! В общем, отлично сработано, оставь вон на ящике.", "5b47796686f774374f4a8bb1": "Модифицировать АК-102 в соответствии с требуемой спецификацией", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22261,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Давай тащи сюда, нужно срочно отдать клиенту. Надеюсь, ты никому не сказал, для чего этот MPX. Ладно, пожелаем ему удачи, что ли.", "5b477b3b86f77401da02e6c4": "Модифицировать SIG MPX в соответствии с требуемой спецификацией", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22269,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Спасибо, оставь где-нибудь рядом. Я чуть занят сейчас, завтра заходи.", "5b477f1486f7743009493232": "Модифицировать АКМН в соответствии с требуемой спецификацией", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22277,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "Винтовка готова? Отлично. Думаю, ты понял уже, что Снайпера Димой зовут, я давно ещё проговорился. Про него никому ни слова, надеюсь, ты понимаешь.", "5b47824386f7744d190d8dd1": "Модифицировать М1A в соответствии с требуемой спецификацией", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22285,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Такую хочется поставить за стекло и засветить. Великолепная работа, действительно получился шедевр.", "5b4783ba86f7744d1c353185": "Модифицировать М4A1 в соответствии с требуемой спецификацией", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22294,6 @@ "5b47876e86f7744d1c353205 successMessageText": "О, круто, давай сюда. Механик их заказывал, как ты уже догадался, наверное. Отдам ему сегодня же. Спасибо, выручил.", "5b47884886f7744d1c35327d": "Найти в рейде Присадки для диз.топлива", "5b47886986f7744d1a393e65": "Передать предметы", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22309,6 @@ "5b478a3786f77470315db7fa": "Передать статуэтку", "5b478a6c86f7744d190d8f4d": "Найти в рейде Золотые часы Roler Submariner", "5b478a8486f7744d1c35328b": "Передать часы", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Найти в рейде Золотое яйцо", "62a70058ec21e50cad3b6709": "Передать статуэтку", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22321,6 @@ "5b478c4c86f7744d1a393fac": "Оставить Гарнитуры Peltor ComTac 2 в условленном месте", "5b478c7386f7744d1a393fb1": "Оставить Шлемы 6Б47 \"Ратник-БШ\" в условленном месте", "5b478cb586f7744d1a393fb5": "Оставить Бронежилеты БНТИ Гжель-К в условленном месте", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22332,6 @@ "5b478daf86f7744d1c35339b": "Найти и пометить второй микроавтобус Маркером MS2000 на локации Развязка", "5b478dca86f7744d190d91c2": "Найти и пометить третий микроавтобус Маркером MS2000 на локации Развязка", "5b478de086f7744d1c3533a1": "Выжить и выйти с локации", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22345,6 @@ "5b4c82cd86f774170c6e4169": "Найти третий химический контейнер на локации Развязка", "5b4c832686f77419603eb8f0": "Передать второй контейнер", "5b4c836486f77417063a09dc": "Передать третий контейнер", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22354,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Отлично, то, что надо! Осталось только, чтоб пацаны мои вычухались. Кровяной генофонд получат, конечно, тот ещё, но выбор у них небольшой.", "5b47905886f7746807461fe2": "Передать Респираторы", "5b4790a886f774563c7a489f": "Передать Наборы для переливания крови", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Найти в рейде Респираторные маски", "5ec1388d83b69d213d3c2ee0": "Найти в рейде Наборы для переливания крови", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22366,6 @@ "5b47932586f7747cc908b5dd": "Установить WI-FI Камеру для наблюдения за причалом лесопилки на локации Лес", "5b47936686f77427fd044025": "Установить WI-FI Камеру для наблюдения за дорогой в припортовую зону на локации Таможня", "5b47938086f7747ccc057c22": "Установить WI-FI Камеру для наблюдения за магазином Kiba Arms на локации Развязка", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22383,6 @@ "5b4c76d886f77471d31735a3": "Передать третий контроллер", "5b4c7aec86f77459732b4b08": "Передать второй гироскоп", "5b4c8e6586f77474396a5400": "Найти второй одноосный волоконно-оптический гироскоп на локации Берег", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Найти первый контроллер мотора на локации Лес", "66d07de6c7ef9040fff0b789": "Передать первый контроллер", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22395,6 @@ "5b47968e86f7745877352c28": "Оставить Золотые цепочки под матрасом около БТР-82А в магазине Generic на локации Развязка", "5b4796c086f7745877352c2c": "Оставить Золотые цепочки в микроволновке на третьем этаже общежития на локации Таможня", "5b47971086f774587877ad34": "Оставить Золотые цепочки в средней времянке на лесопилке на локации Лес", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Убить бойцов ЧВК в период с 22:00 по 10:00 на локации Развязка", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22404,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "Ну что, почувствовал себя Зайцевым? Снайпер доволен и уже приготовил для тебя следующее задание.", "5bc850d186f7747213700892": "Убить Диких с расстояния более 40 метров, используя болтовые винтовки с механическим прицелом", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22412,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Неплохо, неплохо. Даже я вряд ли бы так точно стрелял, не те годы уже. Пока ты стрелял, Снайпер приготовил следующее испытание.", "5bd983d886f7747ba73fc246": "Сделать попадания в ноги с расстояния более 40 метров, используя болтовые винтовки", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Сделать попадания в голову с расстояния более 40 метров, используя болтовые винтовки", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22421,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "Хорошая у тебя реакция, раз еще стоишь на ногах. Держи шляпу, как обещал! Давай, стрелок, новые испытания ждут.", "5bc47e3e86f7741e6b2f3332": "Убить бойцов ЧВК с расстояния меньше 25 метров, используя болтовые винтовки", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22429,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Готов? Отлично, тогда за работу. Снайпер очень заинтересован тобой.", "5bc4813886f774226045cb9a": "Убить бойцов ЧВК с расстояния не менее 80 метров, используя болтовую винтовку", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Убить ЧВК используя болтовые винтовки с расстояния не менее 80м", "657b0567ec71635f16471dd2": "Убить бойцов ЧВК с расстояния не меньше 80 метров, используя болтовые винтовки", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22439,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Молодец, филин, проредил ночных хищников.", "5bc84f7a86f774294c2f6862": "Убить Диких, используя болтовые винтовки в период с 21:00 по 05:00 на локации Таможня", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22447,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "В снайперском единоборстве запрещенных приемов нет. Молодец, парень.", "5bc483ba86f77415034ba8d0": "Убить Диких-снайперов, используя болтовые винтовки", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22455,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "Противник абсолютно беспомощен, когда не знает, откуда идет огонь. Ты отлично справился, стрелок.", "5bc485b586f774726473a858": "Убить бойцов ЧВК с расстояния более 45 метров, используя болтовые винтовки с глушителем", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22463,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Это задание не из лёгких. Пробуй снова.", "5bc4893c86f774626f5ebf3e successMessageText": "Похоже, иногда, чтобы умно поступать - одного ума мало, нужна еще болтовка. Снайпер пока что молчит, так что повременим пока со следующими испытаниями. Я сообщу тебе, когда придут новые задания.", "5bc48aed86f77452c947ce67": "Убить бойцов ЧВК в голову за одну жизнь, используя болтовые винтовки", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "Нельзя погибать и покидать рейд, пока квест не сдан заказчику (Статус: Убит, Вышел, Пропал без вести)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22475,6 @@ "5c0bc43e86f7744794440ba5": "Оставить Золотые часы Roler Submariner в мусоре напротив лестницы на третьем этаже общежития на локации Таможня", "5c12320586f77437e44bcb15": "Оставить Ложный флеш-накопитель в мусоре напротив лестницы на третьем этаже общежития на локации Таможня", "5c1233ac86f77406fa13baea": "Не убивать Диких на локации Таможня до завершения задания", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Найти Ложный флеш-накопитель в условленном месте на локации Таможня", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22485,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "Нормально сработал, уважуха! Буду иметь тебя в виду, если тема какая подвернется.", "5c0bc95086f7746e784f39ec": "Убить Диких, используя дробовик 12 калибра с глушителем", "5c0bcc9c86f7746fe16dbba9": "Убить бойцов ЧВК, используя дробовик 12 калибра с глушителем", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22493,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Гуд ворк, друг. Всё прошло ас плэнд.", "5c1242fa86f7742aa04fed52": "Убить бойцов ЧВК в период с 21:00 по 06:00 (исключая Завод и Лабораторию)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22501,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "Ну, чего скажешь? Серьёзная игрушка? Отлично, давай сюда тогда. Держи вот, за помощь. Ты там не пропадай особо, может ещё чё опробовать понадобится.", "5c1b765d86f77413193fa4f2": "Убить бойцов ЧВК с расстояния более 60 метров, используя винтовку M1A с глушителем Hybrid 46 и прицелом Schmidt & Bender PM II 1-8x24", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22509,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "Ну вот, теперь я уверен, что не зассышь, если вдруг какая возня нездоровая начнётся.", "5c0bdbb586f774166e38eed5": "Достичь нужного уровня навыка \"Стрессоустойчивость\"", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22520,6 @@ "5c137b8886f7747ae3220ff4": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Резерв", "5c137ef386f7747ae10a821e": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Берег", "5c137f5286f7747ae267d8a3": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Таможня", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Маяк", "63aec6f256503c322a190374": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Улицы Таркова", "64b694c8a857ea477002a408": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Развязка", @@ -22656,8 +22532,6 @@ "5c0be13186f7746f016734aa failMessageText": "Опытный снайпер не выдаст себя просто так. Попробуй ещё после передышки.", "5c0be13186f7746f016734aa successMessageText": "Честно говоря, даже я не был уверен, что справишься. Но по всему видно, ты точно не из серой массы.", "5c0be2b486f7747bcb347d58": "Достичь нужного уровня навыка \"Болтовые винтовки\"", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Убить бойцов ЧВК за одну жизнь, используя болтовые винтовки", "64b67fcd3e349c7dbd06bd16": "Нельзя погибать и покидать рейд, пока задача активна (Статус: Убит, Вышел, Пропал без вести)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22543,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Принесли? Хорошо, оставьте всё там в углу. Осторожно, оборудование очень хрупкое. Даже если не получится с клиникой, я знаю хороших людей, которых это заинтересует, между нами говоря. Зачем пропадать зря такому дорогому оборудованию?", "5c0be66c86f7744523489ab2": "Передать Офтальмоскоп", "5c0be69086f7743c9c1ecf43": "Передать LEDX", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Найти в рейде Офтальмоскоп", "5fd8935b7dd32f724e0fe7ee": "Найти в рейде Светодиодный трансиллюминатор кожи LEDX", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22553,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "Собственно, я даже не сомневалась, что вы человек, в котором я могу быть уверена не только в плане работы.", "5c0d0dfd86f7747f482a89a5": "Достичь нужного уровня навыка \"Здоровье\"", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22562,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Вэри гуд, вэри гуд! Клиенты будут довольны вами, наёмник. Ваше вознаграждение.", "5c138c4486f7743b056e2943": "Передать Программируемые процессоры", "5c138d4286f774276a6504aa": "Передать Передатчик сигналов", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Найти в рейде Программируемые процессоры Virtex", "5ec13da983b69d213d3c2ee4": "Найти в рейде Военный COFDM беспроводной передатчик сигналов", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22572,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Хорошо, руки-ноги целы, шумиха наведена. Будет с тебя толк в таких делах, боец. Получай награду, заслужил.", "5c1b760686f77412780211a3": "Убить бойцов ЧВК, используя гранаты", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22580,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Уже справились? А ведь знаете, сработало, их главари заговорили совсем по-другому. И не надо меня осуждать. в этом мире надо договариваться даже с такими мерзавцами. Ваша награда.", "5c1b778286f774294438b536": "Убить Диких с дистанции меньше 60 метров, используя противогаз или респиратор на локации Развязка", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22591,6 @@ "5c1b713986f77470d8650910": "Убить Диких, одевшись в форму ООН (Шлем UNTAR, бронежилет MF-UNTAR, винтовка M4A1) на локации Развязка", "5c1b713f86f774719c22e8a0": "Убить Диких, одевшись в форму ООН (Шлем UNTAR, бронежилет MF-UNTAR, винтовка M4A1) на локации Берег", "5c1fd66286f7743c7b261f7b": "Убить Диких, одевшись в форму ООН (Шлем UNTAR, бронежилет MF-UNTAR, винтовка M4A1) на локации Лес", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Убить Диких, одевшись в форму ООН (Шлем UNTAR, бронежилет MF-UNTAR, винтовка M4A1) на локации Улицы Таркова", "65e08aa9f5879b2586d5fd4c": "Убить Диких, одевшись в форму ООН (Шлем UNTAR, бронежилет MF-UNTAR, винтовка M4A1) на локации Эпицентр", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22607,6 @@ "5c13982286f774365a69cc4d": "Выйти с локации Берег со статусом \"Выжил\"", "5c13989886f7747878361a50": "Выйти с локации Завод со статусом \"Выжил\"", "5c1931e686f7747ce71bcbea": "Выйти с локации Лаборатория со статусом \"Выжил\"", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Выйти с локации Резерв со статусом \"Выжил\"", "629f08e7d285f377953b2af1": "Выйти с локации Маяк со статусом \"Выжил\"", "63aec66556503c322a190372": "Выйти с локации Улицы Таркова со статусом \"Выжил\"", @@ -22762,8 +22623,6 @@ "5c10f94386f774227172c575": "Найти и пометить второй схрон с топливом Маркером MS2000 на локации Лес", "5c10f94386f774227172c576": "Найти и пометить третий схрон с топливом Маркером MS2000 на локации Лес", "5c10f94386f774227172c577": "Выжить и выйти с локации", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22632,6 @@ "5c1128e386f7746565181106 successMessageText": "Вот это дело! Сейчас берусь за паяльник и за работу. А там, глядишь, и рынок выровняется.", "5c1129ed86f7746569440e88": "Передать Пучки проводов", "5c112a1b86f774656777d1ae": "Передать Конденсаторы", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Найти в рейде Пучки проводов", "5ca71a1e86f7740f5a5b88a2": "Найти в рейде Конденсаторы", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22642,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "Ну вот, теперь уверенность у меня имеется, что не с пустым рюкзаком из замеса вернёшься. Молодца, братишка.", "5c112dc486f77465686bff38": "Достичь нужного уровня навыка \"Поиск\"", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22651,6 @@ "5c1141f386f77430ff393792 successMessageText": "Принёс? Отлично. Интересно, что он в следующий раз попросит, алмазный унитаз? Только смотри, если и попросит, то найти реально нужно будет. Спасибо за помощь, брат.", "5c11427386f77430ff393793": "Передать Антикварные чайники", "5c122c5f86f77437e44bcb0e": "Передать Антикварные вазы", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Найти в рейде Антикварные чайники", "5ca7258986f7740d424a2044": "Найти в рейде Антикварные вазы", "62a700893e015d7ce1151d90": "Найти в рейде Статуэтку попугая Axel", @@ -22812,8 +22665,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Тут пацаны говорят, что на Таможке прямо третья мировая идёт, Биры с Юсеками со всей округи пришли Диких щемить! По красоте отработал. Держи подгончик, заслужил.", "5c1fa9c986f7740de474cb3d": "Убить бойцов ЧВК, одевшись в условленную экипировку на локации Таможня", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22678,6 @@ "5c12487386f7742a60324299": "Достичь 4-го уровня лояльности с Миротворцем", "5c12489886f77452db1d2b05": "Достичь 4-го уровня лояльности с Прапором", "5c1248ef86f77428266184c2": "Достичь 4-го уровня лояльности с Терапевтом", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Достичь 4-го уровня лояльности с Егерем", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22688,6 @@ "5c139eb686f7747878361a6f successMessageText": "Неужели принёс? Порадовал! Сейчас посмотрю, что за девайсы такие.\t", "5c139eb686f7747878361a72": "Передать считыватель", "5c139eb686f7747878361a73": "Передать накопитель", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Найти в рейде Считыватель UHF RFID", "5ec14080c9ffe55cca300867": "Найти в рейде Твердотельный накопитель VPX", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22697,6 @@ "5c51aac186f77432ea65c552 description": "Здравствуй, наёмник. Я давно наблюдаю за тобой и знаю, что ты умеешь решать поставленные перед тобой задачи. Не зазнавайся раньше времени, не ты один умеешь выполнять приказы. Есть ещё бойцы как ты, а то и посерьёзнее будут. Я хочу предложить тебе работу, дать шанс стать частью чего то более масштабного, чем ты можешь себе представить. Если ты готов, то для тебя есть испытание: мои люди работают по всему Таркову и зачастую оставляют после себя сувениры. Суть задания в следующем: добыть и доставить мне эти предметы. Без лишних вопросов. Вещи эти предельно редкие. Надеюсь, мне не стоит напоминать, что найти все нужные предметы ты должен лично? Поверь, я как никто другой знаю, когда люди лгут. Пункт доставки тебе сообщат. И вот еще что, все мои партнёры давно отработали свои навыки и доказали, что на них можно положиться, и если ты хочешь стать одним из них, то докажи мне, что ты не уступаешь им в подготовке. На контакт со мной выходить даже не пытайся, я сам с тобой свяжусь, когда придёт время.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Всё принёс? Хорошо, наёмник. Награда тебя ждет в условленном месте, всё как обещано. Поздравляю, и добро пожаловать.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Найти в рейде и передать: Потрепанная антикварная книга", "5c51bf8786f77416a11e5cb2": "Найти в рейде и передать: Оружейная смазка #FireKlean", "5c51bf9a86f77478bf5632aa": "Найти в рейде и передать: Золотой петух", @@ -22867,56 +22707,6 @@ "5c51c23a86f77478bb033466": "Найти в рейде и передать: Банка шпротов", "5c51c24c86f77416a11e5cb7": "Найти в рейде и передать: Накладные усы", "5c51c25c86f77478bf5632af": "Найти в рейде и передать: Шапка Kotton", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Найти в рейде и передать: Древнее кресало", "5c52da5886f7747364267a14": "Найти в рейде и передать: Антикварный топор", "5cb5ddd386f7746ef72a7e73": "Найти в рейде Древнее кресало", @@ -22931,8 +22721,6 @@ "5cb5df5586f7746ef82c17e8": "Найти в рейде Банку шпротов", "5cb5df7186f7747d215eca08": "Найти в рейде Накладные усы", "5cb5df8486f7746ef82c17ea": "Найти в рейде Шапку Kotton", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Найти в рейде Статуэтку ворона", "5ec7998dc1683c0db84484e7": "Найти в рейде и передать: Статуэтка ворона", "5ec79aaac1683c0db84484e8": "Найти в рейде Маску Pestily", @@ -22955,17 +22743,6 @@ "60d074211bdece56c249cc13": "Найти в рейде и передать: Бумажник WZ", "60d0748820a6283a506aebb1": "Найти в рейде Крысиный яд \"LVNDMARK's\"", "60d074ef401d874962160aee": "Найти в рейде и передать: Крысиный яд LVNDMARK's", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Найти в рейде Балаклаву Smoke", "60e827faf09904268a4dbc40": "Найти в рейде и передать: Балаклава Smoke", "62a6ff004de19a4c3422ea5d": "Найти в рейде и передать: Ключ от погрузчика Missam", @@ -22993,8 +22770,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Принёс пакет? Молодчина. Ну что ж, думаю, можно дать тебе контакты Егеря. У него тоже работы немало найдётся.", "5d249a6e86f774791546e952": "Найти послание от Егеря", "5d249aa286f77475e8376399": "Передать послание Механику", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Найти место стоянки Егеря в условленном месте на локации Лес", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22781,6 @@ "5d24ba7886f77439c92d6baa": "Найти в рейде и передать Сухие пайки \"Искра\"", "5d24bb4886f77439c92d6bad": "Найти в рейде и передать Лапшу быстрого приготовления", "5d24bb7286f7741f7956be74": "Найти в рейде и передать Банки тушеной говядины (Большие)", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22789,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "Один известный человек говорил - \"Порхай как бабочка, жаль как пчела\". Дельный совет, запомни его. Ну что, чувствуешь, как легко двигаться без всех этих плит на груди? Если двигаешься быстро, то и бронежилет не понадобится против шпаны.", "5d25af3c86f77443ff46b9e7": "Убить Диких, не используя броню на локации Лес", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22800,6 @@ "5d25beeb86f77443fe45765f": "Оставить Бутылку воды (0.6л) в бункере ЗБ-016 на локации Лес", "5d2deedc86f77459121c3118": "Оставить Сухой паек \"Искра\" в бункере ЗБ-014 на локации Лес", "5d2defc586f774591510e6b9": "Оставить Бутылку воды (0.6л) в бункере ЗБ-014 на локации Лес", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22809,6 @@ "5d25bfd086f77442734d3007 successMessageText": "Неужто так долго можешь без воды обходиться? Молоток. Так, держи, выпей вот, восстанови силы.", "5d25c5a186f77443fe457661": "Провести в состоянии полной дегидратации 5 минут (исключая Завод)", "5d9f035086f7741cac4a9713": "Выжить и выйти с локации", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22817,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Справился? Так держать. Почти завершили твою тренировку, друг. Если так и дальше дело пойдёт, начнём наводить порядок раньше, чем планировали.", "5d25c8c986f77443e47ad47a": "Убить Диких, находясь в состоянии болевого шока", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22826,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Получилось? Отлично! Пот экономит кровь! Не радуйся раньше времени, есть ещё несколько заданий для тебя.", "5d25d09286f77444001e284c": "Убить Диких в одном рейде, не используя медицину на локации Лес", "5d25d0d186f7740a22515975": "Не использовать медицину до завершения задания", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22834,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "Даже с тремором рука не дрогнет? Отлично! Честно скажу, задание сложное было, но ты даже с этим справился, парень.", "5d25d4e786f77442734d335d": "Убить бойцов ЧВК выстрелом в голову, находясь в состоянии тремора", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22842,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "Выжил-таки? Кто бы мог подумать.", "5d25dc2286f77443e7549028": "Убить бойцов ЧВК, находясь в состоянии ослепления", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22850,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "Сколько, говоришь? Шестерых? И всех без \"прибора\"? И впрямь ночной охотник получился, молодец, парень.", "5d25fd8386f77443fe457cae": "Убить Диких в период с 21:00 по 04:00, не используя ПНВ и Тепловизоры (исключая Завод)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22858,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "Как там поговаривают? Тяжело в учении - легко в бою! Эти навыки тебе пригодятся, уж поверь. Подходит к концу твоя тренировка. Похоже, готов ты стать охотником.", "5d2605ef86f77469ef0f7622": "Достичь нужного уровня навыка \"Жизнеспособность\"", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22866,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Неплохо сработал! Конечно, дряни в Таркове достаточно, придут и другие. Но в следующий раз уже подумают, прежде чем чужое брать.", "5d26143c86f77469ef0f894c": "Убить бойцов ЧВК в районе офисов (любой этаж) на локации Завод", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22876,6 @@ "5d26fd8886f77469f0445745": "Найти и нейтрализовать Решалу", "5d2710e686f7742e9019a6b2": "Передать Золотой пистолет ТТ", "5d66741c86f7744a2e70f039": "Найти в рейде Золотой пистолет ТТ Решалы", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22884,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "Они свой выбор сделали, когда не на тот путь вступили. Ты поступил правильно, охотник, благодарю тебя.", "5d2701b586f77469f1599fe2": "Убить Диких по всей территории Таркова", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22892,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Усвоил урок? Хорошо. Видишь, обезоружить противника можно не только буквально.", "5d307fc886f77447f15f5b23": "Убить бойцов ЧВК, находящихся под эффектом ослепления", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22902,6 @@ "5d2719b186f7740701348573": "Найти и нейтрализовать Киллу", "5d271a3486f774483c7bdb12": "Передать шлем Киллы", "5d667a8e86f774131e206b46": "Найти в рейде Бронешлем \"Маска-1Щ\" Киллы", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22912,6 @@ "5d27276886f7740701348578": "Найти и нейтрализовать Штурмана", "5d272a0b86f7745ba2701532": "Передать Ключ Штурмана", "5d2f464e498f71c8886f7656": "Найти в рейде Ключ Штурмана", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22920,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Защитил честь мундира? Вот и славно, поделом им. Ничего хуже нет, когда присягу давал, и в криминал подался.", "5d272bd386f77446085fa4f9": "Убить Диких, одетых в форму ДПС (свита Решалы)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22928,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "Слыхал про твои дела. Поспокойнее вроде стало, и мародёров поуменьшилось. Спасибо тебе человеческое.", "5d2733c586f7741dea4f3072": "Убить бойцов ЧВК в районе общежитий на локации Таможня", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22936,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "С возвращением, охотник. Расправился с бандитами, значит? Даже не представляю, сколько хлопот они тебе предоставили, ты молодец. Отличная работа.", "5d27369586f774457411b264": "Найти и нейтрализовать Глухаря", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22944,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "Значит, у лабораторий и военных точек орудуют.. Ох, как бы не началась тут ещё одна война, поверх уже идущей. Ладно, парень, не нам с тобой с этим разбираться пока.", "5d273a4d86f774457411b266": "Убить Рейдеров", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22953,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Принёс? Отлично. Теперь, глядишь, не оплошаю, если с того света кого вытаскивать придётся.", "5d27446f86f77475a86565a3": "Передать Портативный дефибриллятор", "5d7782c686f7742fa732bf07": "Передать Хирургические наборы CMS", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Найти в рейде Портативный дефибриллятор", "5ec1538a92e95f77ac7a2529": "Найти в рейде Хирургические наборы CMS", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22965,6 @@ "5d357b6c86f774588d4d7e25": "Найти дом председателя в заброшенной деревне на локации Берег", "5d357b9586f7745b422d653f": "Найти дом рыбака в заброшенной деревне на локации Берег", "5d357bb786f774588d4d7e27": "Найти дом священника в заброшенной деревне на локации Берег", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Выйти с локации со статусом \"Выжил\"", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22975,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Принёс? Хорошо, поглядим, чего он замышляет. Приходи чуть позже, мы пока с Механиком посмотрим, что там на этих флешках, потом тебе и расскажем.", "5d27491686f77475aa5cf5b9": "Передать флеш-накопители", "5d6949e786f774238a38d9e0": "Найти в рейде Защищенные флеш-накопители", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22985,6 @@ "5d27522686f774304e316405": "Передать фотоальбом", "5d357e0e86f7745b3f307c56": "Найти номер Егеря в Санатории с видом на залив на локации Берег", "5d357e8786f7745b5e66a51a": "Найти Фотоальбом Егеря", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22993,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "Принёс-таки? Отлично, парень, ты молодец. Осталось только понять, как эту лабораторию отыскать. Ладно, с этим уже сам как-нибудь разберусь.", "5d2f375186f7745916404955": "Найти в рейде Ключ-карты доступа в TerraGroup Labs", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Передать ключ-карты", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +23001,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Проходи, садись. Чай будешь? Ну, как хочешь. Слушай, тут такое дело. Ко мне гости наведаться должны в скором времени, а я ну не могу же их на охоту повести с мурками, верно? Есть у меня парочка хороших винтовок заморских, но их сначала пристрелять надо. Есть тут один кандидат на проверку прицела, Штурманом зовут. Проверь, в общем, сборочку эту (винтовка Remington M700 с оптическим прицелом FullField TAC30 1-4x24) на этом гаде. Ты выбери позицию получше и стреляй в затылок, чтобы у гаденыша даже шанса не было. Наградой-то точно не обижу, парень.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Ох и добрые получились винтовки! Глядишь, и сам займусь оружейничеством, по нраву мне это дело. Так вот, о награде: смотри, какие штучки тут нашел. Мож, понадобятся тебе.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Найти и нейтрализовать Штурмана в голову с расстояния более 75 метров, используя Remington M700 с условленным прицелом", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23009,6 @@ "5d25e4d586f77443e625e388 description": "Какие люди! Здравствуй! Слушай, про военную базу за горами за санаторием знаешь ведь? Наверняка уже сам разведывал. В общем, тут новости есть. Говорят, что на складах базы ещё порядком продовольствия осталось, и повадились туда группами ходить бандиты, да какие-то серьёзные, хорошо экипированные. Хочу, чтобы ты проверил, осталось ли чего на этих складах. Ты только аккуратно там, бандитов этих там и правда много.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Уже начали дербанить? Понял, надо принять меры.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Найти склад продовольствия на локации Резерв", "629f1259422dff20ff234b4d": "Выжить и выйти с локации", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23022,6 @@ "5d4bfe7c86f7744a9c66b316": "Передать Военный аккумулятор", "5d4c020a86f77449c463ced6": "Найти в рейде Снаряды ОФЗ 30х165мм", "5d4c028c86f774389001e027": "Передать Снаряды ОФЗ", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23030,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "Так, решились? Всего лишь парочку уколов. Вот здесь и здесь. Соблюдайте покой, хотя бы пару дней, больше отдыхайте и принимайте витамины.", "5d6fb8a886f77449db3db8b6": "Передать рубли", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23038,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "Что ж, мне передали, вы взялись за обучение. С вашими навыками, уверен, вы очень быстро усвоите материал.", "5d6fbf0f86f77449d97f738e": "Передать евро", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23046,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Что, уже разобрался? Ну ты красавец. Стой, я размеры с тебя сниму и прикину как шить буду. Обещал же. Только сам понимаешь, редкий крой - обойдется недешево. Зато три полосочки, икона стиля.", "5dc53fd386f77469c87589a3": "Найти и нейтрализовать Киллу", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23059,6 @@ "5e382fef86f7741e53790d40": "Передать ткань", "5e38356d86f7742993306cac": "Передать ткань", "5e3835e886f77429910d4465": "Передать Мотки паракорда", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23072,6 @@ "5e383a6386f77465910ce1f7": "Передать ткань", "5e383a6386f77465910ce1f8": "Найти в рейде Мотки паракорда", "5e383a6386f77465910ce1f9": "Передать Мотки паракорда", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23085,6 @@ "5e4d4ac186f774264f75833a": "Передать ткань", "5e4d4ac186f774264f75833b": "Найти в рейде Липкую ленту \"KEKТЕЙП\"", "5e4d4ac186f774264f75833c": "Передать Липкую ленту", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23098,6 @@ "5e4d515e86f77438b2195248": "Передать ткань", "5e4d515e86f77438b2195249": "Найти в рейде Липкую ленту \"KEKТЕЙП\"", "5e4d515e86f77438b219524a": "Передать липкую ленту", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23105,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23112,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23119,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23126,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23133,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23140,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23147,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23154,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23161,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23168,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23175,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23182,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23189,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23196,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23203,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23210,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23217,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23224,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23231,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23238,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23245,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23252,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23259,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23266,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23273,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23280,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23287,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23294,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23301,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23316,10 @@ "5eda19f0edce541157209cee description": "О, как раз вовремя зашел. Может слыхал уже, что новый доктор нарисовался, только вот нихера не добренький эскулап - одних лечит, а других калечит. Говорят, лекарствами барыжит и оперирует прямо на улице. Санитаром кличут, прикинь? На побережье обосновался, и, что интересно, местная шпана ему очень даже рада. Ясен хер, он их штопает, да еще и ништяки толкает - наркоту и аптечки всякие. А это значит, что запасы у него есть, и видимо нихеровые.. Разузнать бы про этого Санитара надо, но по-тихому пока что: просто узнай, где эта падла тусит, и маячками пометь столики его. Думаю, там же он и барыжит, и штопает. Возьмешься?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "Говоришь, запасов там действительно прилично? Видно, свежий медсклад распечатал и теперь барыжит. Эх, найти бы тот склад, но это уже не твой гемор. Пока что.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Найти и пометить первое место торговли Маркером MS2000 на локации Берег", "5eda1da9a58a4c49c74165ee": "Найти и пометить второе место торговли Маркером MS2000 на локации Берег", "5eda1dd3317f6066993c1744": "Найти и пометить третье место торговли Маркером MS2000 на локации Берег", "5f0389268580cc37797e0026": "Выжить и выйти с локации", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23328,6 @@ "5edab4b1218d181e29451435 failMessageText": "Бабе, значит, этой поверил? Ты хоть понимаешь, что обманывает она тебя для своей же выгоды? Думаешь, раз одних Санитар лечит, то других убивать может? Совсем повернулись с войнушкой своей, уже черное от белого не можете отличить. Уйди с глаз моих, один хочу побыть.", "5edab4b1218d181e29451435 successMessageText": "Правильно ты поступил. Пусть другие и говорят, что Санитар делал добрые дела, но зла он принес куда больше. Не верь этим людям. Я таких, как Санитар этот, уже повидал: стоит им поехать кукухой, и всё - назад дороги нет. Таких только стрелять как бешеных псов.", "5edab5a6cecc0069284c0ec2": "Найти и нейтрализовать Санитара", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23338,7 @@ "5edab7d3cc183c769d778bc5": "Найти группу, направленную в Санаторий, на локации Берег", "5edab8890880da21347b3826": "Найти группу, направленную на пирс, на локации Берег", "5edab8e216d985118871ba18": "Найти группу, направленную к коттеджам, на локации Берег", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Выжить и выйти с локации", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23346,6 @@ "5edaba7c0c502106f869bc02 description": "Потеря моих людей на побережье, конечно, очень неприятное событие, но новый источник медикаментов важнее. Нам просто нужен другой подход к этому делу. Моему помощнику удалось подкупить местного с побережья, и тот рассказал о Санитаре, враче, которого мы ищем. У него небольшая охрана и несколько точек на побережье. Странно, но он оперирует прямо на улице, причем часто прячет инструменты недалеко от таких мест, в зданиях рядом. Достаньте мне эти инструменты. Санитар будет более сговорчивым, если поймет, что мы можем в любой момент помешать его торговле и захватить контроль над территорией.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Принесли инструменты? Положите в тот бокс, надо их обработать хорошенько, непонятно, где они побывали до нас. Сразу видно, что у него сложные условия: всё в крови, сплошная антисанитария. Ладно, дальше уже мое дело. Передам ему эти инструменты вместе с письмом через того местного, что мы подкупили. Так Санитар поймет, что от него хотят.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Найти в рейде Помеченный синим символом хирургический набор Санитара на локации Берег", "5edabb950c502106f869bc04": "Передать хирургический набор Санитара", "5edabbff0880da21347b382b": "Найти в рейде офтальмоскоп с маркировкой Санитара на локации Берег", @@ -23706,10 +23357,6 @@ "5edabd13218d181e29451442 description": "Эй, серьёзный! Ландай сюды, дело для тебя есть. Слыхал, Прапор тебя посылал за запасами наркоты какого-то там Санитара. Да не кривись ты раньше времени! Нафиг мне не сдалась наркота эта, пусть Прапор ее соберет и в закрома спрячет, ты-то уже барыш от него получил, а? Тебе всего лишь надо эти умные штуки положить в контейнеры, что на нычках то санитарских. Прапор ничего не пронюхает, дармовое дело на пару минут, зато барыш хороший. Только давай по-быренькому, пока ящички эти не забрали.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Ништяк, ништяк! Наконец-то Прапор засветит свои схроны, там, наверное, целые горы хабара. Волыны, маслята, харчи, ширево. Балдеж! Но это уже мы сами провернем. Без обид. Спасибо.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Выжить и выйти с локации", "5f071a9727cec53d5d24fe3b": "Найти и пометить медконтейнер у Санатория Маркером MS2000 на локации Берег", "5f071ae396d1ae55e476abc4": "Найти и пометить медконтейнер у коттеджей Маркером MS2000 на локации Берег", @@ -23742,10 +23389,6 @@ "5edac34d0bb72a50635c2bfa description": "Молодой человек, постойте. Я знала, что Егерь попросит вас убить Санитара, но этого не нужно делать. Понимаю, как это звучит: со слов Егеря это просто какой-то монстр во плоти, но это не так. Я уверена, что Санитар просто пытается помочь местным. С учетом нынешних условий он делает сложнейшие операции, и неудивительно, что часто они заканчиваются плохо. Он врач с ценнейшими знаниями, которые могут спасти еще много жизней. Врач с доступом к складу медикаментов, которые крайне важны для нас и моих клиентов. К тому же, он уже вступил в переговоры со мной и скоро начнет сотрудничать, я в этом уверена. Но для этого мне нужно то, что его заинтересует, и, кажется, я поняла, что это: Лаборатория. Ключи доступа и образцы военных стимуляторов - думаю, на их основе он и проводит свои эксперименты. Сможете найти их для меня? Ключи доступа можете искать где хотите, но препараты должны быть запечатанными, так что их необходимо найти вам самим.", "5edac34d0bb72a50635c2bfa failMessageText": "Жаль, что вы послушали этого Егеря и не вняли голосу разума. Санитар со своими знаниями и медикаментами мог нам во многом помочь. Да, он не был святым, но ведь у всех должен быть шанс искупить свои грехи. Но вы лишили его и этого, я вами очень недовольна.", "5edac34d0bb72a50635c2bfa successMessageText": "Спасибо. Я знала, что вы поймете, насколько сейчас важен Санитар и его... медикаменты. Он уже выказал большой интерес к ключ-картам и стимуляторам и прислал первую партию товара. Вот, это ваша доля.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Не убивать Санитара", "5f04935cde3b9e0ecf03d864": "Передать ключ-карты ", "5f04944b69ef785df740a8c9": "Передать ключ-карту", @@ -23762,10 +23405,6 @@ "5edac63b930f5454f51e128b description": "Гуд дэй вам, наемник. Потому что день действительно гуд. Я был прав, новые стимуляторы связаны с TerraGroup. Механик нашел информацию о Санитаре. Немного, и это дорого стоило для нас, но лучше чем ничего. Санитар работал в TerraGroup - и не рядовым сотрудником. Также имеет образование медицинское, инфекшиос дизис специалист, разведен... Ну, вот и вся доступная нам информация. Дайте мне больше, друг мой, ай эм вэри интерестэд, откуда у него доступ к таким ресурсам. Найдите его рабочее место и узнайте больше.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "Мы расшифровали тот флэш-драйв. Там много важной информации, но я не могу рассказать всё. Секретно. Могу рассказать о Санитаре, он сайнтист… ученый. Исследовал препараты и создавал их, а потом тестировал на людях. Очень... смелые, или, как это иногда называют, нот этикал исследования.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Передать Флеш-накопитель с изолентой", "5eec9d054110547f1f545c99": "Найти рабочее место Санитара в Лаборатории", "5eff5674befb6436ce3bbaf7": "Найти информацию о деятельности Санитара", @@ -23776,11 +23415,9 @@ "5ede55112c95834b583f052a description": "Здравия тебе, воин. Мне тут ворона на хвосте принесла, что жостики эти из бывших, которые на резерве окопались, раскопали проход к некому подземному бункеру под военной базой. И, ясен-красен, не своими руками - согнали туда, видать, кучу диких, они-то и пахали. Поди, там их и пришили, ну да и пофиг, их дело. Короче, что за бункер - хрен знает. Есть у меня наводка одна от правильного источника о том, что командный бункер там где-то есть. Вот только тот ли это бункер? Может, это обычное убежище для салаг. Гонять серьезную группу, чтобы те просто от рейдеров полегли, мне и нахрен не надо. Глянь сам, чё за катакомбы и есть ли резон туда соваться, если выяснишь, что командный - сразу ко мне. Возьмешься? А уж наградой не обижу.", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "Значит, и правда командный бункер, говоришь? Не слухи, значит... Охренеть! Пошлю сегодня солдат, пусть пошуршат там как следует. Это же сколько бабла можно с этого бункера высосать! Ладно, держи награду, как и договаривались.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Выжить и выйти с локации", "5ee8eea538ca5b3b4f3c4647": "Найти подземный бункер на локации Резерв", "5ee8eecc0b4ef7326256c660": "Найти комнату управления в подземном бункере на локации Резерв", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23425,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Служивый, а ты как раз вовремя, тебя-то мне и не хватало. Помнишь тот сраный командный бункер под военкой, про который ты унюхал? В общем, мои ребята туда утопали, и, оказалось, место-то с душком. Строили, видать, с учетом высокого уровня защиты: фильтры, генераторы, все подходы перекрыты охренеть какими прочными гермозатворами - прям подземная крепость была. Но рейдеры долбанные ларчик-то отрыли и окопались там как алабамские клещи. В общем пацаны мои серьёзно так отхватили, меньше половины выбралось наружу. Но ты понимаешь, сука, теперь ещё большая интрига. Короче, просто так мои туда больше не сунутся, а вот ежели разведать... Короче, солдат ты бывалый, не пальцем деланный, надо мне, чтобы ты потихоньку, на мягких лапках, нашёл где все входы в эту хрень подземную, пацаны говорят, гермодвери там такие мощные. Вот и выясни, где все эти входы находятся.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Заходи, рассказывай. Ага, вот оно как... И тут, значит, дверь, да царапай прямо на моей карте. Выходит, бункер этот почти все объекты базы связывает? Охренеть, как удобно, можно пол базы у всех под носом пройти, комар и носа не подточит. Ясен перец, почему там рейдеры держатся, вся база под контролем. Благодарствую, боец! Твоя награда.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Выжить и выйти с локации", "5ee8ec5ed72d953f5d2aabd1": "Найти гермозатвор, ведущий к госпиталю (белый слон) на локации Резерв", "5ee8ecd75eb3205dae135d17": "Найти один из двух гермозатворов, ведущих к учебному корпусу (черный слон) на локации Резерв", @@ -23807,7 +23440,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "Вот оно что, прямо на первом этаже и нашел? Сколько раз туда посылал людей, и всегда с пустыми руками приходили, бестолочи. В сам кабинет заходил, нашел чего интересного? Ладно, неважно, всё равно пошлю ребят. Держи награду, ты заслужил. Спасибо тебе.", "5f0488c590eea473df674002": "Найти кабинет Санитара в Санатории", "5f04983ffbed7a08077b4367": "Выжить и выйти с локации", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23447,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23454,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23461,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23468,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23475,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23482,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23489,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23496,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23503,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23510,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23517,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23524,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Здравия желаю, боец. Дело к тебе есть. Короче, одна из моих групп на связь не выходит, причём давненько уже. Как движуха пошла, отправил их в район леса вывезти груз один, важный. Боюсь, приняли их там: в последний раз как связь пробилась, сообщали, что Юсеки их поджимают с холмов. Разведай обстановку, проверь, может, кто в живых остался. В колонне точно были броник Бардак, Буханка, и грузовик какой-то, не помню точно, какой. Думаю, что и Юсеки где-то там поблизости обосновались, так что будь начеку. Найди мою автоколонну и лагерь этих Юсеков, если он там реально есть. Вольно.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "Значит, не добрались пацаны мои, а транспорты разграблены... И точка Юсеков неподалёку, говоришь? Плохо, груз важный был. Ладно, свою часть работы ты выполнил, держи награду. Свободен.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Найти пропавший конвой Прапора на локации Лес", "5fd9fad9c1ce6b1a3b486d05": "Найти временный лагерь USEC на локации Лес", "5fd9fad9c1ce6b1a3b486d0d": "Выжить и выйти с локации", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23535,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "От такой бойни аж воздух в Лесу сотрясался. Дрянь получила по заслугам, всё благодаря тебе. Держи, награда за подвиг соответствующая. Не стесняйся, можешь теперь и новые винтовки покупать.", "600303250b79c6604058ce30": "Найти и нейтрализовать Штурмана", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23554,6 @@ "60892590fa70fc097863b8e5": "Найти и осмотреть вторую БМП LAV III на локации Резерв", "608925d455f4ac386d7e7fc4": "Пометить первую БМП LAV III Маркером MS2000", "608930aa1124f748c94b801e": "Найти и осмотреть танк Т-90 на локации Резерв", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23563,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Грэйт-грейт-грэйт! Тэйк май мани! Прошу не рассказывать никому о нашей сделке ни слова.", "60929ad46342771d851b827a": "Найти коробку с ПУК Т-90М на локации Резерв", "60929afc35915c62b44fd05c": "Передать груз", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23576,6 @@ "60ae0e2c79e83a2cf96f35ce": "Найти третью папку с военными документами на локации Резерв", "60ae0f0586046842a754e21e": "Передать вторые документы", "60ae0f17b809a4748759078c": "Передать третьи документы", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23584,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Хорошо потрудился. Надеюсь, поймут, что к чему, и правильных пацанов валить без разбора не будут больше. Держи за работу.", "608bffeee0cc9c2d4d2ccb29": "Убить Рейдеров в подземном штабе Резерва", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23595,6 @@ "609169cfeca522371e5725c5": "Передать первый журнал", "60ae12ffb809a474875907aa": "Найти Медицинский журнал №2 на Резерве", "60ae134cabb9675f0062cf6e": "Передать второй журнал", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23604,6 @@ "6089732b59b92115597ad789 successMessageText": "Вот он как выглядит! Круто. Спасибо, буду изучать. Вот твоя награда, как и обещал.", "6092942fb0f07c6ea1246e3a": "Найти ГАЛС-Д3 на локации Резерв", "6092947635915c62b44fd05b": "Передать ГАЛС-ДЗ", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23613,6 @@ "6089736efa70fc097863b8f6 successMessageText": "Выход действует? Отлично. Я пока готовлю твою награду, так что расскажи-ка поподробней про механизм открытия этого выхода.", "608a94101a66564e74191fc3": "Найти обесточенный секретный выход на локации Резерв", "608a94ae1a66564e74191fc6": "Выжить и выйти с локации через секретный выход", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23621,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Отлично, пацаны как раз с рейда вернулись, целые-невредимые, без единой царапины. Держи лавэ!", "608ab22755f4ac386d7e7fdc": "Убить Диких в подземном складе Резерва", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23634,6 @@ "608bd149f597ad0a33574d74": "Проверить второй арсенал в южной казарме (Белая пешка) на локации Резерв", "608bd2465e0ef91ab810f98a": "Проверить комнату дежурного в восточной казарме (Черная пешка) на локации Резерв", "608c187853b9dd01a116f480": "Выжить и выйти с локации", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23644,6 @@ "608bfe32c61c4b541b381da9": "Выжить и выйти с локации", "60a4dc7e4e734e57d07fb335": "Пометить первую группу цистерн с топливом Маркером MS2000 на локации Резерв", "60b90232ec7c6f5eb510c195": "Пометить вторую группу цистерн с топливом Маркером MS2000 на локации Резерв", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23652,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Готово? Воздух, кажется, стал свежей. Жаль, конечно, что другими методами вправить мозги этим мародёрам не получилось.", "608a8356fa70fc097863b8f8": "Убить Диких внутри главных казарм на локации Резерв", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23660,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Ну и славно. Мир только чище станет. Синяков этот гад тебе не оставил?", "60c0d187938d68438757cda2": "Найти и нейтрализовать Тагиллу", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Найти в рейде Кепку BOSS Тагиллы", "60cfa5a85f9e6175514de2e3": "Передать Кепку BOSS", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23677,6 @@ "60ec0af8a664b027ab1441af": "Убить бойцов ЧВК на локации Развязка", "60ec0b1871035f300c301acd": "Убить бойцов ЧВК на локации Лаборатория", "60ec2b04bc9a8b34cd453b81": "Нельзя погибать и покидать рейд, пока задача активна (Статус: Убит, Вышел, Пропал без вести)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Убить бойцов ЧВК на локации Эпицентр", "65e19abadf39d26751b3bb1e": "Убить бойцов ЧВК на локации Эпицентр", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23689,6 @@ "60ec18b73b5f7d790a7ad034": "Убить бойцов ЧВК на базе Диких на локации Таможня", "60ec1e72d7b7cb55e94c1764": "Убить бойцов ЧВК на базе Диких на локации Лес", "60ec2229fd1bf4491c4e4552": "Убить бойцов ЧВК на территории Санатория на локации Берег", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23697,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "Вот так-то лучше. Благодарю, вояка. Пацаны говорят, что поспокойней стало, мысль твою эти дебилы поняли.", "60e8650e5d67b234af3d3926": "Убить Диких выстрелом в голову", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23706,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Ну ты даёшь..ты их сам завалил? Ну и нервы у тебя. Что-то не чисто с этими типами, правду тебе говорю...", "60e82c12fd1bf4491c4e4547": "Найти в рейде необычные ножи", "60e82c5926b88043510e0ad7": "Передать ножи", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23721,6 @@ "60e867265d67b234af3d392c": "Передать LEDX", "60f028ca86abc00cdc03ab89": "Найти в рейде наборы медикаментов", "60f028f85caf08029e0d6277": "Передать наборы медикаментов", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Найти в рейде Банки с витаминами OLOLO", "62a70168eb3cb46d9a0bba7a": "Передать банки с витаминами", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23731,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Великолепно, наёмник. Теперь моим людям будет гораздо легче оперировать на локейшн! Благодарю вас за работу.", "60e745d6479eef59b01b0bdc": "Убить Рейдеров на Резервной базе", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23740,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Грэйт, грэйт! Заказчики уже запла– кхм, поблагодарили нас за выполненное задание. Гуд джоб, наёмник.", "60e8174d0367e10a450f7818": "Передать найденный в рейде предмет: Армейский жетон BEAR 50+ уровня", "60e81795479eef59b01b0bdf": "Передать найденный в рейде предмет: Армейский жетон USEC 50+ уровня", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23755,6 @@ "60e743cd0367e10a450f780e": "Найти в рейде Военные COFDM беспроводные передатчики сигналов", "60e7449875131b4e61703b7e": "Передать программируемые процессоры", "60e744c9d1a062318d3d2262": "Передать передатчики сигналов", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Найти в рейде Военные флеш-накопители", "62a7019ea9a0ea77981b57da": "Передать флеш-накопители", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23765,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Отлично, вот эти данные мне и нужны, давай сюда записи. Спасибо, наёмник.", "60e740b8b567ff641b129573": "Убить бойцов ЧВК с расстояния не менее 100 метров", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23774,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Отлично, спасибо тебе большое, друг. Клиент передал, что предметы они получили. Думаю, это не последний заказ, так что буду на тебя расчитывать и дальше.", "60e84ba726b88043510e0ad8": "Спрятать прицел Trijicon \"REAP-IR\" под основанием строительного крана у стройки на локации Таможня", "60e85b2a26b88043510e0ada": "Спрятать прицел Trijicon \"REAP-IR\" за мусорными контейнерами на новой заправке на локации Таможня", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23782,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Респект, братуха, нереально выручил! Ты если видишь каких ребят недобрых в Ультре, то дай мне знать потом. Может, надо будет опять разбираться.", "60e73ee8b567ff641b129570": "Убить бойцов ЧВК в торговом центре на локации Развязка", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23795,6 @@ "60e733b80367e10a450f7807": "Передать виски", "60f028268b669d08a35bfad8": "Найти в рейде Канистры очищеной воды", "60f0284e8b669d08a35bfada": "Передать чистую воду", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Найти в рейде Бутылки пива \"Певко светлое\"", "62a70110eb3cb46d9a0bba78": "Передать бутылки пива", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23811,6 @@ "60e7261382576b5f4f21c495": "Найти и нейтрализовать Штурмана", "60e7261eb567ff641b129557": "Найти и нейтрализовать Глухаря", "60e72629465ea8368012cc47": "Найти и нейтрализовать Санитара", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23819,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "А вот и ты, ловкач. Порадовал ты старого и, думаю, выводы ты сделал. Ты сам оружие и монолит, а не то, что сколько железа на себе носишь.", "60e729cf5698ee7b0505743c": "Убить бойцов ЧВК, не используя броню и шлемы на локации Лес", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23827,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Смелое решение, наёмник.", "60effdac12fec20321367038": "Передать защищённый контейнер \"Эпсилон\"", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24413,6 @@ "639135a7e705511c8a4a1b78 description": "Слушай, брат, можешь пробить мне контакты одного человека? Он уже свалил из города. Почему сам не могу найти? Да потому что звать его, блин, Иван Иванов. Серьезно, не угораю. А их двести тыщ человек по всей стране с таким именем. Если б найти его адрес бывшей прописки в Таркове, уже можно хоть как-то пробивать по базам. Дай подумаю, какая ещё по нему инфа. Вроде бы он бар держал, во. Название бара не знаю... Ну, блин, я не знаю, как ты поймёшь, который бар - его. А, ещё вспомнил: он по балету тащился. Каждый сезон ездил в Мариинку. Пытался даже у нас чё-то в театре ставить, да только у нас народ не шёл смотреть на баб в балетных пачках. Ещё информацию? Да это и так дофига! Я в тебя верю, подключай чуйку свою.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "И бар нашел, и адрес? Давай-ка, запиши мне. Ты лучше, чем те эктрасенсы из телика, которые это, людей ищут. Слушай, брат, ты не хочешь в детективы пойти, как всё это закончится? Я тебе шляпу подгоню, как у Пуаро, обещаю.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Найти квартиру балетмейстера на локации Улицы Таркова", "63a7daae04d3dc28a52a2109": "Выжить и выйти с локации", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24441,6 @@ "639135c3744e452011470807 description": "Иди сюда, работничек. В городе всё чин-чинарем? А у меня несколько групп пропало. Я сначала решил, хули кто-то такой борзый, решил мои дела перекрыть? Или на понт берет меня. Уже на фраера этого подумал, с Маяка. А потом ко мне приносят маляву от Севы Шкета. Пишет, что держали их в частной тюряге. Слыхал про нее, что в городе есть такая? Заныкана где-то в жилых домах. Бизнесмены сливали туда своих конкурентов и тех, кого проще держать под замком, чем на воле. По мне, лучше пришить, чем так. Но, походу, у кого-то пальто слишком белое, чтоб доводить дела до конца... А расклад такой: Шкет один со всей группы сделал ноги, но теперь гасится, на связь не выходит. Даже не объяснил, где кентов искать, мышь ссыкливая. Пацаны сами виноваты, что попались как последние лохопеты, и я б послал их на хер за такой косяк. Но сам факт, что меня кто-то пытается прокатить - это ни в какие ворота. Все, харэ базарить. Найди, где держат пацанов.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "У-у, сука. Нахера их там держали? Я б понял, если б мне маляву прислали, мол пришьем твоих людей, если не отстегнешь лавэ. Маньячелло какой, что ли? Приходи через время, я наведу справки, че за дела. ", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Выжить и выйти с локации", "63a7d767f32fa1316250c3da": "Обнаружить, где держали пропавшую группу на локации Улицы Таркова", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24587,6 @@ "6391372c8ba6894d155e77d7 description": "Опять таже тема, запись и символ странный. Хрень какая-то происходит, чертовщина. Людей в жертву приносят. Кому? Зачем? И как Норвинская земля их носит? Столько вопросов, ноль ответов. Я каждый раз думаю, что ничего хуже мы уже не встретим. С мародерами, у которых одни доллары на уме, мы бились. С убивцами, которым лишь бы пострелять в невинных, тоже. Но там-то я хоть мотивацию понимаю, в душе зверь человека победил. Но с какой целью люди становятся вот этими... Эх, не понять мне людей. Так, воин, я их в лесу их поищу, а ты в городе. Где-то должна быть их точка. Ищи символ этот, не промахнёшься.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Нашел? Где? А был кто, что за символ-то? Надписи, подсказки? Ещё больше вопросов...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Выжить и выйти с локации", "63a7d6d61f06d111271f5aeb": "Обнаружить место сбора сектантов на локации Улицы Таркова", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24655,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24853,6 @@ "63a5cf262964a7488f5243ce description": "Приветствую! Ну что, продолжим, вошёл в азарт? Задача специфическая, нужно протестить игрушку для ближнего боя, причём отечественную, да так, чтобы условия были самые что ни на есть боевые в условиях города. Есть у меня покупатели, не верящие в эффективность этой игрушки... Переубедишь?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Ну, что? Выполнимая задача? Подходит для ближнего боя в городских условиях?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Убить бойцов ЧВК, используя пистолет-пулемет СР-2М с глушителем и прицелом КП-СР2 на локации Улицы Таркова", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25674,7 +25225,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Есть ещё целые? Ну вообще крутяк, будем потрошить. Твоя награда.", "6572e876dc0d635f633a5718": "Найти первую группу банкоматов на улице Климова на локации Улицы Таркова", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Проверить магазин \"Спаржа\" в отеле Pinewood", "6572e876dc0d635f633a571e": "Проверить магазин \"Гошан\" в Concordia", "6572e876dc0d635f633a5720": "Найти в рейде и передать Палку колбасы \"Солёный пёс\"", @@ -26121,7 +25671,6 @@ "66058ccf06ef1d50a60c1f48 description": "Значит, ты просто увидел труп. Ты его обыскивал? А вокруг смотрел? Я просто к тому, что ты слепой. Чемпион, насколько я знаю, вёл дневник. Да, как школьница, но тебе это даже на руку.\n\nСгоняй ещё раз туда и посмотри внимательнее. В дневнике наверняка больше информации о Распорядителе, какой-то компромат на него. Если ты, конечно, хочешь перестать быть просто расходным материалом на Арене.\n\nИ ещё одно: принесёшь компромат на Распорядителя мне — я в долгу не останусь.", "66058ccf06ef1d50a60c1f48 failMessageText": "Решил остаться у Распорядителя под юбкой? Твоё право.", "66058ccf06ef1d50a60c1f48 successMessageText": "Хорошо сработано. Рад, что ты взял свою судьбу за яйца.", - "660da00baeaeb6238c571cc6": "", "664fd6feb93ba0de1aa6cacc": "Найти тайник чемпиона", "664fd7aba8d870609d099fed": "Найти компромат на Распорядителя", "664fd7f0837ee02ad4c8e658": "Передать найденную информацию", @@ -27025,8 +26574,6 @@ "66a74c628410476dd65543be description": "Приветствую, друг. Дела у меня в последнее время идут не то чтобы гладко. С сегодняшнего дня я временно поднимаю цены на товары и услуги, пока не решу насущные проблемы. Один знакомый наёмник собирает группу в рейд на лабораторию, ему нужно надёжное оружие. Сможешь помочь? Вижу, в AR-15 ты сечёшь не меньше моего, поэтому и решил тебе довериться. Необходимо собрать M4А1 с суммарной отдачей не больше 300 и эргономикой не ниже 70. Да, не так уж и просто. Обязательно нацепи прицел EOTech XPS 3-0, от других прицелов клиент категорически отказывается. ", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Большое спасибо. Думаю это поможет мне продержаться на плаву какое-то время.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Модифицировать М4A1 в соответствии с требуемой спецификацией", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27650,9 +27197,7 @@ "673f629c5b555b53460cf827 description": "Знаешь, ты вот мне помогаешь, а я ведь тебя даже в курс дела не ввёл... Пора бы уже. Короче, работаю я сейчас с Лыжником. Товары его вожу, а бывает, и в операциях надо участвовать. Сначала это было выгодной халтуркой, но теперь эта козлина с меня не слазит. За кабанчика своего меня держит, падла!\n\nОн похоже узнал как-то, что мне это всё надоело, и вот и пацанчиков своих на мою базу нагнал, чтобы проучить. Но я терпеть это говно больше не хочу. Я б давно от него ушёл, но мне нужна поддержка и крыша. А ты ведь с другими торговцами общаешься и можешь замолвить за меня словечко. Поможешь другу?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Ну да, не подмажешь — не поедешь.\n\nНо главное, что начало положено. Теперь у меня есть реальные шансы уйти от этого говнюка!", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Продать любые предметы Барахольщику", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Продать любые предметы Прапору", "675196dff77c0b8436ec1ef5": "Продать любые предметы Миротворцу", "673f629c5b555b53460cf827 acceptPlayerMessage": "Ладно, я постараюсь с ними поговорить.", @@ -27858,7 +27403,6 @@ "6746053b5b555b53460d9896 description": "Ко мне малява одна пришла. Водила настроен серьёзно и ищет себе новую крышу. Вряд ли он одупляет все риски такого «перехода». В любом случае, такого варианта я ему и не давал! Сейчас наводка подтвердилась только насчёт Миротворца. \n\nНадо бы тебе зайти к нему и напомнить что мы с ним вообще-то общие дела имеем! Пусть вспомнит, кто его ключевой партнёр.", "6746053b5b555b53460d9896 failMessageText": "Ты чё, подумал, что я не узнаю про твою помощь водиле? Да я на твоё место ровного кента за день найду!\n\nА вот тебе придётся нормально так поработать, чтобы из этого говна вылезти.", "6746053b5b555b53460d9896 successMessageText": "Миротворец шарит за бизнес, хотя и кажется иногда, что просто без плана барыжит. Теперь он точно против меня не пойдёт.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Продать любые предметы Миротворцу", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -28008,7 +27552,6 @@ "6752f6d83038f7df520c83e8 description": "Здравствуй. Ты наверняка видел БТР, который разъезжает по Таркову. Раньше он предлагал свои услуги ЧВК вроде тебя, но в последнее время работает ещё и с Лыжником. Водитель обращался ко мне, когда восстанавливал БТР. Интересная была задачка... Впрочем, сейчас речь о другом. \n\nОн давно не выходил на связь, а сейчас внезапно попросил о помощи. Судя по всему, случилось что-то серьёзное. Можешь добраться до него и разузнать, в чём дело? В Таркове осталось не так много людей со смекалкой и амбициями. Нам стоит держаться друг друга.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "А ведь я говорил ему, что сотрудничать с Лыжником может быть опасно... Конечно, это даёт свои привилегии, но едва ли в таком большом бизнесе можно остаться независимым. \n\nИнтересно, кто решил выйти против Лыжника? Ведь БТР должен быть под его защитой...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Выполнить задание \"Задержка отправления. Часть 1\"", "6752f86d538945df8cc3fc3a": "Найти посылку Прапора на локации Лес", "6756bcb3f93f4c1fc2b2d685": "Выжить и выйти с локации", @@ -28740,7 +28283,6 @@ "6514134eec10ff011f17cc26 name": "Я слышу голос Тьмы", "6514134eec10ff011f17cc26 description": "Убить Knight 15 раз, играя за ЧВК", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", "65142ceb93d02c082b8e4cc9": "Убить Birdeye", "65142d0701e02ae1f559d606": "Убить Big Pipe", "651413e9c31fcb0e163577c9 name": "Не в бровь, а в глаз", diff --git a/Libraries/SptAssets/Assets/database/locales/global/sk.json b/Libraries/SptAssets/Assets/database/locales/global/sk.json index 5e95eb1d..11ad8ca2 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/sk.json +++ b/Libraries/SptAssets/Assets/database/locales/global/sk.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Skry balík v odpočivárni na druhom poschodí neďaleko východu Gate 3 na mape Factory", "5968929e86f7740d121082d3": "Získaj zabezpečený fascikel z kancelárie riaditeľa Tarcone vo vnútri prekladiska tovaru na mape Customs", "5977784486f774285402cf52": "Preži a opusti mapu Factory", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Veru pôsobivé! To je skoro ako nukleárny kufrík! Niet divu, že vôbec nešetril ľudmi, aby to dostal von.", "5968981986f7740d1648df42": "Získaj cenný predmet z izby 203 v ubytovni na mape Customs", "5968988286f7740d14064724": "Hand over the valuable item", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Gain access to dorm room 214 on Customs", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "I thank you from the bottom of my heart. I won’t even explain how much and at the same time how little it is, in our conditions. Most people would keep it for themselves, but you shared it with those who needed it. Thank you.", "5969f98286f774576d4c9542": "Find Morphine injectors in raid", "5969f99286f77456630ea442": "Hand over the injectors", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Find Spark plugs in raid", "596b470c86f77457ca18618a": "Hand over the batteries", "596b472686f77457c7006f8a": "Hand over the spark plugs", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "And he said nothing was there! Although they might be empty. Need to check. In any case, here's your cut.", "5979ee2986f7743ec214c7a4": "Find Secure Flash drives in raid", "5979ee4586f7743ec214c7a5": "Hand over the Flash drives", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Locate and mark the third fuel tank with an MS2000 Marker on Customs", "59c128f386f774189b3c84bb": "Locate and mark the fourth fuel tank with an MS2000 Marker on Customs", "5c92184386f7746afa2e7840": "Survive and extract from the location", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Great! Here, take this as your reward. In the meantime, I'll hand this flash drive over to my specialists to decrypt it.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Stash an SV-98 sniper rifle in the boat", "5a27d85286f77448d82084e7": "Stash a Leatherman Multitool in the boat", "5a3ba11786f7742c9d4f5d29": "Locate the boat hidden next to the breakwater on Shoreline", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Survive and extract from the location", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Great, you can always count on me from now on.", "5a56489d86f7740cfe70eba2": "Hand over USD", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "You’ve got it? Leave it in the corner, thank you. A beautiful thing, right? Anyway, I'm a little busy right now, can't talk for long.", "5accd5e386f77463027e9397": "Modify an MP-133 to comply with the given specifications", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Well, in the capable hands this weapon can overthrow regimes and create revolutions. Leave it in the corner, I'll check it later.", "5accd9b686f774112d7173d1": "Modify an AKS-74U to comply with the given specifications", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Handy for CQB and quiet... Good modification, the client will be satisfied.", "5accde3686f7740cea1b7ec2": "Uprav samopal MP5, aby vyhovoval daným požiadavkám", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Thank you, leave the rifle on the table, I'll hand it over to Di— ahem, Sniper.", "5acce08b86f7745f8521fa64": "Modify a DVL-10 to comply with the given specifications", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Yeah, you can't hide from something like this. Love 7.62, a good caliber. Thanks for the work. Next order should be tomorrow.", "5acce11786f77411ed6fa6eb": "Modify an R11 RSASS to comply with the given specifications", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Hand it over, let's check out your build. Yeah, the weapon of democracy... Thank you.", "5accdfdb86f77412265cbfc9": "Uprav útočnú pušku M4A1, aby vyhovovala daným požiadavkám", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Fix the first control board with a Toolset on Factory", "5ac7a51a86f774738a4ffc96": "Fix the second control board with a Toolset on Factory", "5ac7a5d586f774383111ee63": "Survive and extract from the location", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "Hand over the items", "5ac5061386f77417e429ce7a": "Find Printed circuit boards in raid", "5ac5062586f774587c327395": "Hand over the items", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Nájdi na colnici sklad so zadržaným tovarom", "5ac6248586f77416781dd3a3": "Získaj balík s grafickými kartami", "5ac624b286f77416781dd3ac": "Odovzdaj balík", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Hand over the items", "5ac5083d86f7740be2744eed": "Find CPU Fans in raid", "5ac5084d86f7740bde1b0031": "Hand over the items", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "Locate the first signal source on Shoreline", "5ac5e13586f7746074388f93": "Locate the second signal source on Shoreline", "5ac5e18c86f7743ebd6c9575": "Survive and extract from the location", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Hand over the items", "5ac5e98886f77479bc6ca201": "Hand over the items", "5ac5ea0586f774609f36280c": "Hand over the items", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Find PC CPUs in raid", "5cb6f88d86f7747d215f09c1": "Find Rechargeable batteries in raid", "5cb6f8de86f7740e9d452685": "Find Printed circuit boards in raid", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Seventh digit after the decimal separator in the pi number? IIO? Okay, when the time comes, I'll contact you.", "5ac5eb3286f7746e7a509a09": "Reach the required Attention skill level", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Hand over the items", "5ac5ef9886f7746e7a509a2d": "Find Wilston cigarettes in raid", "5ac5eff886f7740f43322559": "Hand over the items", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "Nájdi druhý východ z továrne", "5ac61adf86f774741c1bf096": "Nájdi tretí východ z továrne", "5ac61b1486f7743a8f30fc84": "Preži a opusti oblasť", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Nájdi štvrtý východ z továrne", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "I don't like to pretend, although we all do. Sometimes in order to survive, and sometimes because we’re just afraid. You know, I'm not exactly much of a talker, especially with strangers, but you seem like a nice guy. If you managed to earn my trust, I think you'll come to terms with just about anyone. After all, only personal relationships will help us survive now. Speak with Pavel Yegorovich. When he starts to trust you, perhaps I will be able to set up the supply of gunpowder. I know, he's not a saint, but his gunpowder is essential for me.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich is one of the few who stayed. I wonder if it’s because he’s military or just didn't have time to leave. Although, I feel he just has some shady business going.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Reach level 3 loyalty with Prapor", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Great gun, a solid build. There are no new orders, but you can come by tomorrow.", "5ae34b8b86f7741e5b1e5d48": "Modify a Remington Model 870 to comply with the given specifications", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "A comfortable weapon, masterfully done, thank you. I'll let the client know the weapon is ready. ", "5ae3550b86f7741cf44fc799": "Modify an AKM to comply with the given specifications", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "So, is the Zenit AK ready? Great, leave it on that crate, thank you. You can come over for the next order tomorrow, if you want.", "5ae3570b86f7746efa6b4494": "Modify an AKS-74N to comply with the given specifications", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "I think i figured how to train the network! Ah, yes, this AK will do, thank you. Leave it somewhere in the corner, I'll look into it later.", "5ae445f386f7744e87761331": "Modify an AK-105 to comply with the given specifications", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Finished with the rifle? Great, hand it to me. I've got an interesting key here, might come in handy to you. It opens the gun store in Ultra, the KIBA store. It's got some great weapon mods in there, could be useful for our future gunsmithing.", "5ae4479686f7744f6c79b7b3": "Modify an AS VAL to comply with the given specifications", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Welcome to the crew, homie. So, down to business?", "5ae44c6886f7744f1a7eb2b8": "Reach level 2 loyalty with Ragman", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Reach level 2 loyalty with Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Shooting like a sniper, good shit. My guys are saying that Interchange is filled with Scav bodies and Ultra is quieter now, so here's your reward, you've earned it.", "5ae44ecd86f77414a13c970e": "Eliminate Scavs on Interchange", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "Locate the DINO CLOTHES store on Interchange", "5ae4511d86f7740ffc31ccb5": "Locate the TOP BRAND store on Interchange", "5ae4514986f7740e915d218c": "Survive and extract from the location", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Locate and mark the second fuel tank with an MS2000 Marker on Interchange", "5ae452fa86f774336a39758e": "Locate and mark the third fuel tank with an MS2000 Marker on Interchange", "5ae4531986f774177033c3e6": "Survive and extract from the location", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Beauty will save the world, as they say. Thank you, really helped me out, brother. The hats are gonna be sold in just one day, trust me. Here, take this as a reward.", "5ae4543686f7742dc043c903": "Hand over the ushankas", "5ae454a086f7742be909a81a": "Hand over the hats", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Find Ushanka ear-flap hats in raid", "5fd89799c54dc00f463272d3": "Find Kinda Cowboy hats in raid", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "Hand over the OLI cargo manifests", "5ae9b3b186f7745bbc722762": "Locate and obtain the IDEA cargo manifests on Interchange", "5ae9b3c986f77432c81e2ce6": "Hand over the IDEA cargo manifests", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Found the docs? Big thanks. Hand them over, let's see where our little cargo disappeared.", "5ae9b5bd86f774307c29df37": "Locate and obtain the OLI cargo route documents on Interchange", "5ae9b63286f774229110402d": "Hand over the documents", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Hand over the ski hat", "5ae455fb86f7744dd8242380": "Find a Pilgrim tourist backpack in raid", "5ae4562086f774498b05e0dc": "Hand over the backpack", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "Hand over the armor", "5ae9b91386f77415a869b3f3": "Obtain BNTI Gzhel-K armor in 50-100% durability", "5ae9b93b86f7746e0026221a": "Hand over the armor", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "Hand over the chest rigs", "5af079e486f77434693ad7f8": "Find BlackRock chest rigs in raid", "5af07a0286f7747dba10d8ac": "Hand over the chest rigs", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Hand over the first book", "5ae9c0e186f7746419683c5e": "Locate and obtain the second book of clothes design on Interchange", "5ae9c10686f774703201f146": "Hand over the second book", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Wow wow, easy there, I'm on your side, man! Sorry, I'm just fucking around. I see you have mastered your charisma, that's good. Let's talk about business then.", "5ae9c29386f77427153c7fb0": "Reach the required Charisma skill level", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Seems like it went without a hitch, thanks.", "5ae9c38e86f7743515398707": "Reach level 3 loyalty with Therapist", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Stash a Shemagh (Green) at the sawmill docks on Woods", "5ae9e2a286f7740de4152a0a": "Stash RayBench Hipster Reserve sunglasses at the sawmill docks on Woods", "5ae9e2e386f7740de4152a0d": "Stash Round frame sunglasses at the sawmill docks on Woods", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "You scared off some Scavs at Ultra once, remember, brother? Now people say it’s getting worse. Word is it’s crawling with all sorts of scum. Got a task for you: check out the situation on Interchange, make sure it's clear to walk around at least. Find safe paths or something. I really need it to go smoothly, okay?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "You're like some Invisible Man or a ghost or something. Hold on, lemme grab a map. So, the safest roads are here and here, right? Awesome, I'll let my guys know. Thank you, friend, really helped me out here.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Survive and extract from Interchange", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Now that’s a true djigit! I'll assemble my guys, they'll bring so much good stuff from Goshan! So, about your reward: check out the new stock of body armor, all for you.", "5ae9e55886f77445315f662a": "Obtain the Goshan cash register key", "5ae9e58886f77423572433f5": "Hand over the key", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Just don't turn on the flashlight unless you want to get blinded for days! Anyway, well done, leave it on that crate.", "5b47796686f774374f4a8bb1": "Modify an AK-102 to comply with the given specifications", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Come on, give it here, I need to hand it over to the client and fast. I hope you haven’t told anyone what this MPX is built for. Well, let's wish the guy luck.", "5b477b3b86f77401da02e6c4": "Modify a SIG MPX to comply with the given specifications", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Thanks, leave them somewhere here. I’m a bit busy right now, catch you later.", "5b477f1486f7743009493232": "Modify an AKMN to comply with the given specifications", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "The rifle is ready? Great. I guess you have already figured out that Sniper's real name is Dima, I let it slip a while ago. Not a word about him to anybody, I hope you understand.", "5b47824386f7744d190d8dd1": "Modify an M1A to comply with the given specifications", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Makes me want to put it on a showcase display. Masterful work, it truly did turn out to be a masterpiece.", "5b4783ba86f7744d1c353185": "Modify an M4A1 to comply with the given specifications", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, cool, give 'em here. Mechanic asked for it, as you've probably figured. I’ll send it to him today. Thank you, big help.", "5b47884886f7744d1c35327d": "Find Fuel conditioners in raid", "5b47886986f7744d1a393e65": "Hand over the items", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Hand over the figurine", "5b478a6c86f7744d190d8f4d": "Find a Roler Submariner gold wrist watch in raid", "5b478a8486f7744d1c35328b": "Hand over the wrist watch", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Find Golden egg in raid", "62a70058ec21e50cad3b6709": "Hand over the figurine", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Stash Peltor ComTac 2 in the specified place", "5b478c7386f7744d1a393fb1": "Stash 6B47 Helmets in the specified place", "5b478cb586f7744d1a393fb5": "Stash BNTI Gzhel-K armor in the specified place", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "Locate and mark the second yellow minibus with an MS2000 Marker on Interchange", "5b478dca86f7744d190d91c2": "Locate and mark the third yellow minibus with an MS2000 Marker on Interchange", "5b478de086f7744d1c3533a1": "Survive and extract from the location", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Locate and obtain the third chemical container on Interchange", "5b4c832686f77419603eb8f0": "Hand over the second container", "5b4c836486f77417063a09dc": "Hand over the third container", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Nice, spot on! Hopefully my boys will recover, quite some gene pool they'll get from the new blood, but heck, they don't have much choice.", "5b47905886f7746807461fe2": "Hand over the respirators", "5b4790a886f774563c7a489f": "Hand over the bloodsets", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Find Respirators in raid", "5ec1388d83b69d213d3c2ee0": "Find Medical bloodsets in raid", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "Install a WI-FI Camera to watch the sawmill dock on Woods", "5b47936686f77427fd044025": "Install a WI-FI Camera to watch the road to the port on Customs", "5b47938086f7747ccc057c22": "Install a WI-FI Camera to watch the Kiba Arms store entrance on Interchange", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "Hand over the third controller", "5b4c7aec86f77459732b4b08": "Hand over the second gyroscope", "5b4c8e6586f77474396a5400": "Obtain the second single-axis fiber optic gyroscope on Shoreline", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtain the first motor controller on Woods", "66d07de6c7ef9040fff0b789": "Hand over the first controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Stash Golden neck chains under the mattress next to BTR-82A in Generic Store on Interchange", "5b4796c086f7745877352c2c": "Stash Golden neck chains in the microwave on the 3rd floor of the dorm on Customs", "5b47971086f774587877ad34": "Stash Golden neck chains in the middle wooden cabin at the sawmill on Woods", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "Eliminate PMC operatives in the time period of 22:00-10:00 on Interchange", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "So, do you feel like Zaitsev yet? Sniper is satisfied with the first test results and has already prepared the next task.", "5bc850d186f7747213700892": "Zabi divochov z viac ako 40 metrov pomocou manuálnej pušky s pevnými mieridlami", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Not bad, not bad. Even I wouldn't be so accurate with my shots, I'm way too old now. While you were shooting, Sniper has prepared the next test for you.", "5bd983d886f7747ba73fc246": "Shoot any target in the legs from over 40 meters away while using a bolt-action rifle", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "Shoot any target in the head from over 40 meters away while using a bolt-action rifle", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "You have got a good reaction time since you're still standing here. Grab your new hat, as promised! Go on, shooter, new tests await you.", "5bc47e3e86f7741e6b2f3332": "Eliminate PMC operatives from less than 25 meters away while using a bolt-action rifle", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Ready? Then let’s get to work. Sniper took a big interest in you.", "5bc4813886f774226045cb9a": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Kill PMCs using bolt rifles from a distance of at least 80m", "657b0567ec71635f16471dd2": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Good work, owl eyes. You thinned out those night predators.", "5bc84f7a86f774294c2f6862": "Zabi na colnici divochov pomocou manuálnej pušky medzi 21:00 a 5:00", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "There are no foul tricks in the sniper play. Good work, kid.", "5bc483ba86f77415034ba8d0": "Eliminate Sniper Scavs while using a bolt-action rifle", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "The enemy is absolutely helpless when they don't know where they get shot from. You did well, shooter.", "5bc485b586f774726473a858": "Eliminate PMC operatives from over 45 meters away while using a suppressed bolt-action rifle", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "This is not an easy task. Try again.", "5bc4893c86f774626f5ebf3e successMessageText": "It seems that sometimes being smart isn’t enough to act smart. Well, a good old bolty can be of help with this. Sniper is silent for now, so let's wait for a little before your next tasks. I will let you know when there are new tests for you.", "5bc48aed86f77452c947ce67": "Eliminate PMC operatives with a headshot without dying while using a bolt-action rifle", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "You cannot die or leave the raid until the quest is handed over to the customer (Status: Killed, Ran through, MIA)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Stash a Roler Submariner gold wrist watch in the trash next to stairs on the 3rd floor of the dorm on Customs", "5c12320586f77437e44bcb15": "Stash the false flash drive in the trash next to stairs on the 3rd floor of the dorm on Customs", "5c1233ac86f77406fa13baea": "You must not kill any Scavs on Customs while the task is active", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Locate and obtain the false flash drive at the specified spot on Customs", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "You did good, now you got my respect! I'll keep you in mind if I have something interesting.", "5c0bc95086f7746e784f39ec": "Eliminate Scavs while using a suppressed 12ga shotgun", "5c0bcc9c86f7746fe16dbba9": "Eliminate PMC operatives while using a suppressed 12ga shotgun", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Good work, my friend! Everything went according to the plan.", "5c1242fa86f7742aa04fed52": "Eliminate PMC operatives in the time period of 21:00-06:00 (excluding Factory and The Lab)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "So, what do you think? Some serious toy, yeah? Great, hand it over then. Here, that's for the help. Keep in touch, I might need more help to test some other things.", "5c1b765d86f77413193fa4f2": "Eliminate PMC operatives from over 60 meters away while using an M1A rifle with Hybrid 46 suppressor and Schmidt & Bender PM II 1-8x24 scope", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "There you go. Now I'm certain you won't piss your pants if some shit hits the fan.", "5c0bdbb586f774166e38eed5": "Reach the required Stress Resistance skill level", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Reserve", "5c137ef386f7747ae10a821e": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Shoreline", "5c137f5286f7747ae267d8a3": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Customs", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Lighthouse ", "63aec6f256503c322a190374": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Streets of Tarkov", "64b694c8a857ea477002a408": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Interchange", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "An experienced sniper will not give himself away like that. Catch your breath and try again.", "5c0be13186f7746f016734aa successMessageText": "Frankly speaking, i wasn't sure you could do it. But it sure seems that you're no regular pleb.", "5c0be2b486f7747bcb347d58": "Reach the required Bolt-action Rifles skill level", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Eliminate PMC operatives without dying while using a bolt-action rifle", "64b67fcd3e349c7dbd06bd16": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Did you bring it? Great, put it all down there in the corner. Careful, the equipment is very fragile. Even if the whole clinic thing fails, I know some people who may be interested in this equipment, but that’s between you and me. Why waste such expensive hardware?", "5c0be66c86f7744523489ab2": "Hand over the Ophthalmoscope", "5c0be69086f7743c9c1ecf43": "Hand over the LEDX Skin Transilluminator", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Find an Ophthalmoscope in raid", "5fd8935b7dd32f724e0fe7ee": "Find a LEDX Skin Transilluminator in raid", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "To be fair, I did not doubt that you are the person I can trust, not only in work.", "5c0d0dfd86f7747f482a89a5": "Reach the required Health skill level", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Very good, very good! The clients will be happy with you, mercenary. Your reward.", "5c138c4486f7743b056e2943": "Hand over the processors", "5c138d4286f774276a6504aa": "Hand over the transmitter", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Find Virtex programmable processors in raid", "5ec13da983b69d213d3c2ee4": "Find Military COFDM Wireless Signal Transmitter in raid", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Good, limbs are still attached, and the needed noise has been made. You'll be useful in these matters then, warrior. Here's the reward, you earned it.", "5c1b760686f77412780211a3": "Eliminate PMC operatives while using hand grenades", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Done already? You know, it actually worked, the way their leaders talk has changed a lot. Do not blame me, in this world you have to negotiate even with such scum. Your reward, mercenary.", "5c1b778286f774294438b536": "Eliminate Scavs from less than 60 meters away while wearing a gas mask or respirator on Interchange", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Interchange", "5c1b713f86f774719c22e8a0": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Shoreline", "5c1fd66286f7743c7b261f7b": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Woods", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Survive and extract from Shoreline with the \"Survived\" exit status", "5c13989886f7747878361a50": "Survive and extract from Factory with the \"Survived\" exit status", "5c1931e686f7747ce71bcbea": "Survive and extract from The Lab with the \"Survived\" exit status", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Survive and extract from Reserve with the \"Survived\" exit status", "629f08e7d285f377953b2af1": "Survive and extract from Lighthouse with the \"Survived\" exit status", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "Locate and mark the second fuel stash with an MS2000 Marker on Woods", "5c10f94386f774227172c576": "Locate and mark the third fuel stash with an MS2000 Marker on Woods", "5c10f94386f774227172c577": "Survive and extract from the location", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Now we’re talking! I’ll grab a soldering iron and get to work. Perhaps the market's gonna stabilize already by that time.", "5c1129ed86f7746569440e88": "Hand over the wires", "5c112a1b86f774656777d1ae": "Hand over the capacitors", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Find Bundles of wires in raid", "5ca71a1e86f7740f5a5b88a2": "Find Capacitors in raid", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "There you go, now I'm absolutely sure that you can return from a raid and with some good stuff in your backpack. Well done, brother!", "5c112dc486f77465686bff38": "Reach the required Search skill level", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Do you have it? Great. I wonder what he would ask next time, a diamond-coated toilet? But hey, if he does ask for it, you actually will have to look for it. Thanks for the help, brother.", "5c11427386f77430ff393793": "Hand over the teapots", "5c122c5f86f77437e44bcb0e": "Hand over the vases", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Find Antique teapots in raid", "5ca7258986f7740d424a2044": "Find Antique vases in raid", "62a700893e015d7ce1151d90": "Find Axel parrot figurine in raid", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "My guys are saying that Customs is at World War 3 right now, BEARs and USECs are dropping Scavs left and right! Good shit, nice work. Here's your prize, as promised.", "5c1fa9c986f7740de474cb3d": "Eliminate PMC operatives while wearing the specified gear on Customs", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Reach level 4 loyalty with Peacekeeper", "5c12489886f77452db1d2b05": "Reach level 4 loyalty with Prapor", "5c1248ef86f77428266184c2": "Reach level 4 loyalty with Therapist", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "You actually brought them! I'm pleased! Let me have a closer look at them.", "5c139eb686f7747878361a72": "Hand over the reader", "5c139eb686f7747878361a73": "Hand over the storage module", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Find UHF RFID Reader in raid", "5ec14080c9ffe55cca300867": "Find VPX Flash Storage Module in raid", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Hello, mercenary. I have been watching you for quite a while now, and I know that you are able to solve the tasks assigned to you. Don't get too cocky now, you're not the only one who knows how to follow orders. There are more fighters like you, even more competent. I want to offer you a job, to give you a chance to become a part of something bigger than you can imagine. If you are ready, then here's an assignment for you: my people operate all over Tarkov and often leave souvenirs after themselves. The mission is to obtain and deliver those items to me. No questions asked. The things are extremely rare. I hope I don't have to remind you that you have to obtain all these items by yourself? Believe me, I like no other know when people lie. You will be informed of the drop spot. And one more thing, all my partners have already mastered their skills a long time ago and proven themselves reliable, and if you want to be one of them, then prove to me that you are not inferior to them in training. Don't try to contact me, I will do it myself when the time comes.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Have you got it all? Good, mercenary. Your hard-earned reward awaits you in the specified drop-spot, just as promised. Congratulations, and welcome.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Hand over the found in raid item: Battered antique book", "5c51bf8786f77416a11e5cb2": "Hand over the found in raid item: #FireKlean gun lube", "5c51bf9a86f77478bf5632aa": "Hand over the found in raid item: Golden rooster figurine", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Hand over the found in raid item: Can of sprats", "5c51c24c86f77416a11e5cb7": "Hand over the found in raid item: Fake mustache", "5c51c25c86f77478bf5632af": "Hand over the found in raid item: Kotton beanie", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Hand over the found in raid item: Old firesteel", "5c52da5886f7747364267a14": "Hand over the found in raid item: Antique axe", "5cb5ddd386f7746ef72a7e73": "Find Old firesteel in raid", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Find Can of sprats in raid", "5cb5df7186f7747d215eca08": "Find Fake mustache in raid", "5cb5df8486f7746ef82c17ea": "Find Kotton beanie in raid", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Find Raven figurine in raid", "5ec7998dc1683c0db84484e7": "Hand over the found in raid item: Raven figurine", "5ec79aaac1683c0db84484e8": "Find Pestily plague mask in raid", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "Hand over the found in raid item: WZ Wallet", "60d0748820a6283a506aebb1": "Find LVNDMARK's rat poison in raid", "60d074ef401d874962160aee": "Hand over the found in raid item: LVNDMARK's rat poison", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Find Smoke balaclava in raid", "60e827faf09904268a4dbc40": "Hand over the found in raid item: Smoke balaclava", "62a6ff004de19a4c3422ea5d": "Hand over the found in raid item: Missam forklift key", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Do you have it? Good job. Well, I think you're worthy to get in contact with Jaeger. He might have plenty of work for you.", "5d249a6e86f774791546e952": "Obtain Jaeger's encrypted message", "5d249aa286f77475e8376399": "Hand over the message", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Find Jaeger's camp at the specified spot on Woods", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Hand over the found in raid Iskra ration packs", "5d24bb4886f77439c92d6bad": "Hand over the found in raid Packs of instant noodles", "5d24bb7286f7741f7956be74": "Hand over the found in raid Cans of beef stew (Large)", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "As one famous person used to say \"Float like a butterfly, sting like a bee\". A piece of good advice, you better remember it. So, do you feel how easy it is to move without all those plates on you? If you move fast, you don't even need body armor to deal with scum.", "5d25af3c86f77443ff46b9e7": "Eliminate Scavs without wearing any body armor on Woods", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Stash a Bottle of water (0.6L) in the ZB-016 bunker on Woods", "5d2deedc86f77459121c3118": "Stash an Iskra ration pack in the ZB-014 bunker on Woods", "5d2defc586f774591510e6b9": "Stash a Bottle of water (0.6L) in the ZB-014 bunker on Woods", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "No way you can survive for so long! Impressive. Here you go, drink this, regain your strength.", "5d25c5a186f77443fe457661": "Survive for 5 minutes while suffering from complete dehydration (excluding Factory)", "5d9f035086f7741cac4a9713": "Survive and extract from the location", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Handled it? Nicely done. Your training is almost done, friend. If we keep it that way, we may start taking care of the order in the city earlier than planned.", "5d25c8c986f77443e47ad47a": "Eliminate Scavs while suffering from the pain effect", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Successful? Great! Sweat saves the blood! Don't get too ecstatic now, there are some more tasks for you.", "5d25d09286f77444001e284c": "Eliminate Scavs in a single raid without using any medicine on Woods", "5d25d0d186f7740a22515975": "You must not use any medical supplies while the task is active", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "So you can even handle tremors? Great! To be honest, I didn't think you would succeed, the task was very difficult.", "5d25d4e786f77442734d335d": "Eliminate PMC operatives with headshots while suffering from the tremor effect", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "So you survived? Who would've thought.", "5d25dc2286f77443e7549028": "Eliminate PMC operatives while suffering from the stun effect", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "How many you say there were, six? And you got them all without the \"goggles\"? Indeed, you are a great night hunter, kid.", "5d25fd8386f77443fe457cae": "Eliminate Scavs in the time period of 21:00-04:00 without using any NVGs or thermal sights (Excluding Factory)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "How do people say? What is difficult in training will become easy in a battle! This skill will come in handy, trust me on this one. Your training is almost complete. Looks like you are ready to become the Hunter.", "5d2605ef86f77469ef0f7622": "Reach the required Vitality skill level", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Good job! Of course, there is enough scum in Tarkov, others will come for sure. But at least they will think twice before tearing the place apart.", "5d26143c86f77469ef0f894c": "Eliminate PMC operatives in the office area (any floor) on Factory", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Locate and neutralize Reshala", "5d2710e686f7742e9019a6b2": "Hand over Reshala's Golden TT pistol", "5d66741c86f7744a2e70f039": "Find Reshala's Golden TT in raid", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "They made their choice when they stepped on the wrong path. You have done the right thing, hunter, thank you.", "5d2701b586f77469f1599fe2": "Eliminate Scavs all over the Tarkov territory", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Learned the lesson? Good. See, you can disarm an enemy in many ways.", "5d307fc886f77447f15f5b23": "Eliminate PMC operatives while they are suffering from the stun effect", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Locate and neutralize Killa", "5d271a3486f774483c7bdb12": "Hand over Killa's helmet", "5d667a8e86f774131e206b46": "Find Killa's Maska-1SCh bulletproof helmet in raid", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Locate and neutralize Shturman", "5d272a0b86f7745ba2701532": "Hand over Shturman's stash key", "5d2f464e498f71c8886f7656": "Find Shturman's stash key in raid", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Protected the honor of the uniform? That's great. Screw them, there is nothing worse than giving the oath and then falling into crime.", "5d272bd386f77446085fa4f9": "Eliminate Scavs dressed in police uniform (Reshala's bodyguards)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "I've heard what you did. Looks like it's calmer out there now, with way fewer looters. You have my gratitude.", "5d2733c586f7741dea4f3072": "Eliminate PMC operatives in the Dorms area on Customs", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Welcome back, hunter. So you've dealt with the bandits? Can't even imagine how much of a hassle that was, you did a great job.", "5d27369586f774457411b264": "Locate and neutralize Glukhar", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "So they're operating near laboratories and military facilities... Oh, I hope it won't start another war, on top of the one already going on. Well, kid, it's not for us to resolve this, at least for now.", "5d273a4d86f774457411b266": "Eliminate Raiders", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Got it? Great. Hopefully, I won't have to watch people die helplessly anymore.", "5d27446f86f77475a86565a3": "Hand over the defibrillator", "5d7782c686f7742fa732bf07": "Hand over the CMS kits", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Find Portable defibrillator in raid", "5ec1538a92e95f77ac7a2529": "Find CMS surgical kits in raid", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Locate the chairman's house in the abandoned village on Shoreline", "5d357b9586f7745b422d653f": "Locate the fisherman's house in the abandoned village on Shoreline", "5d357bb786f774588d4d7e27": "Locate the priest's house in the abandoned village on Shoreline", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "Survive and extract from the location with the \"Survived\" exit status", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Got it? Good, let's see what he's up to. Come back in a bit, Mechanic and I will check the flash drives, then we'll let you know too.", "5d27491686f77475aa5cf5b9": "Hand over the Flash drives", "5d6949e786f774238a38d9e0": "Find Secure Flash drives in raid", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Hand over the photo album", "5d357e0e86f7745b3f307c56": "Locate Jaeger's Health Resort room with a view of the bay on Shoreline", "5d357e8786f7745b5e66a51a": "Obtain Jaeger's photo album", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "You got them? Good work, kid. Now we just have to figure out how to find this laboratory. Well, I'll deal with this matter myself, don't worry.", "5d2f375186f7745916404955": "Find TerraGroup Labs access keycards in raid", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "Hand over the access keycards", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "Come on in. Want some tea? Well, whatever. So listen, here's the deal. Soon I will be hosting a few friends of mine. I want to go hunting with them, but there's just no way I can take them hunting with these MP shotguns, right? I have a couple of nice western rifles here, but I need them to be zeroed properly first. And we have just the client for that, his name is Shturman. So, test my build (Remington M700 sniper rifle with a FullField TAC30 1-4x24 scope) on this scum. Find a long-range position and make a precise shot to the head, so that the bastard wouldn't even have a chance. Don't worry, I won't disappoint you with the reward, kid.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Those are damn great rifles! Good work! You know, I think I might get into gunsmithing myself, I took quite a liking to this thing. So, about the reward: check out the little things I found, you might need them.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Locate and neutralize Shturman with a headshot from over 75 meters away while using an M700 sniper rifle with the specified scope", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Look who we've got here! Hello there! Listen, you know about the military base close to the health resort? Probably were there yourself. So, I've got some news. They say the old warehouses there still have a lot of food left in them, and that bandit groups began roaming there, not your regular Scavs, they are well-equipped. I want you to check out if there's anything left in those warehouses. But be careful, there really are a lot of dangerous people there.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Have they already started to take everything out? Got it, we have to act fast.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Locate the food storage location on Reserve", "629f1259422dff20ff234b4d": "Survive and extract from the location", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Hand over the military battery", "5d4c020a86f77449c463ced6": "Find OFZ 30x165mm shells in raid", "5d4c028c86f774389001e027": "Hand over the OFZ shells", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "So, have you decided? Just a couple of injections. Here and here. Keep yourself calm, at least a couple of days, relax more and take your vitamins.", "5d6fb8a886f77449db3db8b6": "Hand over RUB", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "So, I've been told you took up the training. Well, with your skills, I'm sure you'll learn quick.", "5d6fbf0f86f77449d97f738e": "Hand over EUR", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Got it done already? Nice job. Wait here a minute, I need to measure your sizes and figure out the sewing technique for this one. As promised. But hey, you gotta understand that the materials ain't cheap these days, so be prepared for the price. Still, it's got three stripes, an icon of style, you know.", "5dc53fd386f77469c87589a3": "Locate and neutralize Killa", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "Hand over the fabrics", "5e38356d86f7742993306cac": "Hand over the fabrics", "5e3835e886f77429910d4465": "Hand over the paracords", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "Hand over the fabrics", "5e383a6386f77465910ce1f8": "Find Paracords in raid", "5e383a6386f77465910ce1f9": "Hand over the paracords", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Hand over the fabrics", "5e4d4ac186f774264f75833b": "Find KEKTAPE duct tapes in raid", "5e4d4ac186f774264f75833c": "Hand over the duct tapes", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Hand over the fabrics", "5e4d515e86f77438b2195249": "Find KEKTAPE duct tapes in raid", "5e4d515e86f77438b219524a": "Hand over the duct tapes", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, you're just in time. Maybe you have already heard that a new doctor has shown up? But this one is not some good-willed Aesculapius - he helps some people but cripples others. They say he sells medicine and does surgeries right on the street. They call him Sanitar, can you imagine? He settled on the Shoreline and interestingly enough, the local punks are very happy with him, and it's clear why: he patches them up, and even sells them drugs and first-aid kits of all sorts. This means that he has quite an inventory with him. Find out about this Sanitar, but quietly. For now, just find out where this scum hangs out. I think that he does both the selling and healing at the same spots. You interested?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "So you're saying there's quite a lot of supplies? Guess he found himself a fresh unopened medical warehouse and is now selling everything out from it. If only I could find that warehouse... well, that's not your problem anyway. For now.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Mark the first trading post with an MS2000 Marker on Shoreline", "5eda1da9a58a4c49c74165ee": "Mark the second trading post with an MS2000 Marker on Shoreline", "5eda1dd3317f6066993c1744": "Mark the third trading post with an MS2000 Marker on Shoreline", "5f0389268580cc37797e0026": "Survive and extract from the location", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "So you believed that woman? You do realise that she's just deceiving you for her own benefit? Do you think that because Sanitar treats some people, he can't kill others? You've completely gone insane with that war or yours, can't distinguish black from white. Get out of my sight, I want to be alone.", "5edab4b1218d181e29451435 successMessageText": "You did the right thing. Even if others say that Sanitar did good deeds, he brought much more evil. Don't believe those people's lies. I've seen people like Sanitar before: once they go crazy, there's no turning back. You can only shoot them like rabid dogs.", "5edab5a6cecc0069284c0ec2": "Locate and neutralize Sanitar", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Locate the group that was sent to the Health Resort on Shoreline", "5edab8890880da21347b3826": "Locate the group that was sent to the pier on Shoreline", "5edab8e216d985118871ba18": "Locate the group that was sent to the cottages on Shoreline", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Survive and extract from the location", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "The loss of my people on the Shoreline is certainly a very unpleasant event, but a new source of medicine is more important. We just need a different approach to this case. My assistant managed to bribe a local from the Shoreline to tell us about Sanitar, the medic we're looking for. He has a small security detail, a few spots on the shoreline, but what's strange is that he performs surgery right on the street, and often hides his tools near such places, in buildings nearby. Get me these tools. Sanitar will be more cooperative if he realizes that we can stop his trade at any time and take control of the territory.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Did you bring the tools? Put them in that box, I will need to clean them properly, it is unclear where they have been before. You can clearly see he is in a difficult situation, everything is covered in blood, clearly unsanitary conditions. Well, that's my business now. I'll give Sanitar his tools back along with the letter through the one local we bribed so that he understands what we want from him.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Locate and obtain Sanitar's surgery kit marked with a blue symbol on Shoreline", "5edabb950c502106f869bc04": "Hand over Sanitar's surgery kit", "5edabbff0880da21347b382b": "Locate and obtain Sanitar's ophthalmoscope on Shoreline", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hey you, tough guy! C'mere, I have a job for you. I've heard Prapor sent you to get a supply of drugs from some Sanitar dude. Don't make that face! I ain't got no interest in those drugs, let Prapor collect it and put it up his ass, you have already received profit from him anyway, haven't you? You just need to put these smart little things in containers that are in Sanitar's stashes. Prapor won't get wind of anything, it's a two-minute job, but the profit is good. Just gotta do it fast, before they move those containers.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Good stuff, good stuff! Finally, Prapor will get his caches exposed, there are probably whole mountains of loot. Guns, ammo, food, dope. Out fucking standing! We'll do this one ourselves though, without you. No offense. Thanks.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Survive and extract from the location", "5f071a9727cec53d5d24fe3b": "Mark the medical container at the Health Resort with an MS2000 Marker on Shoreline", "5f071ae396d1ae55e476abc4": "Mark the medical container by cottages with an MS2000 Marker on Shoreline", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Young man, wait. I knew that Jaeger would ask you to kill Sanitar, but you don't have to do it. I understand Jaeger's point of view, that he's just some kind of monster in the flesh, but he is not. I'm sure Sanitar is just trying to help the locals. Given the current circumstances, he performs the most complex surgeries and it is not surprising that they often end badly. He is a doctor with the most valuable knowledge that can save many more lives. A doctor with access to a warehouse of medicines that are extremely important to us. And he has already entered into negotiations with me and will soon begin to cooperate. But for this, I need something that will interest him and I think I know what will: the Laboratory. Access keys and samples of military stimulants, I think they are the basis on which he conducts his experiments. Can you find them for me? You can get the access keycards however you want, but the stimulants must be sealed, so you need to find them yourself.", "5edac34d0bb72a50635c2bfa failMessageText": "It is a pity that you listened to this Jaeger instead of the voice of reason. Sanitar with his knowledge and medicines could've helped us in many ways. He wasn't a saint, but surely everyone has a chance to atone for their sins, but you have took away that chance. I am very displeased with you.", "5edac34d0bb72a50635c2bfa successMessageText": "Thank you. I knew you would understand how important Sanitar and his... medication are right now. He has already shown a great interest in keycards and stimulants and sent the first batch of goods. Here, this is your share.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Do not kill Sanitar", "5f04935cde3b9e0ecf03d864": "Hand over the keycards", "5f04944b69ef785df740a8c9": "Hand over the keycard", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Good day to you, mercenary. Because the day is actually good. I was right, the new stimulants are connected to TerraGroup. Mechanic found information about Sanitar. Not too much, and it was very expensive for us, but it's better than nothing. Sanitar worked for TerraGroup, and not as an ordinary employee. Graduated in medicine, specialist in infectious diseases, divorced... Well, that's all the information we have on him. Give me more, my friend, I'm very interested in where he got access to such resources. Find his workplace and find out more.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "We have decoded that flash drive. There's a lot of important information there, but I can't tell you everything. It's classified. I can tell you about Sanitar though, he's a scientist. He studied and developed drugs, and then tested them on people. Very... bold, or, as they sometimes say, unethical research.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Hand over the Flash drive marked with blue tape", "5eec9d054110547f1f545c99": "Find Sanitar's workplace in The Lab", "5eff5674befb6436ce3bbaf7": "Obtain information about Sanitar's work", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Greetings, warrior. So here's the deal, a birdy told me that those ex-army guys who secured Reserve base dug out some pass to the underground bunker. Of course, they didn't do it with their own hands, they forced the Scavs to do the job, and most likely none of the poor bastards made it back out. So anyway, I've got no idea what sort of bunker that is. I've had some information that it could be the command bunker. But I'm not sure if it's exactly that bunker or just a bomb shelter for the base personnel. For now, there's no use to send a big group there for them to just die to those raiders. Check those catacombs out and let me know if it's worth sending a group there. The pay is good. You in?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "So you say it's a command shelter? Rumors don't lie, huh... God damn! I'll send my men there today, let them check the place out. There could be so much valuable shit there! Anyway, here, take your reward. As promised.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Survive and extract from the location", "5ee8eea538ca5b3b4f3c4647": "Locate the underground bunker on Reserve", "5ee8eecc0b4ef7326256c660": "Locate the control room in the underground bunker on Reserve", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hey, merc, you are just in time, you are exactly who I need. Do you remember that fucking command bunker you found under the Reserve base? Long story short, my guys went there, and it turned out to be a real nasty place. Built with a high level of protection: filters, generators, all entrances are blocked by extremely strong hermetic locks, it's like an underground fortress. But the raiders opened the fucking thing and dug in like Alabama ticks. So, my men got in serious trouble, less than half made it out of there. But you know, now it's even more intriguing, for fuck's sake. So my people will not go there anymore for no reason, but if you could find a safe route for them... You are an experienced guy, so I need you to quietly, on those soft paws of yours, find out where all the entrances are. The guys said the entrances had those big hermetic doors. So it's up to you to scout the way in.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Welcome back, I'm listening. Aha, so that's how it is... The door is right there, right? Just draw it right on top of my map, don't worry. So this bunker connects almost all facilities of the base? Fuck, how convenient, you could travel half the base under everyone's nose. Now it's clear why the raiders are there, you can control the entire base from under there. Thank you, warrior! Here's your reward.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Survive and extract from the location", "5ee8ec5ed72d953f5d2aabd1": "Locate the hermetic door leading to the hospital (White Bishop) on Reserve", "5ee8ecd75eb3205dae135d17": "Locate one of the two hermetic doors leading to the academy building (Black Bishop) on Reserve", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "So that's how it is, it's right on the first floor? How many times have my people been there and found nothing. Did you get inside the room? Found anything interesting in there? Well, doesn't matter, I'll send my boys to check it out anyway. Here's your reward, you've earned it. Thank you.", "5f0488c590eea473df674002": "Locate Sanitar's office in the health resort", "5f04983ffbed7a08077b4367": "Survive and extract from the location", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Greetings, warrior. I have a job for you. Long story short, I lost contact with one of my groups, and it's been quite a while ago. When shit hit the fan, I sent them to Woods to pick up some cargo. I'm afraid they got ambushed, the last time I got through, they reported that the USECs were closing in on them from the hills. Investigate it, check if anyone survived. Their convoy had a BRDM, a Bukhanka van, and a truck of some sort, I do not remember what kind exactly. I think that the USECs must have settled somewhere near there too, so stay sharp. Find my convoy and those USECs' camp, if it is really there. Dismissed.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "So my guys didn't make it and the transports were looted... Plus a USEC camp nearby, you say? That sucks, the cargo was very important. Well, you've done your part of the deal, so here's the reward. You can buzz off now.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Locate Prapor's missing convoy on Woods", "5fd9fad9c1ce6b1a3b486d05": "Locate the temporary USEC camp on Woods", "5fd9fad9c1ce6b1a3b486d0d": "Survive and extract from the location", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "The air in the whole Woods trembled from such furious firefight. The scum got what he deserved, and all thanks to you. Here, the appropriate reward for such a feat. Don't be shy, you can buy the new rifles too.", "600303250b79c6604058ce30": "Locate and neutralize Shturman", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Locate and inspect the second LAV III on Reserve", "608925d455f4ac386d7e7fc4": "Mark the first LAV III with an MS2000 Marker", "608930aa1124f748c94b801e": "Locate and inspect the T-90 tank on Reserve", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Great-great-great! Take my money! My only request is that you do not tell anyone a word about this deal.", "60929ad46342771d851b827a": "Obtain the package with T-90M Commander control panel on Reserve", "60929afc35915c62b44fd05c": "Hand over the package", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Obtain the third folder with military documents in the command bunker offices on Reserve", "60ae0f0586046842a754e21e": "Hand over the second documents", "60ae0f17b809a4748759078c": "Hand over the third documents", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Good work out there. I hope they get what's going on now and that they can't just kill my people like that. Here's the reward.", "608bffeee0cc9c2d4d2ccb29": "Eliminate Raiders in the command bunker on Reserve", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Hand over the first journal", "60ae12ffb809a474875907aa": "Obtain Medical record #2 on Reserve", "60ae134cabb9675f0062cf6e": "Hand over the second journal", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "So that's how it looks! Great. Thank you, I'll study it more thoroughly later. Here's your reward, as promised.", "6092942fb0f07c6ea1246e3a": "Obtain the MBT Integrated Navigation System on Reserve", "6092947635915c62b44fd05b": "Hand over the navigation system", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "So the exit works? Excellent. I'm still preparing your reward, so tell me more about the opening mechanism for that bunker door in the meantime.", "608a94101a66564e74191fc3": "Find the unpowered secret exit on Reserve", "608a94ae1a66564e74191fc6": "Survive and extract from the location through the secret exit", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Awesome, my guys just got back from the raid safe and sound, not a single scratch. Here's your prize!", "608ab22755f4ac386d7e7fdc": "Eliminate Scavs in the underground warehouse on Reserve", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Check the second arsenal in the southern barracks (White Pawn) on Reserve", "608bd2465e0ef91ab810f98a": "Check the duty room in the eastern barracks (Black Pawn) on Reserve", "608c187853b9dd01a116f480": "Survive and extract from the location", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Survive and extract from the location", "60a4dc7e4e734e57d07fb335": "Mark the first group of fuel tanks with an MS2000 Marker on Reserve", "60b90232ec7c6f5eb510c195": "Mark the second group of fuel tanks with an MS2000 Marker on Reserve", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Is it done? The air almost seems fresher now. It's a pity we couldn't get those looters' heads on straight in another way.", "608a8356fa70fc097863b8f8": "Eliminate Scavs inside the main barracks on Reserve", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "That's good news. The world will only get cleaner. Hope the bastard didn't get you with his sledgehammer?", "60c0d187938d68438757cda2": "Locate and neutralize Tagilla", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Find Tagilla's BOSS cap in raid", "60cfa5a85f9e6175514de2e3": "Hand over the BOSS cap", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Eliminate PMC operatives on Interchange", "60ec0b1871035f300c301acd": "Eliminate PMC operatives in The Lab", "60ec2b04bc9a8b34cd453b81": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA, Ran Through)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Eliminate PMC operatives at the Scav base on Customs", "60ec1e72d7b7cb55e94c1764": "Eliminate PMC operatives at the Scav base on Woods", "60ec2229fd1bf4491c4e4552": "Eliminate PMC operatives at the Health Resort on Shoreline", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "There you go, that's way better. Thank you, warrior. The guys are saying it's calmed down now, so looks like the morons understood your message.", "60e8650e5d67b234af3d3926": "Eliminate Scavs with headshots", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Bloody hell... You got them all by yourself? You've got guts, that's for sure. Somethin' ain't right about those psychos, I'm tellin' you...", "60e82c12fd1bf4491c4e4547": "Find the unusual knives in raid", "60e82c5926b88043510e0ad7": "Hand over the knives", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "Hand over the LEDX", "60f028ca86abc00cdc03ab89": "Find Piles of meds in raid", "60f028f85caf08029e0d6277": "Hand over the Piles of meds", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Find Bottles of OLOLO Multivitamins in raid", "62a70168eb3cb46d9a0bba7a": "Hand over the multivitamins", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Marvelous, mercenary. Now it will be much easier for my people to operate on the location! Thank you for your work.", "60e745d6479eef59b01b0bdc": "Eliminate Raiders on Reserve", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Great, great! The clients have already rewa– uh, thanked us for the successful mission. Good job, mercenary.", "60e8174d0367e10a450f7818": "Hand over the found in raid item: BEAR PMC dogtag (Level 50+)", "60e81795479eef59b01b0bdf": "Hand over the found in raid item: USEC PMC dogtag (Level 50+)", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Find Military COFDM Wireless Signal Transmitters in raid", "60e7449875131b4e61703b7e": "Hand over the programmable processors", "60e744c9d1a062318d3d2262": "Hand over the signal transmitters", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Find Military flash drives in raid", "62a7019ea9a0ea77981b57da": "Hand over the flash drives", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Great, that's all the results I needed, hand me the notebook. Thanks, mercenary.", "60e740b8b567ff641b129573": "Eliminate PMC operatives from over 100 meters away", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Great, thank you very much, friend. The client already reported that they got the packages. I don't think it's the last order from them, so I'll count on you further.", "60e84ba726b88043510e0ad8": "Stash a Trijicon REAP-IR scope under the base of the yellow crane at the construction site on Customs", "60e85b2a26b88043510e0ada": "Stash a Trijicon REAP-IR scope behind the trash containers at the \"new\" gas station on Customs", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respect, brother, you helped me out big time! If you see any dangerous dudes in Ultra, you let me know. Might need you to deal with them again.", "60e73ee8b567ff641b129570": "Eliminate PMC operatives inside the ULTRA mall on Interchange", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Hand over the whiskey", "60f028268b669d08a35bfad8": "Find Canisters with purified water in raid", "60f0284e8b669d08a35bfada": "Hand over the superwater", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Find Bottles of Pevko Light beer in raid", "62a70110eb3cb46d9a0bba78": "Hand over the beer", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Locate and neutralize Shturman", "60e7261eb567ff641b129557": "Locate and neutralize Glukhar", "60e72629465ea8368012cc47": "Locate and neutralize Sanitar", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Here you are, swift one. You pleased the old man, and drew conclusions yourself, I hope. You yourself are the weapon and the monolith, not the amount of steel you wear.", "60e729cf5698ee7b0505743c": "Eliminate PMC operatives without using any armor or helmets on Woods", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "A brave decision, mercenary.", "60effdac12fec20321367038": "Hand over Secure container Epsilon", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Listen, brother, can you help me find proper info on a guy? He's already left the city. Why can't I find him myself? Because his fucking name is Ivan Ivanov. Seriously, I'm not kidding. There are two hundred thousand of them all over the country with that name. If we could find his former address in Tarkov, we might be able to run him through the database. Let me see what I can find on him. I think he used to run a bar, right. I don't know the name of the bar though... Listen, I don't know how you're gonna know which bar is his. Oh, that reminds me, he was into ballet. No kidding. He went to the Mariinsky every season. Even tried to host something at our local theater, but people weren't really crazy about chicks in tutus. More specific? Brother, I'm already fucking specific! I believe in you, use your intuition.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Found both the bar and the guy's address? Here, write it down for me. You're better than those psychics on TV finding missing people. Wanna be a detective when all this is over, bro? I'll fix you up with a Poirot hat, I promise.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Locate the balletmeister's apartment on Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Survive and extract from the location", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Come here, my dear employee. Everything okay in the city? I got a few teams of mine missing. At first I thought, why the fuck would someone be so cocky, trying to shut my business down? Unless they're messing with me or something. I assumed it was that punk from the Lighthouse at first. But then I get a message from Seva Shket. He wrote that they were kept in some private prison. Have you heard about it? It's hidden somewhere in the old apartment buildings. Suits would dump their rivals there and whoever's easier to keep locked up than kept loose. I'd just kill them if that was such a problem, honestly. But it looks like someone would rather keep them in jail than just pop the cunts bothering them... Here's the deal: Shket was the only one in the group who escaped, but now he's on the run, hasn't contacted us since that message he sent. Didn't even tell us where to find the guys, this rat-faced fuck. The guys themselves are to blame for being caught like some bitches, and I would have just told them to fuck off for such a screwup. But the fact that someone's trying to fuck me over is outrageous. All right, enough of this bullshit. Find out where they keep my boys.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Fucking hell. Why would someone keep them there? I'd understand if they sent me a letter saying they'd kill my people if I didn't pay up and shit. A serial killer or something? Anyway, come around in a little while, I'll find out what's going on.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Survive and extract from the location", "63a7d767f32fa1316250c3da": "Locate where the missing group was held captive on Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "It's the same story again, a new recording, now with a strange symbol. What the hell is going on? People are being sacrificed. To whom? Why? So many questions, yet no answers. I keep thinking it's the worst we'll ever see, but every time I'm proven wrong. We've fought looters with only money on their minds. Murderers who just want to shoot innocents, too. But at least I understand the motivation there, the beast has defeated the human in their soul. But with what purpose do people become these... I cannot understand this. So, soldier, I'll look for them in the woods, you do the same in the city. Somewhere there must be their hideout. Look for the same symbol, I'm sure we'll see it again.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Did you find it? Where? Was there anyone there? What does the symbol mean? Even more questions...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Survive and extract from the location", "63a7d6d61f06d111271f5aeb": "Locate the cultist meeting spot on Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Greetings! Well, let's get it going, are you excited? The task is quite specific, we need to test the Russian toy for close combat, so that the conditions were the very real combat in urban environment. I have customers who don't believe in the effectiveness of this toy... Can you change their minds?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Well? Does it work good? Suitable for close-quarters combat in urban environments?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Eliminate PMC operatives while using an SR-2M with a suppressor and KP-SR2 sight on Streets of Tarkov", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Some are still intact, huh. Well, that's cool, we'll go pay them a little visit. Your reward.", "6572e876dc0d635f633a5718": "Locate the first group of ATMs on Klimov Street on Streets of Tarkov", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Scout the Sparja store in Pinewood hotel", "6572e876dc0d635f633a571e": "Scout the Goshan store in Concordia", "6572e876dc0d635f633a5720": "Hand over the found in raid Salty Dog beef sausage", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Atm №11", "65733403eefc2c312a759df2": "Atm №12", "65733403eefc2c312a759df4": "Atm №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Atm №15", "65733403eefc2c312a759dfa": "Atm №16", "65801ad655315fdce2096bec": "Unravel the secret of the firm's success", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Did you find it? Nice work, now bring it here! And take your reward, you deserve it.", "6573397ef3f8344c4575cd88": "Locate the real estate fund on Streets of Tarkov", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Locate and obtain the Tarkov real estate transactions document", "658167a0e53c40116f8632fa": "Hand over the obtained information", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Oh, yeah, I've already heard the rumors. People're gonna nail those punks to the wall soon. You did a great job. Here's your reward.", "65734c186dc1e402c80dc1a2": "Eliminate any target while wearing a Bomber beanie and RayBench Hipster Reserve sunglasses on Streets of Tarkov", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Stash a Bomber beanie inside the barber shop on Streets of Tarkov", "657356d0a95a1e7e1a8d8d99": "Stash RayBench Hipster Reserve sunglasses inside the barber shop on Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "It's in the fucking swamp? That explains the fucking price. It would cost more to get it out from there and clean it up! All right, here, that's for helping me out.", "65802b627b44fa5e1463889a": "Locate Ragman's SUV on Shoreline", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Survive and extract from the location", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Locate and obtain the “Bison VS Undertaker” poster at the USEC camp on Woods", "664bbb5f217c767c35ae3d51": "Locate and obtain the “Killa and Tagilla” poster at the USEC camp on Woods", "664bbb73c71d456fd03714ca": "Locate and obtain the “Easy Money” poster at the USEC camp on Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm, looking for the one who ordered the hit. They'll get over it and realize they're crossing the line. Here, this is your reward.", "660d5effb318c171fb1ca234": "Eliminate Kaban's guards on Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminate Kollontay's guards on Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Win 6 matches out of 10 in ranked mode in Arena", "662bb24b3d34cd5e19206e63": "Failure condition: Lose 5 matches", "6633a85e347a2a2b4051a26b": "Hand over Roubles from the EFT balance", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Failure Condition: Lose 5 matches", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.", "66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.", "66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Locate and obtain the compromising information on Ref", "664fd7f0837ee02ad4c8e658": "Hand over the found info", "66563f0a2684eee09e8dcd86": "Locate the old champion's hideout", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Hand over the phone", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Sell any weapon to Skier", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Hand over the hard drive", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Hand over the hard drive", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "I think I'm beginning to understand why people watch these \"live streams\". It's addictive!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Install a WI-FI Camera on the mountain ledge on Woods", "667bf840981b1c594af358ce": "Install a WI-FI Camera at the pier tower on Shoreline", "667bf845dc371ee9869f185e": "Install a WI-FI Camera at the office corridor on Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Well done! They say that even the outside world found out about our little move, haha!", "667442da875be5fb415df535": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Shoreline", "66828746efaecf435dde20ca": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", "66d080533a3c33d823a3477d": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hello, friend. Things have been a little bumpy for me lately. I will be temporarily raising the prices of my products and services from today until I can solve some pressing matters. A mercenary friend of mine is putting together a team to raid the underground lab, and he needs reliable firepower. Can you help? I see you know as much about the ARs as I do, so I thought I'd entrust this to you. I need an M4A1 with no more than 300 total recoil and ergonomics no less than 70. Not easy, I know. Now, be sure to put an EOTech XPS 3-0 on it, since the client refuses to use any other scope.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Many thanks. I think this will keep me on track for some time.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modify an M4A1 to comply with the given specifications", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "You didn't lose anything along the way, correct? All right, then it's time to send the engineers out to do some measurements, we're about to find out what these factory walls are hiding. Thanks for your help, friend.", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory (In one raid)", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory (In one raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Locate and obtain the precision tools package in the laboratory on Customs", "66ab97d56cb6e3bfd7c79fbc": "Stash the package at the laboratory storage room on Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "So you have found it indeed. Excellent! How's the passage, is it safe? In a state of disrepair, you say? Well, it seems like this opportunity won't be with us for long. I'll send my men as soon as possible.", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov (In one raid)", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab (In one raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab (In one raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab (In one raid)", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab (In one raid)", "66b10eef0951e90ec383850b": "Scout the control room in The Lab (In one raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "The buyer has told me everything is in place. You've earned your reward, and you can expect my men to help you on the new trails.", "66abb32aeb102b9bcd088d62": "Use the transit from Ground Zero to Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Use the transit from Streets of Tarkov to Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use the transit from Interchange to Customs", "66abb3ac416b26ade4a1446c": "Use the transit from Customs to Factory", "66abb3bf228ace5ca9f3d745": "Use the transit from Factory to Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Install a WI-FI Camera at the bear who sat into a flaming car on Woods", "66debf2e1e254957b82711ff": "Install a WI-FI Camera at the upside-down chair on Shoreline", "66debf30802386a45d0adb60": "Install a WI-FI Camera at the not-so-lonely bathroom on Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "The soldier of fortune has come for his new task! Rumors have it that Tarkov has become even more dangerous. Who would've thought, right? Someone's started targeting certain areas with mortar fire. \n\nYou better go and see what's going on. And yes, this means going right into the middle of those mortar strike areas. Yup. Alright, so we've noticed the bombardments in the nature reserve, the military base, the customs office, and the coast line. Off you go then.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Alive and well, that's great. So let's see what we're working with here. Somebody stole the mortars and now they're hitting various locations right before the airdrop supplies come in. \n\nVery suspicious. These local powdermen sure couldn't have secured communications with the outside world, could they? Either way, all we can do for now is watch.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visit an active mortar strike area on any specified location (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Okay, I got word of a major fuck-up. It may not be your fault, but that's beside the point. The assholes at the water treatment plant intercepted a bunch of these crates with portable EW equipment in them. \n\nThey're obviously useless at this point, but I'm not gonna let them steal government property like this. \n\nFor a warrior like you, the task is feasible. Go to the WTP and get me those EW thingies. And yes, those rats need to be put down. \n\nThe EWs themselves have probably already been handed over to their commanders, so you're guaranteed to get this equipment from them. Assuming you don't die, I suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendid, the new toys have arrived. My guys are gonna love these. You need to be ready for anything these days, and such protection is definitely not superfluous.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Hand over the found in raid item: GARY ZONT portable electronic warfare device", "66e19f359fee1e54e0e01f7c": "Eliminate Rogues", "66e19f7d534a8ff2bb7e9f89": "Locate and neutralize Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "This whole trader thing is going pretty well for me, wouldn't you say? You know, If I didn't have my wits about me, I'd be dead in this hellhole a long time ago. Anyway, I'll deal with the reports later, not the first time. \n\nRight now, I need to equip the guys posted outside my territory. Bring them this new equipment we found. I'll give you a part of it, but the rest you need to get yourself - you already know where to look. No, you won't meet them face to face. Just stash the items in the designated spot.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Good, now that they're safe from airborne threats, their combat mission will be accomplished with no problem.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Stash the GARY ZONT portable electronic warfare device inside the sunken church on Woods", "66e071c8a9e80c3f25bb1bad": "Stash the Radar station spare parts inside the old sawmill hangar on Woods", "66e0735089627301d900ef1d": "Stash the GARY ZONT portable electronic warfare device inside the weather station tower on Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Find the secret exfil on Customs", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Počujem hlas temnoty", "6514134eec10ff011f17cc26 description": "Zneškodni rogue bossa menom Knight 15-krát ako PMC", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Dobrá rana", "651413e9c31fcb0e163577c9 description": "Zneškodni bossa menom Zryachiy 15-krát ako PMC", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locales/global/tu.json b/Libraries/SptAssets/Assets/database/locales/global/tu.json index b8f2738f..41b591e0 100644 --- a/Libraries/SptAssets/Assets/database/locales/global/tu.json +++ b/Libraries/SptAssets/Assets/database/locales/global/tu.json @@ -21157,7 +21157,6 @@ "59674fe586f7744f4e358aa2": "Kutuyu, Fabrika'da ikinci katta Kapı 3'ün yanında bulunan dinlenme odasına zulala", "5968929e86f7740d121082d3": "Gümrük terminalinde, Tarcone Müdür Ofisindeki güvenli kutuyu ele geçir", "5977784486f774285402cf52": "Hayatta kal ve Fabrika'dan çık", - "5978b48b86f7746ef62ef859": "", "59674eb386f774539f14813a acceptPlayerMessage": "", "59674eb386f774539f14813a declinePlayerMessage": "", "59674eb386f774539f14813a completePlayerMessage": "", @@ -21208,7 +21207,6 @@ "5967725e86f774601a446662 successMessageText": "Gerçekten etkileyici! Neredeyse bir nükleer çanta gibi! Onu almaya çalışanlara merhamet etmediğine şaşırmadım.", "5968981986f7740d1648df42": "Yurttaki oda 203'te değerli birşey bul", "5968988286f7740d14064724": "Değerli kargoyu teslim et", - "59a9287986f77478ad7028d8": "", "5a3fc03286f77414d64f9941": "Oda 214'e erişim sağla", "5967725e86f774601a446662 acceptPlayerMessage": "", "5967725e86f774601a446662 declinePlayerMessage": "", @@ -21257,7 +21255,6 @@ "5969f90786f77420d2328015 successMessageText": "Kalbimin en derinliklerinden sana teşekkür ediyorum. Sana bunun bu durumda ne kadar değerli ve aynı zamanda maalesef ki bir o kadar da az olduğunu anlatamam. Çoğu kişi bu durumda kendileri için saklardı ama sen vermeyi tercih ettin. Teşekkürler.", "5969f98286f774576d4c9542": "Baskında Morfin enjektörleri bul", "5969f99286f77456630ea442": "Enjektörleri teslim et", - "596a212e86f774576d4c95df": "", "5969f90786f77420d2328015 acceptPlayerMessage": "", "5969f90786f77420d2328015 declinePlayerMessage": "", "5969f90786f77420d2328015 completePlayerMessage": "", @@ -21318,7 +21315,6 @@ "596b46ec86f77457c7006f89": "Baskında buji bul", "596b470c86f77457ca18618a": "Aküleri teslim et", "596b472686f77457c7006f8a": "Bujileri teslim et", - "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", @@ -21356,7 +21352,6 @@ "5979ed3886f77431307dc512 successMessageText": "Ama bir şey yok demiştin?! Yine de boş olabilir. Bakmam lazım. Her durumda, ödeme benden.", "5979ee2986f7743ec214c7a4": "Baskında Güvenli Flash disk bul", "5979ee4586f7743ec214c7a5": "Flash diskleri teslim et", - "59819f0986f7744e6d0b7520": "", "5979ed3886f77431307dc512 acceptPlayerMessage": "", "5979ed3886f77431307dc512 declinePlayerMessage": "", "5979ed3886f77431307dc512 completePlayerMessage": "", @@ -21449,7 +21444,6 @@ "59c128d886f77414fe7f1a64": "Gümrükteki No. 3 Yakıt tankını işaretleyici ile işaretle", "59c128f386f774189b3c84bb": "Gümrükteki No. 4 Yakıt tankını işaretleyici ile işaretle", "5c92184386f7746afa2e7840": "Hayatta kal ve bölgeden ayrıl", - "60a6486cc15b714d7b0a83d4": "", "59c124d686f774189b3c843f acceptPlayerMessage": "", "59c124d686f774189b3c843f declinePlayerMessage": "", "59c124d686f774189b3c843f completePlayerMessage": "", @@ -21553,9 +21547,6 @@ "59f9da6786f774714230d751 description": "", "59f9da6786f774714230d751 failMessageText": "", "59f9da6786f774714230d751 successMessageText": "Great! Here, take this as your reward. In the meantime, I'll hand this flash drive over to my specialists to decrypt it.", - "59f9db4186f77472c25e12bd": "", - "59f9dbd886f77471514e4494": "", - "59f9dc1486f774714230d832": "", "59f9da6786f774714230d751 acceptPlayerMessage": "", "59f9da6786f774714230d751 declinePlayerMessage": "", "59f9da6786f774714230d751 completePlayerMessage": "", @@ -21618,8 +21609,6 @@ "5a27d81a86f774472a6e0456": "Bota keskin nişancı tüfeği zulala", "5a27d85286f77448d82084e7": "Bota çoklu aleti zulala", "5a3ba11786f7742c9d4f5d29": "Kıyı Şeridi'nde dalgakıranın yanında gizlenmiş botu bul", - "5bcf241486f7746a4959344a": "", - "5be40b2a88a45079e30e92b5": "", "5c93794086f7740a13567867": "Hayatta kal ve bölgeden çık", "5a27b75b86f7742e97191958 acceptPlayerMessage": "", "5a27b75b86f7742e97191958 declinePlayerMessage": "", @@ -21822,9 +21811,6 @@ "5a5642ce86f77445c63c3419 failMessageText": "", "5a5642ce86f77445c63c3419 successMessageText": "Harika, bundan sonra bana daima güvenebilirsin.", "5a56489d86f7740cfe70eba2": "500 dolar teslim et.", - "5db9e0bf60635026b067afa6": "", - "5db9e0d3b1325a429a5d7d55": "", - "5db9e0e0c5624a3ce7239a88": "", "5a5642ce86f77445c63c3419 acceptPlayerMessage": "", "5a5642ce86f77445c63c3419 declinePlayerMessage": "", "5a5642ce86f77445c63c3419 completePlayerMessage": "", @@ -21881,7 +21867,6 @@ "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "You’ve got it? Leave it in the corner, thank you. A beautiful thing, right? Anyway, I'm a little busy right now, can't talk for long.", "5accd5e386f77463027e9397": "Tamamlamak için bir MP-133'ü istenilen özelliklere göre modifiye et", - "5acf375f86f7741bb8377ff7": "", "5ac23c6186f7741247042bad acceptPlayerMessage": "", "5ac23c6186f7741247042bad declinePlayerMessage": "", "5ac23c6186f7741247042bad completePlayerMessage": "", @@ -21890,8 +21875,6 @@ "5ac2426c86f774138762edfe failMessageText": "", "5ac2426c86f774138762edfe successMessageText": "Well, in the capable hands this weapon can overthrow regimes and create revolutions. Leave it in the corner, I'll check it later.", "5accd9b686f774112d7173d1": "Tamamlamak için AKS-74U'yu istenilen özelliklere göre modifiye et", - "5acf37a186f7741843346d0c": "", - "5acf37ad86f77418420befe6": "", "5ac2426c86f774138762edfe acceptPlayerMessage": "", "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", @@ -21900,8 +21883,6 @@ "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "Handy for CQB and quiet... Good modification, the client will be satisfied.", "5accde3686f7740cea1b7ec2": "Tamamlamak için bir MP5'i istenilen özelliklere göre modifiye et", - "5acf37d486f7741841752ffc": "", - "5acf37df86f7741bb8377ffc": "", "5ac2428686f77412450b42bf acceptPlayerMessage": "", "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", @@ -21910,8 +21891,6 @@ "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Teşekkürler, bunu Dim... yani keskin nişancıya vereceğim.", "5acce08b86f7745f8521fa64": "Tamamlamak için DVL-10'u istenilen özelliklere göre modifiye et", - "5acf381a86f7741ce21f9aee": "", - "5acf382686f7741cdb2f7ef6": "", "5ac242ab86f77412464f68b4 acceptPlayerMessage": "", "5ac242ab86f77412464f68b4 declinePlayerMessage": "", "5ac242ab86f77412464f68b4 completePlayerMessage": "", @@ -21920,8 +21899,6 @@ "5ac244c486f77413e12cf945 failMessageText": "", "5ac244c486f77413e12cf945 successMessageText": "Yeah, you can't hide from something like this. Love 7.62, a good caliber. Thanks for the work. Next order should be tomorrow.", "5acce11786f77411ed6fa6eb": "Tamamlamak için bir R11 RSASS'i istenilen özelliklere göre modifiye et", - "5acf383686f7741bb8377fff": "", - "5acf383d86f7741bb8378000": "", "5ac244c486f77413e12cf945 acceptPlayerMessage": "", "5ac244c486f77413e12cf945 declinePlayerMessage": "", "5ac244c486f77413e12cf945 completePlayerMessage": "", @@ -21930,7 +21907,6 @@ "5ac244eb86f7741356335af1 failMessageText": "", "5ac244eb86f7741356335af1 successMessageText": "Demokrasinin kılıcı gibi... Teşekkür ederim.", "5accdfdb86f77412265cbfc9": "Tamamlamak için M4A1'i istenilen özelliklere göre modifiye et", - "5acf37fa86f7741844039008": "", "5ac244eb86f7741356335af1 acceptPlayerMessage": "", "5ac244eb86f7741356335af1 declinePlayerMessage": "", "5ac244eb86f7741356335af1 completePlayerMessage": "", @@ -21941,8 +21917,6 @@ "5ac7a4ba86f77409f3423628": "Fabrika'da Alet Takımı ile ilk kontrol panelini tamir et", "5ac7a51a86f774738a4ffc96": "Fabrika'da Alet Takımı ile ikinci kontrol panelini tamir et", "5ac7a5d586f774383111ee63": "Hayatta kal ve bölgeden çık", - "5acf388786f7741cdb2f7ef9": "", - "5acf390d86f774184403900f": "", "5ac345dc86f774288030817f acceptPlayerMessage": "", "5ac345dc86f774288030817f declinePlayerMessage": "", "5ac345dc86f774288030817f completePlayerMessage": "", @@ -21956,8 +21930,6 @@ "5ac505e186f7740bdf2ceabe": "T-Şekilli Fişleri teslim et", "5ac5061386f77417e429ce7a": "Baskında Baskılı devre kartları bul", "5ac5062586f774587c327395": "Baskılı devre kartlarını teslim et", - "5acf3b0986f7741bb8378499": "", - "5acf3b1286f77418420bf36b": "", "5ac3460c86f7742880308185 acceptPlayerMessage": "", "5ac3460c86f7742880308185 declinePlayerMessage": "", "5ac3460c86f7742880308185 completePlayerMessage": "", @@ -21968,8 +21940,6 @@ "5ac6240786f77417204ca2b9": "Gümrük'te el konulan malların deposunu bulun", "5ac6248586f77416781dd3a3": "Grafik kartı paketini ele geçir", "5ac624b286f77416781dd3ac": "Grafik kartı paketini teslim et", - "5acf3b2586f7741cdb2f7f8b": "", - "5acf3b2a86f7741cdb2f7f8c": "", "5ac3462b86f7741d6118b983 acceptPlayerMessage": "", "5ac3462b86f7741d6118b983 declinePlayerMessage": "", "5ac3462b86f7741d6118b983 completePlayerMessage": "", @@ -21981,8 +21951,6 @@ "5ac5082586f77418804f7d4c": "Grafik kartlarını teslim et", "5ac5083d86f7740be2744eed": "Baskında CPU Fanları bul", "5ac5084d86f7740bde1b0031": "CPU Fanlarını teslim et", - "5acf3b3486f7741ce21f9b06": "", - "5acf3b3b86f7741ce21f9b08": "", "5ac3464c86f7741d651d6877 acceptPlayerMessage": "", "5ac3464c86f7741d651d6877 declinePlayerMessage": "", "5ac3464c86f7741d651d6877 completePlayerMessage": "", @@ -21993,8 +21961,6 @@ "5ac5e0fa86f77431c305d243": "İlk sinyal kaynağını bul", "5ac5e13586f7746074388f93": "İkinci sinyal kaynağını bul", "5ac5e18c86f7743ebd6c9575": "Hayatta kal ve bölgeden çık", - "5acf3b6186f7741cdb2f7f8e": "", - "5acf3b6986f77418440390b4": "", "5ac3467986f7741d6224abc2 acceptPlayerMessage": "", "5ac3467986f7741d6224abc2 declinePlayerMessage": "", "5ac3467986f7741d6224abc2 completePlayerMessage": "", @@ -22006,8 +21972,6 @@ "5ac5e88e86f7741c5804f9db": "Şarj edilebilir bataryaları teslim et", "5ac5e98886f77479bc6ca201": "Baskılı devre kartlarını teslim et", "5ac5ea0586f774609f36280c": "Kırık GPhone'ları teslim et", - "5acf3b7186f774184175301d": "", - "5acf3b7886f77418420bf36f": "", "5cb6f81d86f7740e9d452683": "Baskında PC CPU bul", "5cb6f88d86f7747d215f09c1": "Baskında Şarj edilebilir batarya bul", "5cb6f8de86f7740e9d452685": "Baskında Baskılı devre kartları bul", @@ -22031,8 +21995,6 @@ "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Seventh digit after the decimal separator in the pi number? IIO? Okay, when the time comes, I'll contact you.", "5ac5eb3286f7746e7a509a09": "Reach the required Attention skill level", - "5acf3b9986f77418403493b5": "", - "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", "5ac346e886f7741d6118b99b declinePlayerMessage": "", "5ac346e886f7741d6118b99b completePlayerMessage": "", @@ -22046,8 +22008,6 @@ "5ac5ef5686f77416ca60f644": "Strike sigarasını teslim et", "5ac5ef9886f7746e7a509a2d": "Baskında Wilston sigara bul", "5ac5eff886f7740f43322559": "Wilston sigarasını teslim et", - "5acf3c3086f77418d851688f": "", - "5acf3c3d86f7741ce21f9b1a": "", "5ac3475486f7741d6224abd3 acceptPlayerMessage": "", "5ac3475486f7741d6224abd3 declinePlayerMessage": "", "5ac3475486f7741d6224abd3 completePlayerMessage": "", @@ -22059,8 +22019,6 @@ "5ac61ab986f7746e352cec8c": "İkinci Fabrika çıkışını işaretle", "5ac61adf86f774741c1bf096": "Üçüncü Fabrika çıkışını işaretle", "5ac61b1486f7743a8f30fc84": "Hayatta kal ve bölgeden çık", - "5acf3bcb86f77418403493b7": "", - "5acf3bd286f7741bb83784a3": "", "63a865ce1943b749b5021f86": "Locate the fourth Factory extraction", "5ac3477486f7741d651d6885 acceptPlayerMessage": "", "5ac3477486f7741d651d6885 declinePlayerMessage": "", @@ -22069,9 +22027,6 @@ "5ac3479086f7742880308199 description": "Hepimiz yaptığımız halde taklit yapmayı sevmem. Bazen hayatta kalmak için bazen ise sadece korktuğumuz için. Biliyorsun konuşmayı pek sevmem, özelliklede yabancılarla, fakat sen iyi birisine benziyorsun. Eğer benim güvenimi kazanırsan, herkesle iyi geçinebilirsin. Sonuçta, sadece kişisel ilişkilerimiz hayatta kalmamıza yardım edecek. Pavel Yegorovich ile konuş, eğer sana güvenirse belki barut sağlayabilirim.", "5ac3479086f7742880308199 failMessageText": "", "5ac3479086f7742880308199 successMessageText": "Pavel Yegorovich is one of the few who stayed. I wonder if it’s because he’s military or just didn't have time to leave. Although, I feel he just has some shady business going.", - "5acf3dd886f77418d85168f2": "", - "5acf3ddd86f77418420bf391": "", - "5acf3df186f7741ce21f9b2b": "", "5dbadfd186f77449467d1482": "Prapor'un sadakat seviyesini 3'e yükseltin", "5ac3479086f7742880308199 acceptPlayerMessage": "", "5ac3479086f7742880308199 declinePlayerMessage": "", @@ -22081,7 +22036,6 @@ "5ae3267986f7742a413592fe failMessageText": "", "5ae3267986f7742a413592fe successMessageText": "Great gun, a solid build. There are no new orders, but you can come by tomorrow.", "5ae34b8b86f7741e5b1e5d48": "Tamamlamak için Model 870'i istenilen özelliklere göre modifiye et", - "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", @@ -22090,8 +22044,6 @@ "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "En önemlisi de kullanımı rahat, aynı spor ayakkabı rahatlığında. ", "5ae3550b86f7741cf44fc799": "Tamamlamak için AKM'yi istenilen özelliklere göre modifiye et", - "5af4136586f774551341dc75": "", - "5af4139286f774522e34389b": "", "5ae3270f86f77445ba41d4dd acceptPlayerMessage": "", "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", @@ -22100,8 +22052,6 @@ "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "So, is the Zenit AK ready? Great, leave it on that crate, thank you. You can come over for the next order tomorrow, if you want.", "5ae3570b86f7746efa6b4494": "Tamamlamak için AKS-74N'yi istenilen özelliklere göre modifiye et", - "5af413ae86f774522e3438a5": "", - "5af413b686f774522c7a6791": "", "5ae3277186f7745973054106 acceptPlayerMessage": "", "5ae3277186f7745973054106 declinePlayerMessage": "", "5ae3277186f7745973054106 completePlayerMessage": "", @@ -22110,8 +22060,6 @@ "5ae327c886f7745c7b3f2f3f failMessageText": "", "5ae327c886f7745c7b3f2f3f successMessageText": "I think i figured how to train the network! Ah, yes, this AK will do, thank you. Leave it somewhere in the corner, I'll look into it later.", "5ae445f386f7744e87761331": "Tamamlamak için AK-105'i istenilen özelliklere göre modifiye et", - "5af413ce86f774522e3438ae": "", - "5af413e486f774522e3438df": "", "5ae327c886f7745c7b3f2f3f acceptPlayerMessage": "", "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", @@ -22120,8 +22068,6 @@ "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Finished with the rifle? Great, hand it to me. I've got an interesting key here, might come in handy to you. It opens the gun store in Ultra, the KIBA store. It's got some great weapon mods in there, could be useful for our future gunsmithing.", "5ae4479686f7744f6c79b7b3": "Tamamlamak için AS VAL istenilen özelliklere göre modifiye et", - "5af413fa86f77407184494f3": "", - "5af4140186f774522d460775": "", "5ae3280386f7742a41359364 acceptPlayerMessage": "", "5ae3280386f7742a41359364 declinePlayerMessage": "", "5ae3280386f7742a41359364 completePlayerMessage": "", @@ -22130,7 +22076,6 @@ "5ae448a386f7744d3730fff0 failMessageText": "", "5ae448a386f7744d3730fff0 successMessageText": "Welcome to the crew, homie. So, down to business?", "5ae44c6886f7744f1a7eb2b8": "Ragman'nın sadakat seviyesini 2'ye çıkar", - "5af414f286f774522f59b0d7": "", "658d7f1277ede9bc4e90d5d6": "Ragman'nın sadakat seviyesini 2'ye çıkar", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", @@ -22140,7 +22085,6 @@ "5ae448bf86f7744d733e55ee failMessageText": "", "5ae448bf86f7744d733e55ee successMessageText": "Keskin nişancı gibi ateş ediyorsun, aferin. Adamlarım, Interchange'in Scav gövdeleriyle dolu olduğunu ve Ultra'nın artık daha sessiz olduğunu söylüyor, işte ödülünüz, onu hak ettiniz.", "5ae44ecd86f77414a13c970e": "Dörtyolda scavları öldür", - "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", "5ae448bf86f7744d733e55ee declinePlayerMessage": "", "5ae448bf86f7744d733e55ee completePlayerMessage": "", @@ -22154,7 +22098,6 @@ "5ae4510786f7740fa614399f": "DINO CLOTHES mağazasını Interchange haritasında bulun ve kontrol edin", "5ae4511d86f7740ffc31ccb5": "TOP BRAND mağazasını Interchange haritasında bulun ve kontrol edin", "5ae4514986f7740e915d218c": "Hayatta kal ve bölgeden ayrıl", - "5af4155d86f7745b5e2aba63": "", "5ae448e586f7744dcf0c2a67 acceptPlayerMessage": "", "5ae448e586f7744dcf0c2a67 declinePlayerMessage": "", "5ae448e586f7744dcf0c2a67 completePlayerMessage": "", @@ -22166,7 +22109,6 @@ "5ae452de86f77450595c4333": "Kavşak haritasında, ikinci yakıt tankını MS2000 işaretleyici ile işaretle", "5ae452fa86f774336a39758e": "Kavşak haritasında, üçüncü yakıt tankını MS2000 işaretleyici ile işaretle", "5ae4531986f774177033c3e6": "Hayatta kal ve bölgeden ayrıl", - "5b50761b88a4507f45121125": "", "5ae448f286f77448d73c0131 acceptPlayerMessage": "", "5ae448f286f77448d73c0131 declinePlayerMessage": "", "5ae448f286f77448d73c0131 completePlayerMessage": "", @@ -22176,7 +22118,6 @@ "5ae4490786f7744ca822adcc successMessageText": "Beauty will save the world, as they say. Thank you, really helped me out, brother. The hats are gonna be sold in just one day, trust me. Here, take this as a reward.", "5ae4543686f7742dc043c903": "Ushanka kulaklıklı şapkaları teslim et", "5ae454a086f7742be909a81a": "Kinda Kovboy şapkalarını teslim et", - "5af4157f86f7745f696ebd3d": "", "5fd89729a8c881276c560433": "Baskında Ushanka kulaklıklı şapka bul", "5fd89799c54dc00f463272d3": "Baskında Kinda Kovboy şapkası bul", "5ae4490786f7744ca822adcc acceptPlayerMessage": "", @@ -22192,7 +22133,6 @@ "5ae9b38a86f77432c81e2ce3": "OLI kargo bildirgesini teslim et", "5ae9b3b186f7745bbc722762": "Kavşak'ta IDEA kargo bildirgesini ele geçir", "5ae9b3c986f77432c81e2ce6": "IDEA kargo bildirgesini teslim et", - "5af415b286f77407184495dd": "", "5ae4493486f7744efa289417 acceptPlayerMessage": "", "5ae4493486f7744efa289417 declinePlayerMessage": "", "5ae4493486f7744efa289417 completePlayerMessage": "", @@ -22202,7 +22142,6 @@ "5ae4493d86f7744b8e15aa8f successMessageText": "Found the docs? Big thanks. Hand them over, let's see where our little cargo disappeared.", "5ae9b5bd86f774307c29df37": "OLI kargo rota belgelerini edin", "5ae9b63286f774229110402d": "Dokümanları teslim et", - "5af415c386f7745c267423a7": "", "5ae4493d86f7744b8e15aa8f acceptPlayerMessage": "", "5ae4493d86f7744b8e15aa8f declinePlayerMessage": "", "5ae4493d86f7744b8e15aa8f completePlayerMessage": "", @@ -22214,8 +22153,6 @@ "5ae455be86f7742dc043c969": "Kayak şapkasını teslim edin", "5ae455fb86f7744dd8242380": "Baskında Dağcı turist çantasını bul", "5ae4562086f774498b05e0dc": "Sırt çantasını teslim et", - "5af415f486f7745bf73dad59": "", - "5af4201386f774267375038c": "", "5ae4495086f77443c122bc40 acceptPlayerMessage": "", "5ae4495086f77443c122bc40 declinePlayerMessage": "", "5ae4495086f77443c122bc40 completePlayerMessage": "", @@ -22227,7 +22164,6 @@ "5ae9b7c886f774307c29df56": "%0-50 sağlamlıkta BNTI Gzhel-K zırhı teslim et", "5ae9b91386f77415a869b3f3": "%50-100 sağlamlıkta olan BNTI Gzhel-K zırh ele geçir", "5ae9b93b86f7746e0026221a": "%50-100 sağlamlıkta BNTI Gzhel-K zırhı teslim et", - "5af4165d86f7745bf73dad72": "", "5ae4495c86f7744e87761355 acceptPlayerMessage": "", "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", @@ -22250,7 +22186,6 @@ "5ae45d9386f774178f23774a": "WARTECH TV-109 + TV-106 yeleği teslim et", "5af079e486f77434693ad7f8": "Baskında BlackRock göğüs yeleği bul", "5af07a0286f7747dba10d8ac": "BlackRock göğüs yeleği teslim et", - "5af4168d86f7745c267423dc": "", "5ae4497b86f7744cf402ed00 acceptPlayerMessage": "", "5ae4497b86f7744cf402ed00 declinePlayerMessage": "", "5ae4497b86f7744cf402ed00 completePlayerMessage": "", @@ -22262,8 +22197,6 @@ "5ae9c0c986f77468ab400f88": "Kıyafet dizayn el kitabını teslim et - Bölüm 1", "5ae9c0e186f7746419683c5e": "Kıyafet dizayn el kitabını ele geçir - Bölüm 2 Kavşak'ta", "5ae9c10686f774703201f146": "Kıyafet dizayn el kitabını teslim et - Bölüm 2", - "5af416f086f7745c524a375f": "", - "5af4192c86f774297e641027": "", "5ae4498786f7744bde357695 acceptPlayerMessage": "", "5ae4498786f7744bde357695 declinePlayerMessage": "", "5ae4498786f7744bde357695 completePlayerMessage": "", @@ -22272,8 +22205,6 @@ "5ae4499a86f77449783815db failMessageText": "", "5ae4499a86f77449783815db successMessageText": "Wow wow, easy there, I'm on your side, man! Sorry, I'm just fucking around. I see you have mastered your charisma, that's good. Let's talk about business then.", "5ae9c29386f77427153c7fb0": "Karizma seviyeni gereken seviyeye yükselt", - "5af4170e86f7745c267423e9": "", - "5af4171686f7741c8f21cb9e": "", "5ae4499a86f77449783815db acceptPlayerMessage": "", "5ae4499a86f77449783815db declinePlayerMessage": "", "5ae4499a86f77449783815db completePlayerMessage": "", @@ -22282,7 +22213,6 @@ "5ae449a586f7744bde357696 failMessageText": "", "5ae449a586f7744bde357696 successMessageText": "Seems like it went without a hitch, thanks.", "5ae9c38e86f7743515398707": "Terapist'in sadakat seviyesini 3'e yükselt", - "5af4172f86f774059056f692": "", "5ae449a586f7744bde357696 acceptPlayerMessage": "", "5ae449a586f7744bde357696 declinePlayerMessage": "", "5ae449a586f7744bde357696 completePlayerMessage": "", @@ -22295,8 +22225,6 @@ "5ae9e1c786f77403fb3f9674": "Belirli bölgeye Shemagh zulala", "5ae9e2a286f7740de4152a0a": "Belirli bölgeye RayBench güneş gözlüklerini zulala", "5ae9e2e386f7740de4152a0d": "Belirli bölgeye Yuvarlak çerçeveli güneş gözlüklerini zulala", - "5af4177686f77406f92eee62": "", - "5af4178e86f77426757cb152": "", "5ae449b386f77446d8741719 acceptPlayerMessage": "", "5ae449b386f77446d8741719 declinePlayerMessage": "", "5ae449b386f77446d8741719 completePlayerMessage": "", @@ -22304,8 +22232,6 @@ "5ae449c386f7744bde357697 description": "Bir keresinde Ultra'da bazı Scav'ları korkutmuştun, unuttun mu kardeşim? Şimdi insanlar durumun kötüye gittiğini söylüyor. Söylentilere göre her türlü pislikle dolaşıyor. Senin için bir görevim var: Interchange'teki durumu kontrol et, en azından dolaşmanın boş olduğundan emin ol. Güvenli yollar falan bul. Sorunsuz gitmesine gerçekten ihtiyacım var, tamam mı?", "5ae449c386f7744bde357697 failMessageText": "", "5ae449c386f7744bde357697 successMessageText": "You're like some Invisible Man or a ghost or something. Hold on, lemme grab a map. So, the safest roads are here and here, right? Awesome, I'll let my guys know. Thank you, friend, really helped me out here.", - "5af417c086f7742a2712c3c2": "", - "5af4196886f7742a2627a4be": "", "5bb60cbc88a45011a8235cc5": "Hayatta kal ve Kavşak'tan çık", "5ae449c386f7744bde357697 acceptPlayerMessage": "", "5ae449c386f7744bde357697 declinePlayerMessage": "", @@ -22316,9 +22242,6 @@ "5ae449d986f774453a54a7e1 successMessageText": "Now that’s a true djigit! I'll assemble my guys, they'll bring so much good stuff from Goshan! So, about your reward: check out the new stock of body armor, all for you.", "5ae9e55886f77445315f662a": "Goshan yazar kasa anahtarını ele geçir", "5ae9e58886f77423572433f5": "Goshan yazar kasa anahtarını teslim et", - "5af417e386f77428ae313af3": "", - "5af4181286f77428bb55edd9": "", - "5af4186c86f77428ae313afa": "", "5ae449d986f774453a54a7e1 acceptPlayerMessage": "", "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", @@ -22327,8 +22250,6 @@ "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "Just don't turn on the flashlight unless you want to get blinded for days! Anyway, well done, leave it on that crate.", "5b47796686f774374f4a8bb1": "Tamamlamak için AK-102'yi istenilen özelliklere göre modifiye et", - "5b4f082f86f7747a284dd609": "", - "5b4f0cc186f7744def7f3389": "", "5b47749f86f7746c5d6a5fd4 acceptPlayerMessage": "", "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", @@ -22337,8 +22258,6 @@ "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Come on, give it here, I need to hand it over to the client and fast. I hope you haven’t told anyone what this MPX is built for. Well, let's wish the guy luck.", "5b477b3b86f77401da02e6c4": "Tamamlamak için SIG MPX'i istenilen özelliklere göre modifiye et", - "5b4f085586f7747a2910a9b2": "", - "5b4f0d6086f7742c1f5a3c4d": "", "5b47799d86f7746c5d6a5fd8 acceptPlayerMessage": "", "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", @@ -22347,8 +22266,6 @@ "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Thanks, leave them somewhere here. I’m a bit busy right now, catch you later.", "5b477f1486f7743009493232": "Tamamlamak için AKMN'yi istenilen özelliklere göre modifiye et", - "5b4f087886f77479806f2c61": "", - "5b4f0cce86f774287331639a": "", "5b477b6f86f7747290681823 acceptPlayerMessage": "", "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", @@ -22357,8 +22274,6 @@ "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "The rifle is ready? Great. I guess you have already figured out that Sniper's real name is Dima, I let it slip a while ago. Not a word about him to anybody, I hope you understand.", "5b47824386f7744d190d8dd1": "Tamamlamak için M1A'i istenilen özelliklere göre modifiye et", - "5b4f094886f7747b127d9d7f": "", - "5b4f0d7186f77412bc326997": "", "5b477f7686f7744d1b23c4d2 acceptPlayerMessage": "", "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", @@ -22367,8 +22282,6 @@ "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "Makes me want to put it on a showcase display. Masterful work, it truly did turn out to be a masterpiece.", "5b4783ba86f7744d1c353185": "Tamamlamak için M4A1'i istenilen özelliklere göre modifiye et", - "5b4f095b86f7747a2637c3f9": "", - "5b4f0ce686f77429c16dcb63": "", "5b47825886f77468074618d3 acceptPlayerMessage": "", "5b47825886f77468074618d3 declinePlayerMessage": "", "5b47825886f77468074618d3 completePlayerMessage": "", @@ -22378,9 +22291,6 @@ "5b47876e86f7744d1c353205 successMessageText": "Oh, cool, give 'em here. Mechanic asked for it, as you've probably figured. I’ll send it to him today. Thank you, big help.", "5b47884886f7744d1c35327d": "Baskın esnasında yakıt kondisyoneri bul, 4 adet ", "5b47886986f7744d1a393e65": "4 adet yakıt kondisyonerini teslim et ", - "5b4f09c786f77479806f2cf3": "", - "5b4f09f586f7744fba15b2dc": "", - "5b4f0c7b86f77479ee584ab0": "", "5b47876e86f7744d1c353205 acceptPlayerMessage": "", "5b47876e86f7744d1c353205 declinePlayerMessage": "", "5b47876e86f7744d1c353205 completePlayerMessage": "", @@ -22396,9 +22306,6 @@ "5b478a3786f77470315db7fa": "Kedi heykelini teslim et", "5b478a6c86f7744d190d8f4d": "Baskın esnasında Roler submariner altın kol saatini bul", "5b478a8486f7744d1c35328b": "Altın Rolerı teslim et ", - "5b4f0a4386f7744e1155e1ed": "", - "5b4f0a5086f7744e3a6b328a": "", - "5b4f0c8786f77479806f3028": "", "62a7004c1c307729c3264f9a": "Baskında Altın yumurta bul", "62a70058ec21e50cad3b6709": "Altın yumurtayı teslim et", "5b47891f86f7744d1b23c571 acceptPlayerMessage": "", @@ -22411,8 +22318,6 @@ "5b478c4c86f7744d1a393fac": "Peltor ComTac 2'yi yerine bırak ", "5b478c7386f7744d1a393fb1": "6B47 Kaskını yerine bırak ", "5b478cb586f7744d1a393fb5": "BNTI Gzhel-K zırhını yerine bırak ", - "5b4f0a8086f7744e3a6b3290": "", - "5b4f0c9086f77453572f5538": "", "5b478b1886f7744d1b23c57d acceptPlayerMessage": "", "5b478b1886f7744d1b23c57d declinePlayerMessage": "", "5b478b1886f7744d1b23c57d completePlayerMessage": "", @@ -22424,8 +22329,6 @@ "5b478daf86f7744d1c35339b": "İkinci minibüsü işaretle ", "5b478dca86f7744d190d91c2": "Üçüncü minibüsü işaretle ", "5b478de086f7744d1c3533a1": "Hayatta kal ve bölgeden ayrıl", - "5b4f0ac386f7747a2637c4c0": "", - "5b4f0c9d86f7744def7f3385": "", "5b478d0f86f7744d190d91b5 acceptPlayerMessage": "", "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", @@ -22439,8 +22342,6 @@ "5b4c82cd86f774170c6e4169": "Üçüncü Kimyasal konteynerini ele geçir", "5b4c832686f77419603eb8f0": "İkinci Kimyasal konteyneri teslim et", "5b4c836486f77417063a09dc": "Üçüncü kimyasal konteynerını teslim et", - "5b4f0b8b86f7747a2910aaa4": "", - "5b4f0c1486f7747a2637c513": "", "5b478eca86f7744642012254 acceptPlayerMessage": "", "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", @@ -22450,7 +22351,6 @@ "5b478ff486f7744d184ecbbf successMessageText": "Nice, spot on! Hopefully my boys will recover, quite some gene pool they'll get from the new blood, but heck, they don't have much choice.", "5b47905886f7746807461fe2": "4 adet solunum cihazı teslim et", "5b4790a886f774563c7a489f": "3 adet Tıbbi kan seti teslim et", - "5b4f0b1f86f7746c9e27e9ea": "", "5cb5ffd986f7746ef55de2c7": "Baskın esnasında 4 adet solunum cihazı bul", "5ec1388d83b69d213d3c2ee0": "Baskın esnasında 3 adet Tıbbi kan seti bul", "5b478ff486f7744d184ecbbf acceptPlayerMessage": "", @@ -22463,8 +22363,6 @@ "5b47932586f7747cc908b5dd": "İskeleyi izlemek için bir WIFI kamera kurun\n", "5b47936686f77427fd044025": "Bağlantı noktasına giden yolu izlemek için WIFI kamerayı kurun\n", "5b47938086f7747ccc057c22": "Kiba Arms mağazasını izlemek için WIFI kamerayı kurun\n", - "5b4f0b6686f77479ee584a74": "", - "5b4f0c0986f77453572f54e0": "", "5b47926a86f7747ccc057c15 acceptPlayerMessage": "", "5b47926a86f7747ccc057c15 declinePlayerMessage": "", "5b47926a86f7747ccc057c15 completePlayerMessage": "", @@ -22482,8 +22380,6 @@ "5b4c76d886f77471d31735a3": "3 denetleyiciyi teslim et", "5b4c7aec86f77459732b4b08": "İkinci Tek Eksenli Fiber Optik Jiroskopu teslim et", "5b4c8e6586f77474396a5400": "Sahil Şeridi üzerinde ikinci Tek Eksenli Fiber Optik Jiroskopu edinin", - "5b4f0bca86f7744a6c2b8164": "", - "5b4f0bfa86f77453572f54dc": "", "66d078aadf338e6c13578080": "Obtain the first motor controller on Woods", "66d07de6c7ef9040fff0b789": "Hand over the first controller", "5b4794cb86f774598100d5d4 acceptPlayerMessage": "", @@ -22496,8 +22392,6 @@ "5b47968e86f7745877352c28": "Dörtyol haritasında Generic mağazasında 3 tane altın zinciri BTR-80A'nın yanındaki yatağın altına sakla", "5b4796c086f7745877352c2c": "Gümrük haritasında 3 tane altın zinciri yurdun 3. katında ki mikrodalgaya sakla", "5b47971086f774587877ad34": "Orman haritasında 3 tane altın zinciri kereste fabrikasının orta alan birimine sakla", - "5b4f0ba486f7747a2637c4fb": "", - "5b4f0c5886f7747a2910aacd": "", "5c923d3d86f774556e08d7a5": "22:00 ve 10:00 saatleri arasında Dörtyol haritasında 5 adet PMC operatörünü öldür", "5b4795fb86f7745876267770 acceptPlayerMessage": "", "5b4795fb86f7745876267770 declinePlayerMessage": "", @@ -22507,7 +22401,6 @@ "5bc4776586f774512d07cf05 failMessageText": "", "5bc4776586f774512d07cf05 successMessageText": "So, do you feel like Zaitsev yet? Sniper is satisfied with the first test results and has already prepared the next task.", "5bc850d186f7747213700892": "40 metre üzerinde bir mesafeden dürbünsüz sürgülü tüfekle 5 Scav öldür", - "5bdac2f186f7743e152e8695": "", "5bc4776586f774512d07cf05 acceptPlayerMessage": "", "5bc4776586f774512d07cf05 declinePlayerMessage": "", "5bc4776586f774512d07cf05 completePlayerMessage": "", @@ -22516,9 +22409,7 @@ "5bc479e586f7747f376c7da3 failMessageText": "", "5bc479e586f7747f376c7da3 successMessageText": "Not bad, not bad. Even I wouldn't be so accurate with my shots, I'm way too old now. While you were shooting, Sniper has prepared the next test for you.", "5bd983d886f7747ba73fc246": "40 metreden fazla uzaklıktan 3 kere bacaktan sürgülü tüfek ile vur", - "5bd9842e86f7747baa07aba7": "", "5bd9944f86f774035c4877f3": "40 metreden fazla uzaklıktan 2 kere kafadan sürgülü tüfek ile vur", - "5bdabf0586f7743e1809c555": "", "5bc479e586f7747f376c7da3 acceptPlayerMessage": "", "5bc479e586f7747f376c7da3 declinePlayerMessage": "", "5bc479e586f7747f376c7da3 completePlayerMessage": "", @@ -22527,7 +22418,6 @@ "5bc47dbf86f7741ee74e93b9 failMessageText": "", "5bc47dbf86f7741ee74e93b9 successMessageText": "You have got a good reaction time since you're still standing here. Grab your new hat, as promised! Go on, shooter, new tests await you.", "5bc47e3e86f7741e6b2f3332": "3 PMC operatörünü kısa menzilde, 25 metreden daha kısa bir mesafede, sürgülü tüfek kullanarak öldür", - "5bdabf1f86f7743e1809c556": "", "5bc47dbf86f7741ee74e93b9 acceptPlayerMessage": "", "5bc47dbf86f7741ee74e93b9 declinePlayerMessage": "", "5bc47dbf86f7741ee74e93b9 completePlayerMessage": "", @@ -22536,7 +22426,6 @@ "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Ready? Then let’s get to work. Sniper took a big interest in you.", "5bc4813886f774226045cb9a": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", - "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "En az 80 m mesafeden kurmalı tüfekler kullanarak PMC'leri öldürün", "657b0567ec71635f16471dd2": "Sürgülü tüfek kullanarak PMC görevlilerini en az 80 metre mesafeden ortadan kaldırın", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", @@ -22547,7 +22436,6 @@ "5bc4826c86f774106d22d88b failMessageText": "", "5bc4826c86f774106d22d88b successMessageText": "Good work, owl eyes. You thinned out those night predators.", "5bc84f7a86f774294c2f6862": "Gümrükte sürgülü bir tüfekle 21:00 ile 05:00 saatleri arasında 8 tane Scav öldür", - "5bdabf4486f7743e1665df6d": "", "5bc4826c86f774106d22d88b acceptPlayerMessage": "", "5bc4826c86f774106d22d88b declinePlayerMessage": "", "5bc4826c86f774106d22d88b completePlayerMessage": "", @@ -22556,7 +22444,6 @@ "5bc4836986f7740c0152911c failMessageText": "", "5bc4836986f7740c0152911c successMessageText": "There are no foul tricks in the sniper play. Good work, kid.", "5bc483ba86f77415034ba8d0": "5 adet Scav keskin nişancısını sürgülü bir tüfekle öldür", - "5bdabf5386f7743e152e867c": "", "5bc4836986f7740c0152911c acceptPlayerMessage": "", "5bc4836986f7740c0152911c declinePlayerMessage": "", "5bc4836986f7740c0152911c completePlayerMessage": "", @@ -22565,7 +22452,6 @@ "5bc4856986f77454c317bea7 failMessageText": "", "5bc4856986f77454c317bea7 successMessageText": "The enemy is absolutely helpless when they don't know where they get shot from. You did well, shooter.", "5bc485b586f774726473a858": "5 PMC operatörünü susturuculu bir sürgülü tüfekle en az 45 metre uzaklıktan öldür", - "5bdabf6286f7743e171249af": "", "5bc4856986f77454c317bea7 acceptPlayerMessage": "", "5bc4856986f77454c317bea7 declinePlayerMessage": "", "5bc4856986f77454c317bea7 completePlayerMessage": "", @@ -22574,7 +22460,6 @@ "5bc4893c86f774626f5ebf3e failMessageText": "Bu kolay bir iş görev değil. Tekrar deneyin.", "5bc4893c86f774626f5ebf3e successMessageText": "It seems that sometimes being smart isn’t enough to act smart. Well, a good old bolty can be of help with this. Sniper is silent for now, so let's wait for a little before your next tasks. I will let you know when there are new tests for you.", "5bc48aed86f77452c947ce67": "Sürgülü tüfek kullanırken ölmeden PMC ajanlarını kafadan vurarak ortadan kaldırın", - "5bdabf7186f7743e152e867d": "", "64b6a5a525251516d7685428": "You cannot die or leave the raid until the quest is handed over to the customer (Status: Killed, Ran through, MIA)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", @@ -22587,8 +22472,6 @@ "5c0bc43e86f7744794440ba5": "Roler saatini yurdun 3. katındaki merdivenin karşısındaki çöp yığınlarına bırak", "5c12320586f77437e44bcb15": "Sahte flash sürücüsünü yurdun 3. katındaki merdivenin karşısındaki çöp yığınlarına bırak", "5c1233ac86f77406fa13baea": "Görevi bitirmeden Gümrükte hiç scav öldürme", - "5c17b96486f774331c793f28": "", - "5c1fa91586f7740de474cb36": "", "5c50481c86f77410650e0521": "Yanlış flash sürücüsünü Gümrük haritasında bul", "5c0bbaa886f7746941031d82 acceptPlayerMessage": "", "5c0bbaa886f7746941031d82 declinePlayerMessage": "", @@ -22599,8 +22482,6 @@ "5c0bc91486f7746ab41857a2 successMessageText": "You did good, now you got my respect! I'll keep you in mind if I have something interesting.", "5c0bc95086f7746e784f39ec": "Susturuculu 12 kalibre pompalı tüfekle scavları öldür", "5c0bcc9c86f7746fe16dbba9": "Susturuculu 12 kalibre pompalı tüfekle PMC'leri öldür", - "5c1ea18b86f77461d75caa21": "", - "5c1fa99086f77407e903a5fa": "", "5c0bc91486f7746ab41857a2 acceptPlayerMessage": "", "5c0bc91486f7746ab41857a2 declinePlayerMessage": "", "5c0bc91486f7746ab41857a2 completePlayerMessage": "", @@ -22609,8 +22490,6 @@ "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "İyi iş dostum! Her şey plana göre gitti.", "5c1242fa86f7742aa04fed52": "PMC'leri 21:00-06:00 saatleri arasında öldür (Fabrika ve Laboratuvar hariç)", - "5c17d05e86f77430a64c6c66": "", - "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", "5c0bd01e86f7747cdd799e56 declinePlayerMessage": "", "5c0bd01e86f7747cdd799e56 completePlayerMessage": "", @@ -22619,8 +22498,6 @@ "5c0bd94186f7747a727f09b2 failMessageText": "", "5c0bd94186f7747a727f09b2 successMessageText": "So, what do you think? Some serious toy, yeah? Great, hand it over then. Here, that's for the help. Keep in touch, I might need more help to test some other things.", "5c1b765d86f77413193fa4f2": "Hybrid 46 susturucusu ve Trijicon REAP-IR termal dürbünü olan M1A ile 5 PMC öldür", - "5c1fabb986f77431f74f0de6": "", - "5c1fabd686f77410894b63f8": "", "5c0bd94186f7747a727f09b2 acceptPlayerMessage": "", "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", @@ -22629,8 +22506,6 @@ "5c0bdb5286f774166e38eed4 failMessageText": "", "5c0bdb5286f774166e38eed4 successMessageText": "There you go. Now I'm certain you won't piss your pants if some shit hits the fan.", "5c0bdbb586f774166e38eed5": "6 Stres direnci beceri düzeyi kazan", - "5c1faac086f7740ebd348c76": "", - "5c1faac986f77410894b63f5": "", "5c0bdb5286f774166e38eed4 acceptPlayerMessage": "", "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", @@ -22642,8 +22517,6 @@ "5c137b8886f7747ae3220ff4": "Reserve'de sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın", "5c137ef386f7747ae10a821e": "Shoreline'da sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın", "5c137f5286f7747ae267d8a3": "Gümrükte sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın", - "5c20007986f7743c7b263515": "", - "5c20009b86f7742b3c0a8fd9": "", "629f10b114061f3074380298": "Lighthouse'da sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın ", "63aec6f256503c322a190374": "Streets of Tarkov'da sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın", "64b694c8a857ea477002a408": "Interchange'te sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın", @@ -22656,8 +22529,6 @@ "5c0be13186f7746f016734aa failMessageText": "Deneyimli bir keskin nişancı kendini böyle ele vermez. Nefesini tut ve tekrar dene.", "5c0be13186f7746f016734aa successMessageText": "Frankly speaking, i wasn't sure you could do it. But it sure seems that you're no regular pleb.", "5c0be2b486f7747bcb347d58": "Keskin nişancı beceri seviyeni 9'a yükselt", - "5c1fb5f086f7744a184fb3c5": "", - "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Sürgülü tüfek kullanırken PMC ajanlarını ölmeden ortadan kaldırın", "64b67fcd3e349c7dbd06bd16": "Görev aktifken ölmemeli veya baskından ayrılmamalısınız", "5c0be13186f7746f016734aa acceptPlayerMessage": "", @@ -22669,8 +22540,6 @@ "5c0be5fc86f774467a116593 successMessageText": "Getirdin mi? Tamamını şu köşeye bırak. Dikkat et, bunlar narin aletler. Bütün bu klinik işi başarısız olsa bile o aletler için para verecek birilerini tanıyorum, bu aramızda başkasına söyleme. Böyle pahalı aletleri neden çöpe atayım?", "5c0be66c86f7744523489ab2": "Oftalmoskop teslim et", "5c0be69086f7743c9c1ecf43": "LEDX Deri Transillümatörleri teslim et", - "5c1fd1ae86f7742b3b47f064": "", - "5c1fd1b586f7742b3a651f74": "", "5fd892bc37b6e511a4734969": "Baskında Oftalmoskop bul", "5fd8935b7dd32f724e0fe7ee": "Baskında LEDX bul", "5c0be5fc86f774467a116593 acceptPlayerMessage": "", @@ -22681,8 +22550,6 @@ "5c0d0d5086f774363760aef2 failMessageText": "", "5c0d0d5086f774363760aef2 successMessageText": "To be fair, I did not doubt that you are the person I can trust, not only in work.", "5c0d0dfd86f7747f482a89a5": "10 sağlık beceri seviyesi kazan", - "5c1fd5e586f7743c7b261f79": "", - "5c1fd5f586f7742b391bf138": "", "5c0d0d5086f774363760aef2 acceptPlayerMessage": "", "5c0d0d5086f774363760aef2 declinePlayerMessage": "", "5c0d0d5086f774363760aef2 completePlayerMessage": "", @@ -22692,8 +22559,6 @@ "5c0d0f1886f77457b8210226 successMessageText": "Very good, very good! The clients will be happy with you, mercenary. Your reward.", "5c138c4486f7743b056e2943": "Programlanabilir işlemcileri teslim et", "5c138d4286f774276a6504aa": "Vericiyi teslim et", - "5c1fd61486f7742b391bf139": "", - "5c1fd61e86f7742b38529146": "", "5ec13d45a1032866196c939b": "Baskın esnasında 2 tane Virtex programlanabilir işlemciyi bul", "5ec13da983b69d213d3c2ee4": "Baskın esnasında Askeri COFDM Wi-Fi sinyal verici bul", "5c0d0f1886f77457b8210226 acceptPlayerMessage": "", @@ -22704,7 +22569,6 @@ "5c0d190cd09282029f5390d8 failMessageText": "", "5c0d190cd09282029f5390d8 successMessageText": "Good, limbs are still attached, and the needed noise has been made. You'll be useful in these matters then, warrior. Here's the reward, you earned it.", "5c1b760686f77412780211a3": "El bombası kullanırken PMC operatörlerini ortadan kaldırın", - "5c1fab4186f77431f74f0de5": "", "5c0d190cd09282029f5390d8 acceptPlayerMessage": "", "5c0d190cd09282029f5390d8 declinePlayerMessage": "", "5c0d190cd09282029f5390d8 completePlayerMessage": "", @@ -22713,8 +22577,6 @@ "5c0d1c4cd0928202a02a6f5c failMessageText": "", "5c0d1c4cd0928202a02a6f5c successMessageText": "Bitti mi? Farkında mısın? Bu cidden işe yaradı, liderlerinin konuşma tarzı bile değişti. Beni suçlama ama bu dünyada böyle rezil adamlarla bile anlaşabilmen gerekiyor.", "5c1b778286f774294438b536": "40 tane scavı Dörtyol haritasında 60 metrenin altında özel ekipman giyerken öldür", - "5c1fd52e86f7742b391bf099": "", - "5c1fd53a86f7742b3c0a7b7a": "", "5c0d1c4cd0928202a02a6f5c acceptPlayerMessage": "", "5c0d1c4cd0928202a02a6f5c declinePlayerMessage": "", "5c0d1c4cd0928202a02a6f5c completePlayerMessage": "", @@ -22726,8 +22588,6 @@ "5c1b713986f77470d8650910": "12 tane scavı Dörtyolda UN üniforması giyerek öldür (UNTAR kask, MF-UNTAR zırhı, Colt M4A1)", "5c1b713f86f774719c22e8a0": "Sahil Şeridi'nde BM üniforması (UNTAR kaskı, MF-UNTAR vücut zırhı, M4A1 tüfeği) giyerken Scav'ları ortadan kaldırın", "5c1fd66286f7743c7b261f7b": "12 tane scavı Ormanda UN üniforması giyerek öldür (UNTAR kask, MF-UNTAR zırhı, Colt M4A1)", - "5c20ce1786f77453c56d6397": "", - "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", @@ -22744,8 +22604,6 @@ "5c13982286f774365a69cc4d": "Sahil şeridinde hayatta kal ve bölgeden \"Hayatta Kalarak\" durumu ile ayrıl", "5c13989886f7747878361a50": "Fabrikada hayatta kal ve bölgeden \"Hayatta Kalarak\" durumu ile ayrıl", "5c1931e686f7747ce71bcbea": "Laboratuvarda hayatta kal ve bölgeden \"Hayatta Kalarak\" durumu ile ayrıl", - "5d0a0e2286f7743a1a74d63b": "", - "5d0a111586f7743a1b0d87b1": "", "5dc984ae4b68b15f4825cea5": "Rezerv'de hayatta kal ve bölgeden \"Hayatta Kalarak\" durumu ile ayrıl", "629f08e7d285f377953b2af1": "Deniz Feneri'nde hayatta kal ve bölgeden \"Hayatta Kalarak\" durumu ile ayrıl", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", @@ -22762,8 +22620,6 @@ "5c10f94386f774227172c575": "İkinci yakıt varilini bul ve işaretle ", "5c10f94386f774227172c576": "Üçüncü yakıt varilini bul ve işaretle ", "5c10f94386f774227172c577": "Hayatta kal ve bölgeden çık", - "5c1fb27e86f7744a160dda8c": "", - "5c1fcf9486f7742b3b47e370": "", "5c10f94386f774227172c572 acceptPlayerMessage": "", "5c10f94386f774227172c572 declinePlayerMessage": "", "5c10f94386f774227172c572 completePlayerMessage": "", @@ -22773,8 +22629,6 @@ "5c1128e386f7746565181106 successMessageText": "Now we’re talking! I’ll grab a soldering iron and get to work. Perhaps the market's gonna stabilize already by that time.", "5c1129ed86f7746569440e88": "Kabloları teslim et", "5c112a1b86f774656777d1ae": "Kapasitörleri teslim et", - "5c1fb45b86f7744a1a275659": "", - "5c1fb46386f7744a184fb3c2": "", "5ca719ef86f7740a78020783": "Baskın esnasında 5 tane tel bul", "5ca71a1e86f7740f5a5b88a2": "Baskın esnasında 5 tane kapasitör bul", "5c1128e386f7746565181106 acceptPlayerMessage": "", @@ -22785,8 +22639,6 @@ "5c112d7e86f7740d6f647486 failMessageText": "", "5c112d7e86f7740d6f647486 successMessageText": "There you go, now I'm absolutely sure that you can return from a raid and with some good stuff in your backpack. Well done, brother!", "5c112dc486f77465686bff38": "9 araştırma beceri seviyesi kazan", - "5c1fd15f86f7742b3c0a7b78": "", - "5c1fd17786f7742b3b47f063": "", "5c112d7e86f7740d6f647486 acceptPlayerMessage": "", "5c112d7e86f7740d6f647486 declinePlayerMessage": "", "5c112d7e86f7740d6f647486 completePlayerMessage": "", @@ -22796,8 +22648,6 @@ "5c1141f386f77430ff393792 successMessageText": "Do you have it? Great. I wonder what he would ask next time, a diamond-coated toilet? But hey, if he does ask for it, you actually will have to look for it. Thanks for the help, brother.", "5c11427386f77430ff393793": "3 tane antika çaydanlık teslim et", "5c122c5f86f77437e44bcb0e": "2 tane antik vazo teslim et", - "5c1fd03686f7742b3c0a6a9f": "", - "5c1fd04886f7742b3b47e8a2": "", "5ca7254e86f7740d424a2043": "Baskın esnasında 3 tane antik çaydanlık bul", "5ca7258986f7740d424a2044": "Baskın esnasında 2 tane antik vazo bul", "62a700893e015d7ce1151d90": "Baskında Axel papağan heykelciği bulun", @@ -22812,8 +22662,6 @@ "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "My guys are saying that Customs is at World War 3 right now, BEARs and USECs are dropping Scavs left and right! Good shit, nice work. Here's your prize, as promised.", "5c1fa9c986f7740de474cb3d": "Gümrükte 15 PMC öldür. Bunu yaparken özel ekipmanını giymek zorundasın", - "5c1faa0d86f77410894b63ef": "", - "5c1faa1986f7740ebd348c71": "", "5c1234c286f77406fa13baeb acceptPlayerMessage": "", "5c1234c286f77406fa13baeb declinePlayerMessage": "", "5c1234c286f77406fa13baeb completePlayerMessage": "", @@ -22827,8 +22675,6 @@ "5c12487386f7742a60324299": "Peacekeeper'ın seviyesini 4'e yükselt", "5c12489886f77452db1d2b05": "Prapor'un seviyesini 4'e yükselt", "5c1248ef86f77428266184c2": "Therapist'in seviyesini 4'e yükselt", - "5c1fab8686f77410894b63f7": "", - "5c1fab9286f77407e903a60d": "", "65e08db1a97b2cd4e452432d": "Jaeger ile 4. seviye sadakate ulaşın", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", @@ -22839,8 +22685,6 @@ "5c139eb686f7747878361a6f successMessageText": "You actually brought them! I'm pleased! Let me have a closer look at them.", "5c139eb686f7747878361a72": "Sabit Okuyucuyu teslim et", "5c139eb686f7747878361a73": "VPX Flash Bellek Modülünü teslim et", - "5c1fcf3786f7742b3b47e36f": "", - "5c1fcf4086f7742b38527bde": "", "5ec14003e16f6c41ee73525f": "Baskın esnasında UHF RFID Sabit okuyucuyu bul", "5ec14080c9ffe55cca300867": "Baskın esnasında VPX Flash Bellek Modülünü bul", "5c139eb686f7747878361a6f acceptPlayerMessage": "", @@ -22850,13 +22694,6 @@ "5c51aac186f77432ea65c552 description": "Ah, o sensin. Yerel sorun giderici, ha? Evet, seni tanıyorum. Ve bir şeyi öğrensen iyi edersin. Etraftaki tek insan sen değilsin. Okyanusta başka balıklar da var, belki senden daha yetenekli bile olabilirler. Etrafta geziyolar, kendi işlerine bakıyolar, ve zaman zaman geride eşyalar bırakıyorlar. Ve olay şu ki - benim bu eşyalara ihtiyacım var. Biliyorum bulması kolay eşyalar değiller, fakat ödül seni hayal kırıklığına uğratmayacak.", "5c51aac186f77432ea65c552 failMessageText": "", "5c51aac186f77432ea65c552 successMessageText": "Have you got it all? Good, mercenary. Your hard-earned reward awaits you in the specified drop-spot, just as promised. Congratulations, and welcome.", - "5c51aea486f774423e5e36e3": "", - "5c51aebf86f774423b4767d2": "", - "5c51aee886f774423d3f9072": "", - "5c51af6586f774423b4767d3": "", - "5c51af7086f774423d3f9073": "", - "5c51afd786f774423e5e36e5": "", - "5c51affc86f774423b4767d4": "", "5c51bed886f77478bb033461": "Yıpranmış antik kitabı teslim et", "5c51bf8786f77416a11e5cb2": "#FireKlean silah yağını teslim et", "5c51bf9a86f77478bf5632aa": "Altın horuzu teslim et", @@ -22867,56 +22704,6 @@ "5c51c23a86f77478bb033466": "Hamsi konserve kutusunu teslim et", "5c51c24c86f77416a11e5cb7": "Sahte bıyığı teslim et", "5c51c25c86f77478bf5632af": "Kotton'nun beresini teslim et", - "5c51db2a86f77478be4009ff": "", - "5c52b92e86f77478be400a00": "", - "5c52bb0586f774119c51f7f2": "", - "5c52bb6486f774119d57d3c2": "", - "5c52bb9586f774119f65fea2": "", - "5c52bbad86f774119c51f7f3": "", - "5c52bbb786f774119e65e722": "", - "5c52bbc086f77411a04c2c72": "", - "5c52bbde86f774119d57d3c3": "", - "5c52bbe986f774119f65fea3": "", - "5c52c3a486f7745e2760c5c2": "", - "5c52c3cf86f774119d57d3c4": "", - "5c52c3e386f774119f65fea4": "", - "5c52c4f386f7745e2760c5c3": "", - "5c52c50686f774119d57d3c5": "", - "5c52c51786f774119f65fea5": "", - "5c52c53286f7745e2760c5c4": "", - "5c52c54586f774119d57d3c6": "", - "5c52c55486f774119f65fea6": "", - "5c52c58c86f774119f65fea7": "", - "5c52c59986f7745e2760c5c5": "", - "5c52c5a586f774119d57d3c7": "", - "5c52c5ce86f774119f65fea8": "", - "5c52c5e386f7745e2760c5c6": "", - "5c52c5f686f774119d57d3c8": "", - "5c52c60d86f774119f65fea9": "", - "5c52c6f986f77411a04c2c73": "", - "5c52c77386f774119c51f7f4": "", - "5c52c78986f774119e65e723": "", - "5c52c7d286f77411a04c2c74": "", - "5c52c7e786f774119c51f7f5": "", - "5c52c8b086f774119e65e724": "", - "5c52c96586f7745e2760c5c8": "", - "5c52c9b186f774119d57d3c9": "", - "5c52c9e786f774119f65feaa": "", - "5c52ca1286f7745e2760c5c9": "", - "5c52ca2286f774119d57d3ca": "", - "5c52ca2e86f774119f65feab": "", - "5c52ca5b86f774119e65e725": "", - "5c52ca6e86f77411a04c2c75": "", - "5c52ca7c86f774119c51f7f6": "", - "5c52ca9786f774119e65e726": "", - "5c52caae86f77411a04c2c76": "", - "5c52ccdb86f774469a2cf962": "", - "5c52ccfb86f774469c210932": "", - "5c52cd0f86f77446992b9172": "", - "5c52cd2086f774469b529d72": "", - "5c52cd3386f774469d73a592": "", - "5c52ce5486f7742fba438c52": "", - "5c52ce6786f7742fb77f6b12": "", "5c52da1086f7742fbb42a814": "Eski firesteel'i teslim et", "5c52da5886f7747364267a14": "Antika baltayı teslim et", "5cb5ddd386f7746ef72a7e73": "Baskın esnasında eski firesteel'i bul", @@ -22931,8 +22718,6 @@ "5cb5df5586f7746ef82c17e8": "Baskın esnasında hamsi konservesini bul", "5cb5df7186f7747d215eca08": "Baskın esnasında sahte bıyığı bul", "5cb5df8486f7746ef82c17ea": "Baskın esnasında Kotton beresini bul", - "5db9aaf46194ab4e69304de8": "", - "5de798b233870205123c7f33": "", "5ec798b8254c431289542b90": "Baskında Raven heykelciğini bul", "5ec7998dc1683c0db84484e7": "Raven heykelciğini teslim et", "5ec79aaac1683c0db84484e8": "Baskında Pestily veba maskesi bul", @@ -22955,17 +22740,6 @@ "60d074211bdece56c249cc13": "WZ Cüzdanı ver", "60d0748820a6283a506aebb1": "Baskında LVNDMARK'ın fare zehrini bul", "60d074ef401d874962160aee": "LVNDMARK'ın fare zehrini ver", - "60d9a73d9f89812e5b6ac368": "", - "60d9a752ac6eb02bc726fcc6": "", - "60d9a77141fd1e14d71e2bfc": "", - "60d9a77c646f74055e27750a": "", - "60d9a7955f9e6175514def1b": "", - "60d9a79fac6eb02bc726fcc7": "", - "60d9a7abf81cc57f47174189": "", - "60d9a7c7826ca0323464cf23": "", - "60d9a7cf9f89812e5b6ac369": "", - "60d9a7dd401d87496216141f": "", - "60d9a80e807141159d0a4e5b": "", "60e827a20c492412897c688e": "Baskında Smoke kar yünü bul", "60e827faf09904268a4dbc40": "Smoke kar maskesini teslim et", "62a6ff004de19a4c3422ea5d": "Baskında bulunan öğeyi teslim edin: Missam forklift anahtarı", @@ -22993,8 +22767,6 @@ "5d2495a886f77425cd51e403 successMessageText": "Buldun mu? İyi bir iş. Tamam, artık Jaeger ile görüşebilmek için yeterli olduğunu düşünüyorum. Senin için fazlaca işi olabilir.", "5d249a6e86f774791546e952": "Jaegerin şifreli mesajını alın", "5d249aa286f77475e8376399": "Mechanic'e mesajı teslim et", - "5d7fc0f386f77440373c4d78": "", - "5d7fc0fb86f77440351becb3": "", "63ac18f4972364554162a25c": "Ormanlıkta belirtilen noktada Jaeger'in kampını bulun", "5d2495a886f77425cd51e403 acceptPlayerMessage": "", "5d2495a886f77425cd51e403 declinePlayerMessage": "", @@ -23006,8 +22778,6 @@ "5d24ba7886f77439c92d6baa": "Baskın sırasında Iskra yemek kutusu'nu bul", "5d24bb4886f77439c92d6bad": "Baskında paket Emelya çavdarlı kızarmış ekmek parçaları bul", "5d24bb7286f7741f7956be74": "Baskında Lezzetli sığır etli güveç konservesi bul", - "5d76276186f774454c5360bc": "", - "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", "5d24b81486f77439c92d6ba8 declinePlayerMessage": "", "5d24b81486f77439c92d6ba8 completePlayerMessage": "", @@ -23016,8 +22786,6 @@ "5d25aed386f77442734d25d2 failMessageText": "", "5d25aed386f77442734d25d2 successMessageText": "As one famous person used to say \"Float like a butterfly, sting like a bee\". A piece of good advice, you better remember it. So, do you feel how easy it is to move without all those plates on you? If you move fast, you don't even need body armor to deal with scum.", "5d25af3c86f77443ff46b9e7": "Ormanda 5 scav öldür. Bunu yaparken çelik yelek giymemelisin", - "5d76302d86f774454d58840e": "", - "5d77d4a386f7745041358b56": "", "5d25aed386f77442734d25d2 acceptPlayerMessage": "", "5d25aed386f77442734d25d2 declinePlayerMessage": "", "5d25aed386f77442734d25d2 completePlayerMessage": "", @@ -23029,8 +22797,6 @@ "5d25beeb86f77443fe45765f": "Su şişesini (0.6L) Ormanda ZB1016 sığınağına bırak", "5d2deedc86f77459121c3118": "\"Iskra\" MRE'yi Ormanda ZB1014 sığınağına bırak", "5d2defc586f774591510e6b9": "Su şişesini (0.6L) Ormanda ZB1014 sığınağına bırak", - "5d76307886f774454c5360c1": "", - "5d77d13e86f77461b27a237a": "", "5d25b6be86f77444001e1b89 acceptPlayerMessage": "", "5d25b6be86f77444001e1b89 declinePlayerMessage": "", "5d25b6be86f77444001e1b89 completePlayerMessage": "", @@ -23040,8 +22806,6 @@ "5d25bfd086f77442734d3007 successMessageText": "No way you can survive for so long! Impressive. Here you go, drink this, regain your strength.", "5d25c5a186f77443fe457661": "5 dakika boyunca tamamen susuz halde kalın (Fabrika hariç)", "5d9f035086f7741cac4a9713": "Hayatta kal ve bölgeden ayrıl", - "5dadc98786f7744b0c681e8e": "", - "5dadc99686f7744b0f1b1d2a": "", "5d25bfd086f77442734d3007 acceptPlayerMessage": "", "5d25bfd086f77442734d3007 declinePlayerMessage": "", "5d25bfd086f77442734d3007 completePlayerMessage": "", @@ -23050,8 +22814,6 @@ "5d25c81b86f77443e625dd71 failMessageText": "", "5d25c81b86f77443e625dd71 successMessageText": "Handled it? Nicely done. Your training is almost done, friend. If we keep it that way, we may start taking care of the order in the city earlier than planned.", "5d25c8c986f77443e47ad47a": "Ağrı etkisinden muzdaripken 3 tane scav öldür", - "5d7630e286f774452173421a": "", - "5d77d0f286f7742fa65b6604": "", "5d25c81b86f77443e625dd71 acceptPlayerMessage": "", "5d25c81b86f77443e625dd71 declinePlayerMessage": "", "5d25c81b86f77443e625dd71 completePlayerMessage": "", @@ -23061,8 +22823,6 @@ "5d25cf2686f77443e75488d4 successMessageText": "Successful? Great! Sweat saves the blood! Don't get too ecstatic now, there are some more tasks for you.", "5d25d09286f77444001e284c": "Tek bir baskında Ormanda 3 tane scav öldür. Bunu yaparken sağlık ekipmanı kullanma.", "5d25d0d186f7740a22515975": "Görev sırasında herhangi bir ilaç kullanmayın", - "5d9c940886f7742cd41c59c0": "", - "5d9c941f86f7743554286958": "", "5d25cf2686f77443e75488d4 acceptPlayerMessage": "", "5d25cf2686f77443e75488d4 declinePlayerMessage": "", "5d25cf2686f77443e75488d4 completePlayerMessage": "", @@ -23071,8 +22831,6 @@ "5d25d2c186f77443e35162e5 failMessageText": "", "5d25d2c186f77443e35162e5 successMessageText": "So you can even handle tremors? Great! To be honest, I didn't think you would succeed, the task was very difficult.", "5d25d4e786f77442734d335d": "2 tane PMC'yi çarpıntı yaşarken kafasından vurarak öldür (kırık bir uzuvla birlikte)", - "5d76322786f774454e50d062": "", - "5d84afb986f77414e20063ea": "", "5d25d2c186f77443e35162e5 acceptPlayerMessage": "", "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", @@ -23081,8 +22839,6 @@ "5d25dae186f77443e55d2f78 failMessageText": "", "5d25dae186f77443e55d2f78 successMessageText": "So you survived? Who would've thought.", "5d25dc2286f77443e7549028": "2 PMC'yi flashbang etkisi altındayken öldür", - "5d76332c86f774454e50d063": "", - "5d77cdc286f7742fa65b6603": "", "5d25dae186f77443e55d2f78 acceptPlayerMessage": "", "5d25dae186f77443e55d2f78 declinePlayerMessage": "", "5d25dae186f77443e55d2f78 completePlayerMessage": "", @@ -23091,8 +22847,6 @@ "5d25e29d86f7740a22516326 failMessageText": "", "5d25e29d86f7740a22516326 successMessageText": "How many you say there were, six? And you got them all without the \"goggles\"? Indeed, you are a great night hunter, kid.", "5d25fd8386f77443fe457cae": "21:00-04:00 saatleri arasında herhangi bir NVG veya termal nişangah kullanmadan Scav'ları ortadan kaldırın (Fabrika Hariç)", - "5d77cd9d86f7742fa857dd73": "", - "5d77cda786f774319c488837": "", "5d25e29d86f7740a22516326 acceptPlayerMessage": "", "5d25e29d86f7740a22516326 declinePlayerMessage": "", "5d25e29d86f7740a22516326 completePlayerMessage": "", @@ -23101,8 +22855,6 @@ "5d25e2a986f77409dd5cdf2a failMessageText": "", "5d25e2a986f77409dd5cdf2a successMessageText": "How do people say? What is difficult in training will become easy in a battle! This skill will come in handy, trust me on this one. Your training is almost complete. Looks like you are ready to become the Hunter.", "5d2605ef86f77469ef0f7622": "Gerekli zindelik beceri seviyesine ulaşın", - "5d76336486f7744527181847": "", - "5d77cd3d86f7742fa732bf15": "", "5d25e2a986f77409dd5cdf2a acceptPlayerMessage": "", "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", @@ -23111,8 +22863,6 @@ "5d25e2b486f77409de05bba0 failMessageText": "", "5d25e2b486f77409de05bba0 successMessageText": "Good job! Of course, there is enough scum in Tarkov, others will come for sure. But at least they will think twice before tearing the place apart.", "5d26143c86f77469ef0f894c": "Fabrikadaki ofis alanında (herhangi bir kat) PMC operatörlerini ortadan kaldırın", - "5d763d7c86f774452073df77": "", - "5d77cc4886f7742fa732bf14": "", "5d25e2b486f77409de05bba0 acceptPlayerMessage": "", "5d25e2b486f77409de05bba0 declinePlayerMessage": "", "5d25e2b486f77409de05bba0 completePlayerMessage": "", @@ -23123,8 +22873,6 @@ "5d26fd8886f77469f0445745": "Reshala'yı öldür", "5d2710e686f7742e9019a6b2": "Reshala'nın Altın TT tabancasını teslim et", "5d66741c86f7744a2e70f039": "Baskında Reshala'nın Altın TT'sini bulun", - "5d77689686f7742fa857dd34": "", - "5d77c96386f7742fa901bcc7": "", "5d25e2c386f77443e7549029 acceptPlayerMessage": "", "5d25e2c386f77443e7549029 declinePlayerMessage": "", "5d25e2c386f77443e7549029 completePlayerMessage": "", @@ -23133,8 +22881,6 @@ "5d25e2cc86f77443e47ae019 failMessageText": "", "5d25e2cc86f77443e47ae019 successMessageText": "They made their choice when they stepped on the wrong path. You have done the right thing, hunter, thank you.", "5d2701b586f77469f1599fe2": "Tarkov bölgesinin her yerindeki Scav'ları ortadan kaldırın", - "5d7768bf86f774319c488824": "", - "5d77c8df86f7742fa65b6602": "", "5d25e2cc86f77443e47ae019 acceptPlayerMessage": "", "5d25e2cc86f77443e47ae019 declinePlayerMessage": "", "5d25e2cc86f77443e47ae019 completePlayerMessage": "", @@ -23143,8 +22889,6 @@ "5d25e2d886f77442734d335e failMessageText": "", "5d25e2d886f77442734d335e successMessageText": "Learned the lesson? Good. See, you can disarm an enemy in many ways.", "5d307fc886f77447f15f5b23": "PMC ajanlarını sersemletme etkisinden muzdaripken ortadan kaldırın", - "5d77695b86f7742fa901bc75": "", - "5d77c84d86f7742fa901bcc6": "", "5d25e2d886f77442734d335e acceptPlayerMessage": "", "5d25e2d886f77442734d335e declinePlayerMessage": "", "5d25e2d886f77442734d335e completePlayerMessage": "", @@ -23155,8 +22899,6 @@ "5d2719b186f7740701348573": "Killa'yı öldür", "5d271a3486f774483c7bdb12": "Killa'nın kaskını teslim et", "5d667a8e86f774131e206b46": "Baskında Killa'nın \"Maska-1SCh\" kurşun geçirmez miğferini bulun", - "5d776b1986f77461b27a2354": "", - "5d77c80b86f7742fa65b6601": "", "5d25e2e286f77444001e2e48 acceptPlayerMessage": "", "5d25e2e286f77444001e2e48 declinePlayerMessage": "", "5d25e2e286f77444001e2e48 completePlayerMessage": "", @@ -23167,8 +22909,6 @@ "5d27276886f7740701348578": "Shturman'ı öldür", "5d272a0b86f7745ba2701532": "Shturman'ın zula anahtarını teslim et", "5d2f464e498f71c8886f7656": "Baskında Shturman'ın zula anahtarını bulun", - "5d77c65786f7742fa901bcc5": "", - "5d77c66586f7742fa732bf13": "", "5d25e2ee86f77443e35162ea acceptPlayerMessage": "", "5d25e2ee86f77443e35162ea declinePlayerMessage": "", "5d25e2ee86f77443e35162ea completePlayerMessage": "", @@ -23177,8 +22917,6 @@ "5d25e43786f7740a212217fa failMessageText": "", "5d25e43786f7740a212217fa successMessageText": "Protected the honor of the uniform? That's great. Screw them, there is nothing worse than giving the oath and then falling into crime.", "5d272bd386f77446085fa4f9": "Polis üniforması giymiş Scav'ları ortadan kaldırın (Reshala'nın korumaları)", - "5d776ef786f7742fa5005cb5": "", - "5d77a48286f77461b27a236b": "", "5d25e43786f7740a212217fa acceptPlayerMessage": "", "5d25e43786f7740a212217fa declinePlayerMessage": "", "5d25e43786f7740a212217fa completePlayerMessage": "", @@ -23187,8 +22925,6 @@ "5d25e44386f77409453bce7b failMessageText": "", "5d25e44386f77409453bce7b successMessageText": "I've heard what you did. Looks like it's calmer out there now, with way fewer looters. You have my gratitude.", "5d2733c586f7741dea4f3072": "5 tane PMC'yi Gümrükte yurt alanında öldür", - "5d77710186f774319c488825": "", - "5d77a45386f774319c488836": "", "5d25e44386f77409453bce7b acceptPlayerMessage": "", "5d25e44386f77409453bce7b declinePlayerMessage": "", "5d25e44386f77409453bce7b completePlayerMessage": "", @@ -23197,8 +22933,6 @@ "5d25e44f86f77443e625e385 failMessageText": "", "5d25e44f86f77443e625e385 successMessageText": "Welcome back, hunter. So you've dealt with the bandits? Can't even imagine how much of a hassle that was, you did a great job.", "5d27369586f774457411b264": "Glukhar'ı öldür", - "5d777e3a86f7742fa857dd36": "", - "5d777eb086f7742fa732bf05": "", "5d25e44f86f77443e625e385 acceptPlayerMessage": "", "5d25e44f86f77443e625e385 declinePlayerMessage": "", "5d25e44f86f77443e625e385 completePlayerMessage": "", @@ -23207,9 +22941,6 @@ "5d25e45e86f77408251c4bfa failMessageText": "", "5d25e45e86f77408251c4bfa successMessageText": "So they're operating near laboratories and military facilities... Oh, I hope it won't start another war, on top of the one already going on. Well, kid, it's not for us to resolve this, at least for now.", "5d273a4d86f774457411b266": "Baskıncıları Yok Et", - "5d777f5d86f7742fa901bc77": "", - "5d777ffd86f774319c488827": "", - "5d77a3b286f7745041358b44": "", "5d25e45e86f77408251c4bfa acceptPlayerMessage": "", "5d25e45e86f77408251c4bfa declinePlayerMessage": "", "5d25e45e86f77408251c4bfa completePlayerMessage": "", @@ -23219,9 +22950,6 @@ "5d25e46e86f77409453bce7c successMessageText": "Got it? Great. Hopefully, I won't have to watch people die helplessly anymore.", "5d27446f86f77475a86565a3": "Defibrilatörü teslim et", "5d7782c686f7742fa732bf07": "CMS kitlerini teslim edin", - "5d7782f886f7742fa65b65f5": "", - "5d77830086f7745041358b35": "", - "5d77a38e86f7745041358b43": "", "5ec1504183b69d213d3c2ee8": "Baskında Portatif defibrilatörü bulun", "5ec1538a92e95f77ac7a2529": "Baskında CMS cerrahi kitlerini bulun", "5d25e46e86f77409453bce7c acceptPlayerMessage": "", @@ -23234,9 +22962,6 @@ "5d357b6c86f774588d4d7e25": "Sahil Şeridinde terk edilmiş köyde başkanın evini bulun", "5d357b9586f7745b422d653f": "Kıyı şeridindeki terk edilmiş köyde balıkçı evini bulun", "5d357bb786f774588d4d7e27": "Kıyı şeridindeki terk edilmiş köyde rahibin evini bulun", - "5d7784cc86f7742fa5005cba": "", - "5d77854786f7745041358b36": "", - "5d77a36086f77461b27a236a": "", "629f4f080f57046e362e6e9e": "\"Survived\" çıkış durumu ile hayatta kalın ve Shoreline'dan çıkın", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", @@ -23247,8 +22972,6 @@ "5d25e48d86f77408251c4bfb successMessageText": "Got it? Good, let's see what he's up to. Come back in a bit, Mechanic and I will check the flash drives, then we'll let you know too.", "5d27491686f77475aa5cf5b9": "Flash sürücüleri teslim edin", "5d6949e786f774238a38d9e0": "Baskında Güvenli Flash sürücüleri bulun", - "5d77a27d86f774319c488835": "", - "5d77a29b86f7742fa65b6600": "", "5d25e48d86f77408251c4bfb acceptPlayerMessage": "", "5d25e48d86f77408251c4bfb declinePlayerMessage": "", "5d25e48d86f77408251c4bfb completePlayerMessage": "", @@ -23259,9 +22982,6 @@ "5d27522686f774304e316405": "Fotoğraf albümlerini teslim et", "5d357e0e86f7745b3f307c56": "Jaeger'in yaşadığı körfeze bakan odayı bulun", "5d357e8786f7745b5e66a51a": "Jaeger'in fotoğraf albümünü bul", - "5d778e6c86f77461b27a235d": "", - "5d778e7c86f7742fa901bc7c": "", - "5d77a24986f7742fa65b65ff": "", "5d25e4ad86f77443e625e387 acceptPlayerMessage": "", "5d25e4ad86f77443e625e387 declinePlayerMessage": "", "5d25e4ad86f77443e625e387 completePlayerMessage": "", @@ -23270,9 +22990,6 @@ "5d25e4b786f77408251c4bfc failMessageText": "", "5d25e4b786f77408251c4bfc successMessageText": "You got them? Good work, kid. Now we just have to figure out how to find this laboratory. Well, I'll deal with this matter myself, don't worry.", "5d2f375186f7745916404955": "Baskın esnasında 2 tane TerraGroup laboratuvar erişim kartını bul", - "5d778ebb86f7742fa732bf09": "", - "5d778ec586f7745041358b37": "", - "5d778f7d86f7742fa65b65f9": "", "5d8a09d386f77410b4225d13": "2 tane TerraGroup laboratuvar erişim kartını teslim et", "5d25e4b786f77408251c4bfc acceptPlayerMessage": "", "5d25e4b786f77408251c4bfc declinePlayerMessage": "", @@ -23281,8 +22998,6 @@ "5d25e4ca86f77409dd5cdf2c description": "İçeri gelin. Çay ister misiniz? Pekala, her neyse. Dinle, işte anlaşma. Yakında birkaç arkadaşımı ağırlayacağım. Onlarla ava çıkmak istiyorum ama onları bu MP pompalı tüfeklerle ava götürmemin hiçbir yolu yok, değil mi? Burada birkaç güzel western tüfeğim var ama önce düzgün bir şekilde sıfırlanmaları gerekiyor.\nVe bunun için sadece müşterimiz var, adı Shturman. Öyleyse, bu pislik üzerinde benim yapımı (Remington M700 keskin nişancı tüfeği, FullField TAC30 1-4x24 dürbünlü) test edin. Uzun menzilli bir pozisyon bulun ve kafasına isabetli bir atış yapın ki piçin hiç şansı olmasın. Endişelenme, seni ödülle hayal kırıklığına uğratmayacağım evlat.", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Those are damn great rifles! Good work! You know, I think I might get into gunsmithing myself, I took quite a liking to this thing. So, about the reward: check out the little things I found, you might need them.", - "5d7793fa86f7742fa901bc80": "", - "5d77940986f7742fa732bf0a": "", "5fd8aa3206fb3a6b8154a2c3": "Belirtilen dürbünle bir M700 keskin nişancı tüfeği kullanırken Shturman'ı 75 metreden uzak bir mesafeden kafadan vurarak ortadan kaldırın", "5d25e4ca86f77409dd5cdf2c acceptPlayerMessage": "", "5d25e4ca86f77409dd5cdf2c declinePlayerMessage": "", @@ -23291,8 +23006,6 @@ "5d25e4d586f77443e625e388 description": "Bil bakalım burada kim varmış! Merhabalar! Eski askeri üssün depolarının hala ağzına kadar yemekle dolu olduğuna dair bir duyum aldım. Bazı haydutlar, Ruaf güçleri üssü terk ettikten sonra yemek aramak için bölgede gezer olmuş. Bana bir iyilik yap, onların izlerini takip et ve depoların yerini bul. Ve ben de haydutlarla konukseverliğin ne demek olduğunu göstereyim.", "5d25e4d586f77443e625e388 failMessageText": "", "5d25e4d586f77443e625e388 successMessageText": "Have they already started to take everything out? Got it, we have to act fast.", - "5d77a16486f77461b27a2369": "", - "5d77a17386f7742fa901bcc2": "", "5d8a05d086f77410b4225d10": "Rezerv'de gıda deposunu bul", "629f1259422dff20ff234b4d": "Hayatta kal ve bölgeden çık", "5d25e4d586f77443e625e388 acceptPlayerMessage": "", @@ -23306,8 +23019,6 @@ "5d4bfe7c86f7744a9c66b316": "Askeri aküyü teslim et", "5d4c020a86f77449c463ced6": "Baskında BMP topu için 5 adet 30 mm'lik mermi bulun", "5d4c028c86f774389001e027": "5 adet 30 mm. BMP top mermilerini teslim et", - "5d761f6886f7744521734218": "", - "5d77db2186f7745041358b57": "", "5d4bec3486f7743cac246665 acceptPlayerMessage": "", "5d4bec3486f7743cac246665 declinePlayerMessage": "", "5d4bec3486f7743cac246665 completePlayerMessage": "", @@ -23316,7 +23027,6 @@ "5d6fb2c086f77449da599c24 failMessageText": "", "5d6fb2c086f77449da599c24 successMessageText": "So, have you decided? Just a couple of injections. Here and here. Keep yourself calm, at least a couple of days, relax more and take your vitamins.", "5d6fb8a886f77449db3db8b6": "400.000 Ruble'yi teslim et", - "5d77c61786f7742fa732bf12": "", "5d6fb2c086f77449da599c24 acceptPlayerMessage": "", "5d6fb2c086f77449da599c24 declinePlayerMessage": "", "5d6fb2c086f77449da599c24 completePlayerMessage": "", @@ -23325,7 +23035,6 @@ "5d6fbc2886f77449d825f9d3 failMessageText": "", "5d6fbc2886f77449d825f9d3 successMessageText": "So, I've been told you took up the training. Well, with your skills, I'm sure you'll learn quick.", "5d6fbf0f86f77449d97f738e": "50.000 euro'yu teslim et", - "5d77c55886f7742fa901bcc4": "", "5d6fbc2886f77449d825f9d3 acceptPlayerMessage": "", "5d6fbc2886f77449d825f9d3 declinePlayerMessage": "", "5d6fbc2886f77449d825f9d3 completePlayerMessage": "", @@ -23334,8 +23043,6 @@ "5dc53acb86f77469c740c893 failMessageText": "", "5dc53acb86f77469c740c893 successMessageText": "Got it done already? Nice job. Wait here a minute, I need to measure your sizes and figure out the sewing technique for this one. As promised. But hey, you gotta understand that the materials ain't cheap these days, so be prepared for the price. Still, it's got three stripes, an icon of style, you know.", "5dc53fd386f77469c87589a3": "Killa'yı 100 kez öldür", - "5dc541ad86f7741416111d02": "", - "5dc541c386f77469c87589a6": "", "5dc53acb86f77469c740c893 acceptPlayerMessage": "", "5dc53acb86f77469c740c893 declinePlayerMessage": "", "5dc53acb86f77469c740c893 completePlayerMessage": "", @@ -23349,10 +23056,6 @@ "5e382fef86f7741e53790d40": "5 adet aramid kumaş teslim et.", "5e38356d86f7742993306cac": "10 adet yırtılmaz kumaşı teslim et.", "5e3835e886f77429910d4465": "3 adet tırmanma ipi teslim et.", - "5e58d9f286f7747c295d2892": "", - "5e58daaa86f7747c25656a53": "", - "5e58dabd86f7747c27218702": "", - "5e58dace86f7747c295d2893": "", "5e381b0286f77420e3417a74 acceptPlayerMessage": "", "5e381b0286f77420e3417a74 declinePlayerMessage": "", "5e381b0286f77420e3417a74 completePlayerMessage": "", @@ -23366,10 +23069,6 @@ "5e383a6386f77465910ce1f7": "10 adet yırtılmaz kumaşı teslim et.", "5e383a6386f77465910ce1f8": "Baskında 3 adet tırmanma ipi elde et", "5e383a6386f77465910ce1f9": "3 adet tırmanma ipi teslim et.", - "5e58dd0a86f7747c27218709": "", - "5e58dd1286f774170f538d62": "", - "5e58dd1f86f7747c25656a55": "", - "5e58dd2a86f7747c28220304": "", "5e383a6386f77465910ce1f3 acceptPlayerMessage": "", "5e383a6386f77465910ce1f3 declinePlayerMessage": "", "5e383a6386f77465910ce1f3 completePlayerMessage": "", @@ -23383,8 +23082,6 @@ "5e4d4ac186f774264f75833a": "Kumaşları teslim et", "5e4d4ac186f774264f75833b": "5 adet KEKtape yapışkan bantı elde et.", "5e4d4ac186f774264f75833c": "Koli bant'ı teslim et", - "5e58db0986f7740bef574f02": "", - "5e58db2386f7747c28220302": "", "5e4d4ac186f774264f758336 acceptPlayerMessage": "", "5e4d4ac186f774264f758336 declinePlayerMessage": "", "5e4d4ac186f774264f758336 completePlayerMessage": "", @@ -23398,8 +23095,6 @@ "5e4d515e86f77438b2195248": "Kumaşları teslim et", "5e4d515e86f77438b2195249": "5 adet KEKtape yapışkan bantı elde et.", "5e4d515e86f77438b219524a": "Koli bant'ı teslim et", - "5e58dbf386f7747c25656a54": "", - "5e58dd9086f7747c2639ee43": "", "5e4d515e86f77438b2195244 acceptPlayerMessage": "", "5e4d515e86f77438b2195244 declinePlayerMessage": "", "5e4d515e86f77438b2195244 completePlayerMessage": "", @@ -23407,8 +23102,6 @@ "5e73519b0b997b5e887e59b3 description": "", "5e73519b0b997b5e887e59b3 failMessageText": "", "5e73519b0b997b5e887e59b3 successMessageText": "", - "5e7a0773838c444eb02dd0c4": "", - "5e7b30e574986d20835c2185": "", "5e73519b0b997b5e887e59b3 acceptPlayerMessage": "", "5e73519b0b997b5e887e59b3 declinePlayerMessage": "", "5e73519b0b997b5e887e59b3 completePlayerMessage": "", @@ -23416,7 +23109,6 @@ "5e748327dbe23170e05094f4 description": "", "5e748327dbe23170e05094f4 failMessageText": "", "5e748327dbe23170e05094f4 successMessageText": "", - "5e74833f0b1f9954c86ee49c": "", "5e748327dbe23170e05094f4 acceptPlayerMessage": "", "5e748327dbe23170e05094f4 declinePlayerMessage": "", "5e748327dbe23170e05094f4 completePlayerMessage": "", @@ -23424,7 +23116,6 @@ "5e748d226725d419a47e2101 description": "", "5e748d226725d419a47e2101 failMessageText": "", "5e748d226725d419a47e2101 successMessageText": "", - "5e748d406725d419a47e2104": "", "5e748d226725d419a47e2101 acceptPlayerMessage": "", "5e748d226725d419a47e2101 declinePlayerMessage": "", "5e748d226725d419a47e2101 completePlayerMessage": "", @@ -23432,7 +23123,6 @@ "5e748d9fc73f9622610abb37 description": "", "5e748d9fc73f9622610abb37 failMessageText": "", "5e748d9fc73f9622610abb37 successMessageText": "", - "5e748dc9391f136a9201292e": "", "5e748d9fc73f9622610abb37 acceptPlayerMessage": "", "5e748d9fc73f9622610abb37 declinePlayerMessage": "", "5e748d9fc73f9622610abb37 completePlayerMessage": "", @@ -23440,7 +23130,6 @@ "5e748df9c73f9622610abb38 description": "", "5e748df9c73f9622610abb38 failMessageText": "", "5e748df9c73f9622610abb38 successMessageText": "", - "5e748e12c73f9622610abb3b": "", "5e748df9c73f9622610abb38 acceptPlayerMessage": "", "5e748df9c73f9622610abb38 declinePlayerMessage": "", "5e748df9c73f9622610abb38 completePlayerMessage": "", @@ -23448,7 +23137,6 @@ "5e748e8fa848081e986a58a2 description": "", "5e748e8fa848081e986a58a2 failMessageText": "", "5e748e8fa848081e986a58a2 successMessageText": "", - "5e7b805f0bc7e118403c847d": "", "5e748e8fa848081e986a58a2 acceptPlayerMessage": "", "5e748e8fa848081e986a58a2 declinePlayerMessage": "", "5e748e8fa848081e986a58a2 completePlayerMessage": "", @@ -23456,7 +23144,6 @@ "5e74921dc73f9622610abb3e description": "", "5e74921dc73f9622610abb3e failMessageText": "", "5e74921dc73f9622610abb3e successMessageText": "", - "5e74922b35e14d4fb162de6d": "", "5e74921dc73f9622610abb3e acceptPlayerMessage": "", "5e74921dc73f9622610abb3e declinePlayerMessage": "", "5e74921dc73f9622610abb3e completePlayerMessage": "", @@ -23464,7 +23151,6 @@ "5e7492c2cdcce040bf508424 description": "", "5e7492c2cdcce040bf508424 failMessageText": "", "5e7492c2cdcce040bf508424 successMessageText": "", - "5e749308a848081e986a58a6": "", "5e7492c2cdcce040bf508424 acceptPlayerMessage": "", "5e7492c2cdcce040bf508424 declinePlayerMessage": "", "5e7492c2cdcce040bf508424 completePlayerMessage": "", @@ -23472,7 +23158,6 @@ "5e7493d5c377f60fe17d6ec8 description": "", "5e7493d5c377f60fe17d6ec8 failMessageText": "", "5e7493d5c377f60fe17d6ec8 successMessageText": "", - "5e7493e9c377f60fe17d6ecb": "", "5e7493d5c377f60fe17d6ec8 acceptPlayerMessage": "", "5e7493d5c377f60fe17d6ec8 declinePlayerMessage": "", "5e7493d5c377f60fe17d6ec8 completePlayerMessage": "", @@ -23480,7 +23165,6 @@ "5e749741dec1852497081e69 description": "", "5e749741dec1852497081e69 failMessageText": "", "5e749741dec1852497081e69 successMessageText": "", - "5e74a5f2647a0846684a1dc4": "", "5e749741dec1852497081e69 acceptPlayerMessage": "", "5e749741dec1852497081e69 declinePlayerMessage": "", "5e749741dec1852497081e69 completePlayerMessage": "", @@ -23488,8 +23172,6 @@ "5e749800e80d6c7ea20e93de description": "", "5e749800e80d6c7ea20e93de failMessageText": "", "5e749800e80d6c7ea20e93de successMessageText": "", - "5e789b80d7dc7108e2674cce": "", - "5e7a14d6e77ff7644b69fec4": "", "5e749800e80d6c7ea20e93de acceptPlayerMessage": "", "5e749800e80d6c7ea20e93de declinePlayerMessage": "", "5e749800e80d6c7ea20e93de completePlayerMessage": "", @@ -23497,7 +23179,6 @@ "5e7498198f3a2f53cc477e99 description": "", "5e7498198f3a2f53cc477e99 failMessageText": "", "5e7498198f3a2f53cc477e99 successMessageText": "", - "5e74983470d454700576d1fb": "", "5e7498198f3a2f53cc477e99 acceptPlayerMessage": "", "5e7498198f3a2f53cc477e99 declinePlayerMessage": "", "5e7498198f3a2f53cc477e99 completePlayerMessage": "", @@ -23505,7 +23186,6 @@ "5e7498cc2eb35c76f5087a47 description": "", "5e7498cc2eb35c76f5087a47 failMessageText": "", "5e7498cc2eb35c76f5087a47 successMessageText": "", - "5e7498d9c377f60fe17d6ed4": "", "5e7498cc2eb35c76f5087a47 acceptPlayerMessage": "", "5e7498cc2eb35c76f5087a47 declinePlayerMessage": "", "5e7498cc2eb35c76f5087a47 completePlayerMessage": "", @@ -23513,7 +23193,6 @@ "5e74990c647a0846684a1db4 description": "", "5e74990c647a0846684a1db4 failMessageText": "", "5e74990c647a0846684a1db4 successMessageText": "", - "5e749921dec1852497081e6d": "", "5e74990c647a0846684a1db4 acceptPlayerMessage": "", "5e74990c647a0846684a1db4 declinePlayerMessage": "", "5e74990c647a0846684a1db4 completePlayerMessage": "", @@ -23521,7 +23200,6 @@ "5e74a68870d454700576d1fe description": "", "5e74a68870d454700576d1fe failMessageText": "", "5e74a68870d454700576d1fe successMessageText": "", - "5e74a6a4d9d3481b8e64369e": "", "5e74a68870d454700576d1fe acceptPlayerMessage": "", "5e74a68870d454700576d1fe declinePlayerMessage": "", "5e74a68870d454700576d1fe completePlayerMessage": "", @@ -23529,7 +23207,6 @@ "5e74a765c377f60fe17d6edb description": "", "5e74a765c377f60fe17d6edb failMessageText": "", "5e74a765c377f60fe17d6edb successMessageText": "", - "5e74a798763a4645365a6186": "", "5e74a765c377f60fe17d6edb acceptPlayerMessage": "", "5e74a765c377f60fe17d6edb declinePlayerMessage": "", "5e74a765c377f60fe17d6edb completePlayerMessage": "", @@ -23537,8 +23214,6 @@ "5e74a8a9dfc5fc63e27a781a description": "", "5e74a8a9dfc5fc63e27a781a failMessageText": "", "5e74a8a9dfc5fc63e27a781a successMessageText": "", - "5e74a8e914847d2f305bfb94": "", - "5e7b6333b4c9b140be78c134": "", "5e74a8a9dfc5fc63e27a781a acceptPlayerMessage": "", "5e74a8a9dfc5fc63e27a781a declinePlayerMessage": "", "5e74a8a9dfc5fc63e27a781a completePlayerMessage": "", @@ -23546,7 +23221,6 @@ "5e74a9be70d454700576d1ff description": "", "5e74a9be70d454700576d1ff failMessageText": "", "5e74a9be70d454700576d1ff successMessageText": "", - "5e7a0c8ee77ff7644b69febe": "", "5e74a9be70d454700576d1ff acceptPlayerMessage": "", "5e74a9be70d454700576d1ff declinePlayerMessage": "", "5e74a9be70d454700576d1ff completePlayerMessage": "", @@ -23554,7 +23228,6 @@ "5e74aafac377f60fe17d6ede description": "", "5e74aafac377f60fe17d6ede failMessageText": "", "5e74aafac377f60fe17d6ede successMessageText": "", - "5e7b2993f60dc341415906fb": "", "5e74aafac377f60fe17d6ede acceptPlayerMessage": "", "5e74aafac377f60fe17d6ede declinePlayerMessage": "", "5e74aafac377f60fe17d6ede completePlayerMessage": "", @@ -23562,7 +23235,6 @@ "5e74ac3f70d454700576d200 description": "", "5e74ac3f70d454700576d200 failMessageText": "", "5e74ac3f70d454700576d200 successMessageText": "", - "5e74ac57763a4645365a618b": "", "5e74ac3f70d454700576d200 acceptPlayerMessage": "", "5e74ac3f70d454700576d200 declinePlayerMessage": "", "5e74ac3f70d454700576d200 completePlayerMessage": "", @@ -23570,13 +23242,6 @@ "5e74ad13647a0846684a1dc8 description": "", "5e74ad13647a0846684a1dc8 failMessageText": "", "5e74ad13647a0846684a1dc8 successMessageText": "", - "5e74ad1b5b887d725349f618": "", - "5e74afbf763a4645365a6193": "", - "5e74afccdfc5fc63e27a7821": "", - "5e79feeb3db8ef255a7c6550": "", - "5e7a13f5aabec26b11417296": "", - "5e7a13facfd9c45fdf382af4": "", - "5e7a13ffb9cbe86fb360bb74": "", "5e74ad13647a0846684a1dc8 acceptPlayerMessage": "", "5e74ad13647a0846684a1dc8 declinePlayerMessage": "", "5e74ad13647a0846684a1dc8 completePlayerMessage": "", @@ -23584,7 +23249,6 @@ "5e74b1b201e03f5a8d48aff9 description": "", "5e74b1b201e03f5a8d48aff9 failMessageText": "", "5e74b1b201e03f5a8d48aff9 successMessageText": "", - "5e74b1c4c16d705f775de1db": "", "5e74b1b201e03f5a8d48aff9 acceptPlayerMessage": "", "5e74b1b201e03f5a8d48aff9 declinePlayerMessage": "", "5e74b1b201e03f5a8d48aff9 completePlayerMessage": "", @@ -23592,7 +23256,6 @@ "5e74be4c24c2c642fa612776 description": "", "5e74be4c24c2c642fa612776 failMessageText": "", "5e74be4c24c2c642fa612776 successMessageText": "", - "5e7a012228b2fd48f6591c8f": "", "5e74be4c24c2c642fa612776 acceptPlayerMessage": "", "5e74be4c24c2c642fa612776 declinePlayerMessage": "", "5e74be4c24c2c642fa612776 completePlayerMessage": "", @@ -23600,8 +23263,6 @@ "5e74be7b258b0422556b70d7 description": "", "5e74be7b258b0422556b70d7 failMessageText": "", "5e74be7b258b0422556b70d7 successMessageText": "", - "5e79ffc73db8ef255a7c6554": "", - "5e7a13c35b8bd347797f4fe5": "", "5e74be7b258b0422556b70d7 acceptPlayerMessage": "", "5e74be7b258b0422556b70d7 declinePlayerMessage": "", "5e74be7b258b0422556b70d7 completePlayerMessage": "", @@ -23609,7 +23270,6 @@ "5e85e1d15549dd01fe748b5a description": "", "5e85e1d15549dd01fe748b5a failMessageText": "", "5e85e1d15549dd01fe748b5a successMessageText": "", - "5e85e22e5549dda42377fa77": "", "5e85e1d15549dd01fe748b5a acceptPlayerMessage": "", "5e85e1d15549dd01fe748b5a declinePlayerMessage": "", "5e85e1d15549dd01fe748b5a completePlayerMessage": "", @@ -23617,7 +23277,6 @@ "5e85e2fa5549dd01fe748b5b description": "", "5e85e2fa5549dd01fe748b5b failMessageText": "", "5e85e2fa5549dd01fe748b5b successMessageText": "", - "5e85e32a5549ddfb4a0cdb3a": "", "5e85e2fa5549dd01fe748b5b acceptPlayerMessage": "", "5e85e2fa5549dd01fe748b5b declinePlayerMessage": "", "5e85e2fa5549dd01fe748b5b completePlayerMessage": "", @@ -23625,7 +23284,6 @@ "5e85e40d5549dd10225137b9 description": "", "5e85e40d5549dd10225137b9 failMessageText": "", "5e85e40d5549dd10225137b9 successMessageText": "", - "5e872a5a5549ddc49d49a643": "", "5e85e40d5549dd10225137b9 acceptPlayerMessage": "", "5e85e40d5549dd10225137b9 declinePlayerMessage": "", "5e85e40d5549dd10225137b9 completePlayerMessage": "", @@ -23633,7 +23291,6 @@ "5e85e5025549dda42377fa7b description": "", "5e85e5025549dda42377fa7b failMessageText": "", "5e85e5025549dda42377fa7b successMessageText": "", - "5e85e5405549ddb56f1cf0d9": "", "5e85e5025549dda42377fa7b acceptPlayerMessage": "", "5e85e5025549dda42377fa7b declinePlayerMessage": "", "5e85e5025549dda42377fa7b completePlayerMessage": "", @@ -23641,7 +23298,6 @@ "5e85e77e5549ddf8e2131c0b description": "", "5e85e77e5549ddf8e2131c0b failMessageText": "", "5e85e77e5549ddf8e2131c0b successMessageText": "", - "5e85e7b45549dd422605cc1d": "", "5e85e77e5549ddf8e2131c0b acceptPlayerMessage": "", "5e85e77e5549ddf8e2131c0b declinePlayerMessage": "", "5e85e77e5549ddf8e2131c0b completePlayerMessage": "", @@ -23657,13 +23313,10 @@ "5eda19f0edce541157209cee description": "Oh, you're just in time. Maybe you have already heard that a new doctor has shown up? But this one is not some good-willed Aesculapius - he helps some people but cripples others. They say he sells medicine and does surgeries right on the street. They call him Sanitar, can you imagine? He settled on the Shoreline and interestingly enough, the local punks are very happy with him, and it's clear why: he patches them up, and even sells them drugs and first-aid kits of all sorts. This means that he has quite an inventory with him. Find out about this Sanitar, but quietly. For now, just find out where this scum hangs out. I think that he does both the selling and healing at the same spots. You interested?", "5eda19f0edce541157209cee failMessageText": "", "5eda19f0edce541157209cee successMessageText": "So you're saying there's quite a lot of supplies? Guess he found himself a fresh unopened medical warehouse and is now selling everything out from it. If only I could find that warehouse... well, that's not your problem anyway. For now.", - "5eda1a67ef0ad2643e73af31": "", "5eda1d6ec586607c09662d54": "Sahil Şeridi'nde bir MS2000 Marker ile ilk ticaret karakolunu işaretleyin", "5eda1da9a58a4c49c74165ee": "İkinci ticaret karakolunu Sahil Şeridi'nde bir MS2000 Marker ile işaretleyin", "5eda1dd3317f6066993c1744": "Üçüncü ticaret karakolunu Sahil Şeridi'nde bir MS2000 Marker ile işaretleyin", "5f0389268580cc37797e0026": "Hayatta kal ve bölgeden çık", - "5f1049d7aa82db0e8f75cb7b": "", - "5f1049fe6e4dc7329756c9e8": "", "5eda19f0edce541157209cee acceptPlayerMessage": "", "5eda19f0edce541157209cee declinePlayerMessage": "", "5eda19f0edce541157209cee completePlayerMessage": "", @@ -23672,7 +23325,6 @@ "5edab4b1218d181e29451435 failMessageText": "So you believed that woman? You do realise that she's just deceiving you for her own benefit? Do you think that because Sanitar treats some people, he can't kill others? You've completely gone insane with that war or yours, can't distinguish black from white. Get out of my sight, I want to be alone.", "5edab4b1218d181e29451435 successMessageText": "You did the right thing. Even if others say that Sanitar did good deeds, he brought much more evil. Don't believe those people's lies. I've seen people like Sanitar before: once they go crazy, there's no turning back. You can only shoot them like rabid dogs.", "5edab5a6cecc0069284c0ec2": "Sanitar'ı öldür", - "5edac4fb16d985118871ba2d": "", "5edab4b1218d181e29451435 acceptPlayerMessage": "", "5edab4b1218d181e29451435 declinePlayerMessage": "", "5edab4b1218d181e29451435 completePlayerMessage": "", @@ -23683,10 +23335,7 @@ "5edab7d3cc183c769d778bc5": "Sağlık Merkezine gönderilen grubu bulun", "5edab8890880da21347b3826": "İskeleye gönderilen grubu bulun", "5edab8e216d985118871ba18": "Kulübelere gönderilen grubu bulun", - "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Hayatta kal ve bölgeden çık", - "5f104ae158bd417a8a3e9d8f": "", - "5f104af087fa885f9d696bed": "", "5edab736cc183c769d778bc2 acceptPlayerMessage": "", "5edab736cc183c769d778bc2 declinePlayerMessage": "", "5edab736cc183c769d778bc2 completePlayerMessage": "", @@ -23694,7 +23343,6 @@ "5edaba7c0c502106f869bc02 description": "The loss of my people on the Shoreline is certainly a very unpleasant event, but a new source of medicine is more important. We just need a different approach to this case. My assistant managed to bribe a local from the Shoreline to tell us about Sanitar, the medic we're looking for. He has a small security detail, a few spots on the shoreline, but what's strange is that he performs surgery right on the street, and often hides his tools near such places, in buildings nearby. Get me these tools. Sanitar will be more cooperative if he realizes that we can stop his trade at any time and take control of the territory.", "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Aletleri getirdin mi? Onları şu kutuya koy. Bunlarla düzgünce ilgilenmem gerekecek, aletlerin nereden geldikleri belli değil. Onun ne kadar zor koşullarda çalıştığını direk olarak görebilirsin, her tarafı kanla kaplı, sağlıksız ve sert koşullar. Yine de, benim işim bu. Rüşvet olarak gönderdiğimiz mektupla birlikte bu aletleri de ona göndereceğim. Böylelikle Sanitar, ondan ne beklediğimizi anlayacaktır.", - "5edabacabcf60e4a143cb29f": "", "5edabb0b0c502106f869bc03": "Baskın esnasında mavi bir sembol ile işaretlenmiş Sanitar'ın cerrahi setini edin", "5edabb950c502106f869bc04": "Sanitar'ın cerrahi setini Therapist'e ver", "5edabbff0880da21347b382b": "Baskın esnasında Sanitar'ın oftalmoskopunu edin", @@ -23706,10 +23354,6 @@ "5edabd13218d181e29451442 description": "Hey you, tough guy! C'mere, I have a job for you. I've heard Prapor sent you to get a supply of drugs from some Sanitar dude. Don't make that face! I ain't got no interest in those drugs, let Prapor collect it and put it up his ass, you have already received profit from him anyway, haven't you? You just need to put these smart little things in containers that are in Sanitar's stashes. Prapor won't get wind of anything, it's a two-minute job, but the profit is good. Just gotta do it fast, before they move those containers.", "5edabd13218d181e29451442 failMessageText": "", "5edabd13218d181e29451442 successMessageText": "Good stuff, good stuff! Finally, Prapor will get his caches exposed, there are probably whole mountains of loot. Guns, ammo, food, dope. Out fucking standing! We'll do this one ourselves though, without you. No offense. Thanks.", - "5edabdea60bdcc7ff3558119": "", - "5edabe120880da21347b382d": "", - "5edabed50880da21347b382e": "", - "5edabf0fcc183c769d778bcc": "", "5f039da057a46716b610b577": "Hayatta kal ve bölgeden çık", "5f071a9727cec53d5d24fe3b": "Sağlık Tesisindeki tıbbi konteyneri, Sahil Şeridi üzerinde bir MS2000 İşaretleyici ile işaretleyin", "5f071ae396d1ae55e476abc4": "Tıbbi konteyneri Sahil Şeridinde bir MS2000 işaretleyici ile evler tarafından işaretleyin", @@ -23742,10 +23386,6 @@ "5edac34d0bb72a50635c2bfa description": "Young man, wait. I knew that Jaeger would ask you to kill Sanitar, but you don't have to do it. I understand Jaeger's point of view, that he's just some kind of monster in the flesh, but he is not. I'm sure Sanitar is just trying to help the locals. Given the current circumstances, he performs the most complex surgeries and it is not surprising that they often end badly. He is a doctor with the most valuable knowledge that can save many more lives. A doctor with access to a warehouse of medicines that are extremely important to us. And he has already entered into negotiations with me and will soon begin to cooperate. But for this, I need something that will interest him and I think I know what will: the Laboratory. Access keys and samples of military stimulants, I think they are the basis on which he conducts his experiments. Can you find them for me? You can get the access keycards however you want, but the stimulants must be sealed, so you need to find them yourself.", "5edac34d0bb72a50635c2bfa failMessageText": "It is a pity that you listened to this Jaeger instead of the voice of reason. Sanitar with his knowledge and medicines could've helped us in many ways. He wasn't a saint, but surely everyone has a chance to atone for their sins, but you have took away that chance. I am very displeased with you.", "5edac34d0bb72a50635c2bfa successMessageText": "Thank you. I knew you would understand how important Sanitar and his... medication are right now. He has already shown a great interest in keycards and stimulants and sent the first batch of goods. Here, this is your share.", - "5edac37c218d181e29451453": "", - "5edac3dfd143ed1d6378d13d": "", - "5edac3f60880da21347b384e": "", - "5edac465a0055865214cb5b6": "", "5f046f9825b2ad51bd275800": "Sanitar'ı öldürme", "5f04935cde3b9e0ecf03d864": "Hand over the keycards", "5f04944b69ef785df740a8c9": "Yeşil erişim kartı Therapist'e ver", @@ -23762,10 +23402,6 @@ "5edac63b930f5454f51e128b description": "Good day to you, mercenary. Because the day is actually good. I was right, the new stimulants are connected to TerraGroup. Mechanic found information about Sanitar. Not too much, and it was very expensive for us, but it's better than nothing. Sanitar worked for TerraGroup, and not as an ordinary employee. Graduated in medicine, specialist in infectious diseases, divorced... Well, that's all the information we have on him. Give me more, my friend, I'm very interested in where he got access to such resources. Find his workplace and find out more.", "5edac63b930f5454f51e128b failMessageText": "", "5edac63b930f5454f51e128b successMessageText": "We have decoded that flash drive. There's a lot of important information there, but I can't tell you everything. It's classified. I can tell you about Sanitar though, he's a scientist. He studied and developed drugs, and then tested them on people. Very... bold, or, as they sometimes say, unethical research.", - "5edac657cc183c769d778bdc": "", - "5edac6db0bb72a50635c73b7": "", - "5edac79da0055865214cb5be": "", - "5edac7f4cc183c769d778bdf": "", "5edac8483c809a44ef12b4d2": "Koli bandıyla işaretlenmiş flaş belleği Peacekeeper'a ver", "5eec9d054110547f1f545c99": "Laboratuvar'da Sanitar'ın çalışma yerini bul", "5eff5674befb6436ce3bbaf7": "Sanitar'ın çalışmaları hakkında bilgi bul", @@ -23776,11 +23412,9 @@ "5ede55112c95834b583f052a description": "Selam savaşçı. Kuşlarım kulağıma bir şeyler fısıldadı. Olay şu ki, Reserv üssünü elleri altına alan şu eski askerler, yer altı sığınağına doğru bir yol kazmışlar. Elbette bunu kendi elleriyle yapmadılar. Yolu yapmaları için scav'ları zorlamışlar, büyük ihtimalle o zavallı piçlerden hiçbiri hayatta kalmayı başaramadı. Her neyse, bunun ne tür bir sığınak olduğu hakkında hiçbir fikrim yok. Bunun komuta sığınağı olabileceği hakkında bazı duyumlar aldım. Buna rağmen bunun, o sığınak olduğundan tam olarak emin değilim. Burası, üstte çalışanlar için bomba sığınağı bile olabilir. Şu anda bu baskıncılara ölmesi için bir kurtarma grubu göndermenin anlamı yok. Gidip şu zindanı bir kontrol et. Ardından oraya bir grup göndermeye değip değmeyeceğini bana bildir. Ödemen iyi olacaktır?", "5ede55112c95834b583f052a failMessageText": "", "5ede55112c95834b583f052a successMessageText": "So you say it's a command shelter? Rumors don't lie, huh... God damn! I'll send my men there today, let them check the place out. There could be so much valuable shit there! Anyway, here, take your reward. As promised.", - "5ede5528bc2ff1141a199367": "", "5ee0e5a8c321a77fc55084d2": "Hayatta kal ve bölgeden ayrıl", "5ee8eea538ca5b3b4f3c4647": "Yeraltı sığınağını bul", "5ee8eecc0b4ef7326256c660": "Yeraltı sığınağında kontrol odasının yerini bul", - "5ef094ac32e6cc3234361a30": "", "5ede55112c95834b583f052a acceptPlayerMessage": "", "5ede55112c95834b583f052a declinePlayerMessage": "", "5ede55112c95834b583f052a completePlayerMessage": "", @@ -23788,10 +23422,6 @@ "5ede567cfa6dc072ce15d6e3 description": "Hey, merc, you are just in time, you are exactly who I need. Do you remember that fucking command bunker you found under the Reserve base? Long story short, my guys went there, and it turned out to be a real nasty place. Built with a high level of protection: filters, generators, all entrances are blocked by extremely strong hermetic locks, it's like an underground fortress. But the raiders opened the fucking thing and dug in like Alabama ticks. So, my men got in serious trouble, less than half made it out of there. But you know, now it's even more intriguing, for fuck's sake. So my people will not go there anymore for no reason, but if you could find a safe route for them... You are an experienced guy, so I need you to quietly, on those soft paws of yours, find out where all the entrances are. The guys said the entrances had those big hermetic doors. So it's up to you to scout the way in.", "5ede567cfa6dc072ce15d6e3 failMessageText": "", "5ede567cfa6dc072ce15d6e3 successMessageText": "Welcome back, I'm listening. Aha, so that's how it is... The door is right there, right? Just draw it right on top of my map, don't worry. So this bunker connects almost all facilities of the base? Fuck, how convenient, you could travel half the base under everyone's nose. Now it's clear why the raiders are there, you can control the entire base from under there. Thank you, warrior! Here's your reward.", - "5ede56b7fe4acc3830718650": "", - "5edea1ed61c2534c4f043d80": "", - "5edea20f29445733cb4c29cd": "", - "5ee0d988c321a77fc55084cf": "", "5ee0e722c321a77fc55084d5": "Hayatta kal ve bölgeden ayrıl", "5ee8ec5ed72d953f5d2aabd1": "Hastahaneye giden yalıtımlı kapıyı bul (Beyaz Fil)", "5ee8ecd75eb3205dae135d17": "Akademi binasına giden iki yalıtımlı kapıdan birini bul (Siyah Fil)", @@ -23807,7 +23437,6 @@ "5f04886a3937dc337a6b8238 successMessageText": "So that's how it is, it's right on the first floor? How many times have my people been there and found nothing. Did you get inside the room? Found anything interesting in there? Well, doesn't matter, I'll send my boys to check it out anyway. Here's your reward, you've earned it. Thank you.", "5f0488c590eea473df674002": "Sağlık tesisinde Sanitar'ın ofisini bul", "5f04983ffbed7a08077b4367": "Hayatta kal ve bölgeden ayrıl", - "5f0da368ee0d8b5aa14a625f": "", "5f04886a3937dc337a6b8238 acceptPlayerMessage": "", "5f04886a3937dc337a6b8238 declinePlayerMessage": "", "5f04886a3937dc337a6b8238 completePlayerMessage": "", @@ -23815,7 +23444,6 @@ "5f70abfae9f14826bf7c1c65 description": "", "5f70abfae9f14826bf7c1c65 failMessageText": "", "5f70abfae9f14826bf7c1c65 successMessageText": "", - "5f970525cfe8173d12189403": "", "5f70abfae9f14826bf7c1c65 acceptPlayerMessage": "", "5f70abfae9f14826bf7c1c65 declinePlayerMessage": "", "5f70abfae9f14826bf7c1c65 completePlayerMessage": "", @@ -23823,8 +23451,6 @@ "5f70acb63a7ec37e73013427 description": "", "5f70acb63a7ec37e73013427 failMessageText": "", "5f70acb63a7ec37e73013427 successMessageText": "", - "5f75c801ce26be0d620b7ff4": "", - "5f995e4959c80875e62a667d": "", "5f70acb63a7ec37e73013427 acceptPlayerMessage": "", "5f70acb63a7ec37e73013427 declinePlayerMessage": "", "5f70acb63a7ec37e73013427 completePlayerMessage": "", @@ -23832,7 +23458,6 @@ "5f70b9cfe9f14826bf7c1c67 description": "", "5f70b9cfe9f14826bf7c1c67 failMessageText": "", "5f70b9cfe9f14826bf7c1c67 successMessageText": "", - "5f71d67f413b7a71bb3d4883": "", "5f70b9cfe9f14826bf7c1c67 acceptPlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 declinePlayerMessage": "", "5f70b9cfe9f14826bf7c1c67 completePlayerMessage": "", @@ -23840,7 +23465,6 @@ "5f70e2a5dcfde927745eb1d0 description": "", "5f70e2a5dcfde927745eb1d0 failMessageText": "", "5f70e2a5dcfde927745eb1d0 successMessageText": "", - "5f8d63247b5bb8669b67ed4a": "", "5f70e2a5dcfde927745eb1d0 acceptPlayerMessage": "", "5f70e2a5dcfde927745eb1d0 declinePlayerMessage": "", "5f70e2a5dcfde927745eb1d0 completePlayerMessage": "", @@ -23848,8 +23472,6 @@ "5f710f7ce9f14826bf7c1c72 description": "", "5f710f7ce9f14826bf7c1c72 failMessageText": "", "5f710f7ce9f14826bf7c1c72 successMessageText": "", - "5f968586f4b9f84879321a41": "", - "5f96875445904e5b11508ba4": "", "5f710f7ce9f14826bf7c1c72 acceptPlayerMessage": "", "5f710f7ce9f14826bf7c1c72 declinePlayerMessage": "", "5f710f7ce9f14826bf7c1c72 completePlayerMessage": "", @@ -23857,7 +23479,6 @@ "5f75c5078fb5c37ce1766e95 description": "", "5f75c5078fb5c37ce1766e95 failMessageText": "", "5f75c5078fb5c37ce1766e95 successMessageText": "", - "5f9701bc261b2c7e0322947b": "", "5f75c5078fb5c37ce1766e95 acceptPlayerMessage": "", "5f75c5078fb5c37ce1766e95 declinePlayerMessage": "", "5f75c5078fb5c37ce1766e95 completePlayerMessage": "", @@ -23865,7 +23486,6 @@ "5f75c578dfacb47e146a0062 description": "", "5f75c578dfacb47e146a0062 failMessageText": "", "5f75c578dfacb47e146a0062 successMessageText": "", - "5f75c578dfacb47e146a0063": "", "5f75c578dfacb47e146a0062 acceptPlayerMessage": "", "5f75c578dfacb47e146a0062 declinePlayerMessage": "", "5f75c578dfacb47e146a0062 completePlayerMessage": "", @@ -23873,8 +23493,6 @@ "5f75fb988fb5c37ce1766e98 description": "", "5f75fb988fb5c37ce1766e98 failMessageText": "", "5f75fb988fb5c37ce1766e98 successMessageText": "", - "5f75fb988fb5c37ce1766e99": "", - "5f97010ace3c6452e951c536": "", "5f75fb988fb5c37ce1766e98 acceptPlayerMessage": "", "5f75fb988fb5c37ce1766e98 declinePlayerMessage": "", "5f75fb988fb5c37ce1766e98 completePlayerMessage": "", @@ -23882,7 +23500,6 @@ "5f75fd4450914c5fcc425279 description": "", "5f75fd4450914c5fcc425279 failMessageText": "", "5f75fd4450914c5fcc425279 successMessageText": "", - "5f75fd4450914c5fcc42527a": "", "5f75fd4450914c5fcc425279 acceptPlayerMessage": "", "5f75fd4450914c5fcc425279 declinePlayerMessage": "", "5f75fd4450914c5fcc425279 completePlayerMessage": "", @@ -23890,7 +23507,6 @@ "5f75fddbd24e8b7a9c508f3a description": "", "5f75fddbd24e8b7a9c508f3a failMessageText": "", "5f75fddbd24e8b7a9c508f3a successMessageText": "", - "5f8f1423d613404c430b7895": "", "5f75fddbd24e8b7a9c508f3a acceptPlayerMessage": "", "5f75fddbd24e8b7a9c508f3a declinePlayerMessage": "", "5f75fddbd24e8b7a9c508f3a completePlayerMessage": "", @@ -23898,8 +23514,6 @@ "5f79c7621f644f1eb53bdaf2 description": "", "5f79c7621f644f1eb53bdaf2 failMessageText": "", "5f79c7621f644f1eb53bdaf2 successMessageText": "", - "5f9683f05d04e220425a7c5b": "", - "5f9684e4d8069972a173dd75": "", "5f79c7621f644f1eb53bdaf2 acceptPlayerMessage": "", "5f79c7621f644f1eb53bdaf2 declinePlayerMessage": "", "5f79c7621f644f1eb53bdaf2 completePlayerMessage": "", @@ -23907,11 +23521,9 @@ "5fd9fad9c1ce6b1a3b486d00 description": "Selamlar asker. Senin için bir işim var. Uzun lafın kısası, gruplarımdan biriyle iletişimi kaybettim ve epey zaman oldu. Bok vantilatöre çarptığında, onları biraz kargo almaları için ormana gönderdim. Korkarım pusuya düşürüldüler, en son geçtiğimde USEC'lerin onlara yaklaştığını bildirdiler. Kurtulan olup olmadığını kontrol et. BRDM, Bukhanka ve bir tür kamyonları vardı, tam olarak ne tür olduğunu hatırlamıyorum. USEC'lerin de oraya yakın bir yere yerleşmiş olması gerektiğini düşünüyorum.", "5fd9fad9c1ce6b1a3b486d00 failMessageText": "", "5fd9fad9c1ce6b1a3b486d00 successMessageText": "So my guys didn't make it and the transports were looted... Plus a USEC camp nearby, you say? That sucks, the cargo was very important. Well, you've done your part of the deal, so here's the reward. You can buzz off now.", - "5fd9fad9c1ce6b1a3b486d02": "", "5fd9fad9c1ce6b1a3b486d03": "Kayıp Prapor'un konvoyunu Ormanda bulun", "5fd9fad9c1ce6b1a3b486d05": "USEC geçici kampını bulun", "5fd9fad9c1ce6b1a3b486d0d": "Hayatta kal ve bölgeden ayrıl", - "5fdc862eaf5a054cc9333005": "", "5fd9fad9c1ce6b1a3b486d00 acceptPlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 declinePlayerMessage": "", "5fd9fad9c1ce6b1a3b486d00 completePlayerMessage": "", @@ -23920,8 +23532,6 @@ "600302d73b897b11364cd161 failMessageText": "", "600302d73b897b11364cd161 successMessageText": "The air in the whole Woods trembled from such furious firefight. The scum got what he deserved, and all thanks to you. Here, the appropriate reward for such a feat. Don't be shy, you can buy the new rifles too.", "600303250b79c6604058ce30": "Shturman'ın yerini tespit edip etkisiz hale getirin", - "600304b78dfec348e767018c": "", - "600304c38dfec348e767018e": "", "600302d73b897b11364cd161 acceptPlayerMessage": "", "600302d73b897b11364cd161 declinePlayerMessage": "", "600302d73b897b11364cd161 completePlayerMessage": "", @@ -23941,8 +23551,6 @@ "60892590fa70fc097863b8e5": "Reserve haritasında ikinci LAV III bul ve incele", "608925d455f4ac386d7e7fc4": "Birinci LAV III'ü MS2000 ile işaretle", "608930aa1124f748c94b801e": "Reserve haritasında T-90'ı bul ve incele", - "60bf751fdb5461623517069f": "", - "60bf75229903f107aa251f3b": "", "6086c852c945025d41566124 acceptPlayerMessage": "", "6086c852c945025d41566124 declinePlayerMessage": "", "6086c852c945025d41566124 completePlayerMessage": "", @@ -23952,8 +23560,6 @@ "60896888e4a85c72ef3fa300 successMessageText": "Harika harika harika! Al bakalım paramı! Tek isteğim kimseye bu anlaşmadan bahsetme.", "60929ad46342771d851b827a": "Reserve haritasında T-90M komutan kontrol panel paketini alın", "60929afc35915c62b44fd05c": "Paketi verin", - "60bf74f481c6e80e702ccc0f": "", - "60bf75058bb401472c1a37f7": "", "60896888e4a85c72ef3fa300 acceptPlayerMessage": "", "60896888e4a85c72ef3fa300 declinePlayerMessage": "", "60896888e4a85c72ef3fa300 completePlayerMessage": "", @@ -23967,8 +23573,6 @@ "60ae0e2c79e83a2cf96f35ce": "Reserve haritasında Askeri dökümanları №3 alın", "60ae0f0586046842a754e21e": "İkinci dökümanları verin", "60ae0f17b809a4748759078c": "Üçüncü dökümanları verin", - "60bf74bb2837926f405dd793": "", - "60bf74c1d4526a054d42e11f": "", "60896b7bfa70fc097863b8f5 acceptPlayerMessage": "", "60896b7bfa70fc097863b8f5 declinePlayerMessage": "", "60896b7bfa70fc097863b8f5 completePlayerMessage": "", @@ -23977,8 +23581,6 @@ "60896bca6ee58f38c417d4f2 failMessageText": "", "60896bca6ee58f38c417d4f2 successMessageText": "Good work out there. I hope they get what's going on now and that they can't just kill my people like that. Here's the reward.", "608bffeee0cc9c2d4d2ccb29": "Reserve haritasındaki komuta sığınağındaki akıncıları yok edin", - "60bf7490db5461623517069e": "", - "60c1d5a4fdcc6e06456a963b": "", "60896bca6ee58f38c417d4f2 acceptPlayerMessage": "", "60896bca6ee58f38c417d4f2 declinePlayerMessage": "", "60896bca6ee58f38c417d4f2 completePlayerMessage": "", @@ -23990,8 +23592,6 @@ "609169cfeca522371e5725c5": "Birinci dergiyi verin", "60ae12ffb809a474875907aa": "Reserve haritasında Tıp Dergisi №2 alın\n", "60ae134cabb9675f0062cf6e": "İkinci dergiyi verin", - "60bf738b4c8a3800da06e717": "", - "60bf738e81c6e80e702ccc0e": "", "60896e28e4a85c72ef3fa301 acceptPlayerMessage": "", "60896e28e4a85c72ef3fa301 declinePlayerMessage": "", "60896e28e4a85c72ef3fa301 completePlayerMessage": "", @@ -24001,8 +23601,6 @@ "6089732b59b92115597ad789 successMessageText": "Evet, bu harika görünüyor! Teşekkür ederim, üzerinde detaylıca çalışacağım. İşte söz verdiğim gibi ödemen.", "6092942fb0f07c6ea1246e3a": "Reserve haritasında MBT navigasyon kompleksini alın", "6092947635915c62b44fd05b": "Navigasyon kompleksini verin", - "60bf7364c53a5709996b40bf": "", - "60bf73682837926f405dd792": "", "6089732b59b92115597ad789 acceptPlayerMessage": "", "6089732b59b92115597ad789 declinePlayerMessage": "", "6089732b59b92115597ad789 completePlayerMessage": "", @@ -24012,8 +23610,6 @@ "6089736efa70fc097863b8f6 successMessageText": "So the exit works? Excellent. I'm still preparing your reward, so tell me more about the opening mechanism for that bunker door in the meantime.", "608a94101a66564e74191fc3": "Reserve haritasında elektriksiz gizli çıkışı bulun", "608a94ae1a66564e74191fc6": "O çıkıştan çıkın", - "60bf734bb73d016d6838ad86": "", - "60bf7353bf90bf6b431e8964": "", "6089736efa70fc097863b8f6 acceptPlayerMessage": "", "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", @@ -24022,8 +23618,6 @@ "6089743983426423753cd58a failMessageText": "", "6089743983426423753cd58a successMessageText": "Harika, adamlarım baskından güvenli bir şekilde döndü, burunları bile kanamadı. İşte bahsettiğim ödeme!", "608ab22755f4ac386d7e7fdc": "Reserve haritasındaki yeraltı deposundaki Scav'leri yok edin", - "60bf72dda2ae0728ec716f32": "", - "60bf72e04c8a3800da06e716": "", "6089743983426423753cd58a acceptPlayerMessage": "", "6089743983426423753cd58a declinePlayerMessage": "", "6089743983426423753cd58a completePlayerMessage": "", @@ -24037,8 +23631,6 @@ "608bd149f597ad0a33574d74": "Reserve haritasındaki doğu kışlasındaki ikinci cephaneliği kontrol edin", "608bd2465e0ef91ab810f98a": "Reserve haritasındaki batı kışlasındaki görev odasını kontrol edin", "608c187853b9dd01a116f480": "Hayatta kal ve bölgeden çık", - "60bf72b7960b6d5d274caaf1": "", - "60bf72bcc53a5709996b40be": "", "608974af4b05530f55550c21 acceptPlayerMessage": "", "608974af4b05530f55550c21 declinePlayerMessage": "", "608974af4b05530f55550c21 completePlayerMessage": "", @@ -24049,8 +23641,6 @@ "608bfe32c61c4b541b381da9": "Hayatta kal ve bölgeden çık", "60a4dc7e4e734e57d07fb335": "Reserve haritasındaki ilk yakıp deposu grubunu işaretle", "60b90232ec7c6f5eb510c195": "Reserve haritasındaki ikinci yakıp deposu grubunu işaretle", - "60bf7284fd95cb3dfc36841f": "", - "60bf7293b73d016d6838ad85": "", "608974d01a66564e74191fc0 acceptPlayerMessage": "", "608974d01a66564e74191fc0 declinePlayerMessage": "", "608974d01a66564e74191fc0 completePlayerMessage": "", @@ -24059,8 +23649,6 @@ "608a768d82e40b3c727fd17d failMessageText": "", "608a768d82e40b3c727fd17d successMessageText": "Bitti mi? Hava bile daha temiz. O pisliklerin akıllarını başlarını getirmek için daha insani bir yolumuz olmaması üzücü.", "608a8356fa70fc097863b8f8": "Reserve haritasında kışla alanında Scav'leri yok edin", - "60bf72112837926f405dd791": "", - "60bf7557a2ae0728ec716f33": "", "608a768d82e40b3c727fd17d acceptPlayerMessage": "", "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", @@ -24069,8 +23657,6 @@ "60c0c018f7afb4354815096a failMessageText": "", "60c0c018f7afb4354815096a successMessageText": "Beklediğim güzel haber. Dünya artık daha temiz. Umarım o puşt sana balyoz sallamaya vakit bile bulamamıştır.", "60c0d187938d68438757cda2": "Tagilla'yı öldür", - "60cfa4cd646f74055e276545": "", - "60cfa4ee1bdece56c249cbf5": "", "60cfa590f81cc57f471718cc": "Baskında Tagilla'nın BOSS şapkası bul", "60cfa5a85f9e6175514de2e3": "BOSS şapkası ver", "60c0c018f7afb4354815096a acceptPlayerMessage": "", @@ -24088,8 +23674,6 @@ "60ec0af8a664b027ab1441af": "Kavşak'ta PMC operatörlerini ortadan kaldırın", "60ec0b1871035f300c301acd": "Laboratuvarda PMC operatörlerini ortadan kaldırın", "60ec2b04bc9a8b34cd453b81": "Görev aktifken ölmemelisin ve baskından çıkmamalısın (Durum: Öldürüldü, çıkış yaptı, kayıp)", - "610144955a0e3804617cd69d": "", - "6101449a50bb44526c34c81d": "", "65e09b343458a36a766837c7": "Ground Zero'da PMC operatörlerini ortadan kaldırın", "65e19abadf39d26751b3bb1e": "Ground Zero'da PMC operatörlerini ortadan kaldırın", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", @@ -24102,8 +23686,6 @@ "60ec18b73b5f7d790a7ad034": "Gümrükteki Scav üssündeki PMC ajanlarını ortadan kaldırın", "60ec1e72d7b7cb55e94c1764": "Ormandaki Scav üssündeki PMC ajanlarını ortadan kaldırın", "60ec2229fd1bf4491c4e4552": "Shoreline'daki Health Resort yönetim binasındaki PMC operatörlerini ortadan kaldırın", - "6101458b43d55d251d68e4fa": "", - "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", "60e71b9bbd90872cb85440f3 declinePlayerMessage": "", "60e71b9bbd90872cb85440f3 completePlayerMessage": "", @@ -24112,8 +23694,6 @@ "60e71bb4e456d449cd47ca75 failMessageText": "", "60e71bb4e456d449cd47ca75 successMessageText": "There you go, that's way better. Thank you, warrior. The guys are saying it's calmed down now, so looks like the morons understood your message.", "60e8650e5d67b234af3d3926": "Scav'ları kafadan vurarak ortadan kaldırın", - "610145de61801e6c2626a1b3": "", - "610145e14a065318776a1e75": "", "60e71bb4e456d449cd47ca75 acceptPlayerMessage": "", "60e71bb4e456d449cd47ca75 declinePlayerMessage": "", "60e71bb4e456d449cd47ca75 completePlayerMessage": "", @@ -24123,8 +23703,6 @@ "60e71c11d54b755a3b53eb65 successMessageText": "Lanet olsun... Hepsini tek başına mı aldın? Cesaretin var, orası kesin. O psikopatlarla ilgili bir şeyler doğru değil, sana söylüyorum...", "60e82c12fd1bf4491c4e4547": "Baskında sıra dışı bıçakları bulun", "60e82c5926b88043510e0ad7": "Bıçakları teslim et", - "6101464accda1c5f7b1dd08f": "", - "6101464fe5b13723fc7609ae": "", "60e71c11d54b755a3b53eb65 acceptPlayerMessage": "", "60e71c11d54b755a3b53eb65 declinePlayerMessage": "", "60e71c11d54b755a3b53eb65 completePlayerMessage": "", @@ -24140,8 +23718,6 @@ "60e867265d67b234af3d392c": "LEDX'i teslim edin", "60f028ca86abc00cdc03ab89": "Baskında ilaç yığınlarını bulun", "60f028f85caf08029e0d6277": "İlaç yığınlarını teslim et", - "610146bcccda1c5f7b1dd090": "", - "610146ea70fd3f687c1a747e": "", "62a701587230237f257cac30": "Baskında OLOLO Multivitamin Şişelerini Bulun", "62a70168eb3cb46d9a0bba7a": "Multivitaminleri teslim et", "60e71c48c1bfa3050473b8e5 acceptPlayerMessage": "", @@ -24152,8 +23728,6 @@ "60e71c9ad54b755a3b53eb66 failMessageText": "", "60e71c9ad54b755a3b53eb66 successMessageText": "Marvelous, mercenary. Now it will be much easier for my people to operate on the location! Thank you for your work.", "60e745d6479eef59b01b0bdc": "Rezervde Baskıncıları yok et", - "610147ac43d55d251d68e4fb": "", - "610147b0683d6b506f258f96": "", "60e71c9ad54b755a3b53eb66 acceptPlayerMessage": "", "60e71c9ad54b755a3b53eb66 declinePlayerMessage": "", "60e71c9ad54b755a3b53eb66 completePlayerMessage": "", @@ -24163,8 +23737,6 @@ "60e71ccb5688f6424c7bfec4 successMessageText": "Great, great! The clients have already rewa– uh, thanked us for the successful mission. Good job, mercenary.", "60e8174d0367e10a450f7818": "Baskında ve 50+ seviye BEAR PMC künyelerini bulun ve teslim edin", "60e81795479eef59b01b0bdf": "Baskında ve 50+ seviye USEC PMC künyelerini bulun ve teslim edin", - "610148054a065318776a1e76": "", - "6101480ee5b13723fc7609af": "", "60e71ccb5688f6424c7bfec4 acceptPlayerMessage": "", "60e71ccb5688f6424c7bfec4 declinePlayerMessage": "", "60e71ccb5688f6424c7bfec4 completePlayerMessage": "", @@ -24180,8 +23752,6 @@ "60e743cd0367e10a450f780e": "Baskında Askeri COFDM Kablosuz Sinyal Vericilerini bulun", "60e7449875131b4e61703b7e": "Programlanabilir işlemcileri devredin", "60e744c9d1a062318d3d2262": "Sinyal vericilerini teslim edin", - "61014852683d6b506f258f97": "", - "6101485ce5b13723fc7609b0": "", "62a70191a9a0ea77981b57d9": "Baskında Askeri flash sürücüleri bulun", "62a7019ea9a0ea77981b57da": "Flash sürücüleri teslim et", "60e71ce009d7c801eb0c0ec6 acceptPlayerMessage": "", @@ -24192,8 +23762,6 @@ "60e71d23c1bfa3050473b8e6 failMessageText": "", "60e71d23c1bfa3050473b8e6 successMessageText": "Great, that's all the results I needed, hand me the notebook. Thanks, mercenary.", "60e740b8b567ff641b129573": "PMC operatörlerini 100 metreden uzak bir mesafeden ortadan kaldırın", - "610148dc4a065318776a1e77": "", - "610148e775d59d19bb7329f2": "", "60e71d23c1bfa3050473b8e6 acceptPlayerMessage": "", "60e71d23c1bfa3050473b8e6 declinePlayerMessage": "", "60e71d23c1bfa3050473b8e6 completePlayerMessage": "", @@ -24203,8 +23771,6 @@ "60e71d6d7fcf9c556f325055 successMessageText": "Great, thank you very much, friend. The client already reported that they got the packages. I don't think it's the last order from them, so I'll count on you further.", "60e84ba726b88043510e0ad8": "Gümrükteki şantiyede sarı vincin tabanının altına bir Trijicon REAP-IR kapsamı saklayın", "60e85b2a26b88043510e0ada": "Gümrükteki \"yeni\" benzin istasyonundaki çöp konteynırlarının arkasına bir Trijicon REAP-IR kapsamı saklayın", - "6101491e6c85b961071d75fd": "", - "6101492343d55d251d68e4fc": "", "60e71d6d7fcf9c556f325055 acceptPlayerMessage": "", "60e71d6d7fcf9c556f325055 declinePlayerMessage": "", "60e71d6d7fcf9c556f325055 completePlayerMessage": "", @@ -24213,8 +23779,6 @@ "60e71dc0a94be721b065bbfc failMessageText": "", "60e71dc0a94be721b065bbfc successMessageText": "Respect, brother, you helped me out big time! If you see any dangerous dudes in Ultra, you let me know. Might need you to deal with them again.", "60e73ee8b567ff641b129570": "Kavşak haritasında ULTRA alışveriş merkezi'nin içinde PMC öldür", - "6101498dccda1c5f7b1dd091": "", - "61014992e5b13723fc7609b1": "", "60e71dc0a94be721b065bbfc acceptPlayerMessage": "", "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", @@ -24228,8 +23792,6 @@ "60e733b80367e10a450f7807": "Viskiyi teslim et", "60f028268b669d08a35bfad8": "Baskında arıtılmış su bul", "60f0284e8b669d08a35bfada": "Süpersuyu teslim et", - "610149ce61801e6c2626a1b4": "", - "610149d34a065318776a1e78": "", "62a700fb7230237f257cac2e": "Baskında \"Pevko Light\" bira şişelerini bulun", "62a70110eb3cb46d9a0bba78": "Birayı teslim et", "60e71dc67fcf9c556f325056 acceptPlayerMessage": "", @@ -24246,8 +23808,6 @@ "60e7261382576b5f4f21c495": "Shturman'ı öldür", "60e7261eb567ff641b129557": "Glukhar'ı öldür", "60e72629465ea8368012cc47": "Sanitar'ı öldür", - "61014a2d6c85b961071d75fe": "", - "61014a3143d55d251d68e4fd": "", "60e71e8ed54b755a3b53eb67 acceptPlayerMessage": "", "60e71e8ed54b755a3b53eb67 declinePlayerMessage": "", "60e71e8ed54b755a3b53eb67 completePlayerMessage": "", @@ -24256,8 +23816,6 @@ "60e729cf5698ee7b05057439 failMessageText": "", "60e729cf5698ee7b05057439 successMessageText": "Here you are, swift one. You pleased the old man, and drew conclusions yourself, I hope. You yourself are the weapon and the monolith, not the amount of steel you wear.", "60e729cf5698ee7b0505743c": "Ormanda herhangi bir zırh veya miğfer kullanmadan PMC ajanlarını ortadan kaldırın", - "61014a600631930ce97dea78": "", - "61014a6570fd3f687c1a747f": "", "60e729cf5698ee7b05057439 acceptPlayerMessage": "", "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", @@ -24266,8 +23824,6 @@ "60effd818b669d08a35bfad5 failMessageText": "", "60effd818b669d08a35bfad5 successMessageText": "Cesur bir karar, paralı asker.", "60effdac12fec20321367038": "Güvenli konteyner Epsilon'u teslim edin", - "61014aa1e10c48364e47a913": "", - "610152752b0c65522065ea3b": "", "60effd818b669d08a35bfad5 acceptPlayerMessage": "", "60effd818b669d08a35bfad5 declinePlayerMessage": "", "60effd818b669d08a35bfad5 completePlayerMessage": "", @@ -24854,9 +24410,6 @@ "639135a7e705511c8a4a1b78 description": "Listen, brother, can you help me find proper info on a guy? He's already left the city. Why can't I find him myself? Because his fucking name is Ivan Ivanov. Seriously, I'm not kidding. There are two hundred thousand of them all over the country with that name. If we could find his former address in Tarkov, we might be able to run him through the database. Let me see what I can find on him. I think he used to run a bar, right. I don't know the name of the bar though... Listen, I don't know how you're gonna know which bar is his. Oh, that reminds me, he was into ballet. No kidding. He went to the Mariinsky every season. Even tried to host something at our local theater, but people weren't really crazy about chicks in tutus. More specific? Brother, I'm already fucking specific! I believe in you, use your intuition.", "639135a7e705511c8a4a1b78 failMessageText": "", "639135a7e705511c8a4a1b78 successMessageText": "Found both the bar and the guy's address? Here, write it down for me. You're better than those psychics on TV finding missing people. Wanna be a detective when all this is over, bro? I'll fix you up with a Poirot hat, I promise.", - "639135a7e705511c8a4a1b79": "", - "63920899f8e5dd32bf4e3abc": "", - "63926f0886e646067c176a9a": "", "63a7da6f5199ab1f7d4a774a": "Locate the balletmeister's apartment on Streets of Tarkov", "63a7daae04d3dc28a52a2109": "Survive and extract from the location", "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", @@ -24885,7 +24438,6 @@ "639135c3744e452011470807 description": "Come here, my dear employee. Everything okay in the city? I got a few teams of mine missing. At first I thought, why the fuck would someone be so cocky, trying to shut my business down? Unless they're messing with me or something. I assumed it was that punk from the Lighthouse at first. But then I get a message from Seva Shket. He wrote that they were kept in some private prison. Have you heard about it? It's hidden somewhere in the old apartment buildings. Suits would dump their rivals there and whoever's easier to keep locked up than kept loose. I'd just kill them if that was such a problem, honestly. But it looks like someone would rather keep them in jail than just pop the cunts bothering them... Here's the deal: Shket was the only one in the group who escaped, but now he's on the run, hasn't contacted us since that message he sent. Didn't even tell us where to find the guys, this rat-faced fuck. The guys themselves are to blame for being caught like some bitches, and I would have just told them to fuck off for such a screwup. But the fact that someone's trying to fuck me over is outrageous. All right, enough of this bullshit. Find out where they keep my boys.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Fucking hell. Why would someone keep them there? I'd understand if they sent me a letter saying they'd kill my people if I didn't pay up and shit. A serial killer or something? Anyway, come around in a little while, I'll find out what's going on.", - "6392773c4ed9512be67647eb": "", "63972c5d61b7754ff93bf3ba": "Survive and extract from the location", "63a7d767f32fa1316250c3da": "Locate where the missing group was held captive on Streets of Tarkov", "639135c3744e452011470807 acceptPlayerMessage": "", @@ -25032,7 +24584,6 @@ "6391372c8ba6894d155e77d7 description": "It's the same story again, a new recording, now with a strange symbol. What the hell is going on? People are being sacrificed. To whom? Why? So many questions, yet no answers. I keep thinking it's the worst we'll ever see, but every time I'm proven wrong. We've fought looters with only money on their minds. Murderers who just want to shoot innocents, too. But at least I understand the motivation there, the beast has defeated the human in their soul. But with what purpose do people become these... I cannot understand this. So, soldier, I'll look for them in the woods, you do the same in the city. Somewhere there must be their hideout. Look for the same symbol, I'm sure we'll see it again.", "6391372c8ba6894d155e77d7 failMessageText": "", "6391372c8ba6894d155e77d7 successMessageText": "Buldun mu? Nerede? Orada kimse var mıydı? Sembol ne anlama geliyor? Daha fazla soru...", - "639322b09444fb141f4e6f2d": "", "639da86bad9d7e3216668fd7": "Survive and extract from the location", "63a7d6d61f06d111271f5aeb": "Locate the cultist meeting spot on Streets of Tarkov", "6391372c8ba6894d155e77d7 acceptPlayerMessage": "", @@ -25101,7 +24652,6 @@ "6394aa9a9113f06a7c3b2150 description": "", "6394aa9a9113f06a7c3b2150 failMessageText": "", "6394aa9a9113f06a7c3b2150 successMessageText": "", - "6394aa9a9113f06a7c3b2151": "", "6394aa9a9113f06a7c3b2150 acceptPlayerMessage": "", "6394aa9a9113f06a7c3b2150 declinePlayerMessage": "", "6394aa9a9113f06a7c3b2150 completePlayerMessage": "", @@ -25300,8 +24850,6 @@ "63a5cf262964a7488f5243ce description": "Greetings! Well, let's get it going, are you excited? The task is quite specific, we need to test the Russian toy for close combat, so that the conditions were the very real combat in urban environment. I have customers who don't believe in the effectiveness of this toy... Can you change their minds?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "Well? Does it work good? Suitable for close-quarters combat in urban environments?", - "63a5cf262964a7488f5243cf": "", - "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243d1": "Bastırıcı ve KP-SR2 yansımalı nişangah ile bir SR-2M \"Veresk\" kullanırken PMC operatörlerini ortadan kaldırın", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", @@ -25393,9 +24941,6 @@ "647701ba386d446178434b35 description": "", "647701ba386d446178434b35 failMessageText": "", "647701ba386d446178434b35 successMessageText": "", - "64770523eed96526fe1bc0d9": "", - "64770a5e748d6446740ef738": "", - "64770ae612e67e6d99156c55": "", "647701ba386d446178434b35 acceptPlayerMessage": "", "647701ba386d446178434b35 declinePlayerMessage": "", "647701ba386d446178434b35 completePlayerMessage": "", @@ -25674,7 +25219,6 @@ "6572e876dc0d635f633a5714 failMessageText": "", "6572e876dc0d635f633a5714 successMessageText": "Bazıları hâlâ sağlam, ha. Peki, bu harika, gidip onları küçük bir ziyarete gideceğiz. İşte Ödülün.", "6572e876dc0d635f633a5718": "Streets of Tarkov'da Klimov Caddesi'ndeki ilk ATM grubunu bulun", - "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Pinewood otelindeki Sparja mağazasını keşfedin", "6572e876dc0d635f633a571e": "Concordia'daki Goshan mağazasını keşfedin", "6572e876dc0d635f633a5720": "Baskında bulunan Salty Dog dana sosislerini teslim edin", @@ -25764,7 +25308,6 @@ "65733403eefc2c312a759df0": "Atm №11", "65733403eefc2c312a759df2": "Atm №12", "65733403eefc2c312a759df4": "Atm №14", - "65733403eefc2c312a759df6": "", "65733403eefc2c312a759df8": "Atm №15", "65733403eefc2c312a759dfa": "Atm №16", "65801ad655315fdce2096bec": "Firmanın başarısının sırrını çözüldü", @@ -25797,8 +25340,6 @@ "6573397ef3f8344c4575cd87 failMessageText": "", "6573397ef3f8344c4575cd87 successMessageText": "Buldun mu? Şimdi onu buraya getir! Ve ödülünü al, bunu hak ettin.", "6573397ef3f8344c4575cd88": "Emlak fonunu Streets of Tarkov'da bulun", - "6573397ef3f8344c4575cd8a": "", - "6573397ef3f8344c4575cd8c": "", "6581676e7a18ff402fd23e68": "Tarkov gayrimenkul işlemleri belgesini bulun ve edinin", "658167a0e53c40116f8632fa": "Elde edilen bilgileri teslim edin", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", @@ -25809,8 +25350,6 @@ "65734c186dc1e402c80dc19e failMessageText": "", "65734c186dc1e402c80dc19e successMessageText": "Evet, söylentileri zaten duydum. İnsanlar yakında o serserileri duvara çivileyecekler. İyi iş çıkardın. İşte ödülünüz.", "65734c186dc1e402c80dc1a2": "Streets of Tarkov'da Bomber beanie ve Raybench Hipster Reserve sunglasses takarak tüm düşmanları ortadan kaldırın", - "6573519a1fd8800ddb2c50d2": "", - "657351aa43f6a0e6d0c205bb": "", "657356c410becd24bc776f55": "Streets of Tarkov'da berber dükkanının içine Bombacı beresini sakla", "657356d0a95a1e7e1a8d8d99": "Streets of Tarkov'da berber dükkanının içindeki Stash Raybench Hipster Reserve güneş gözlüğü", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", @@ -25860,7 +25399,6 @@ "65802b627b44fa5e14638899 failMessageText": "", "65802b627b44fa5e14638899 successMessageText": "Lanet bataklıkta mı? Bu kahrolası fiyatı açıklıyor. Onu oradan çıkarıp temizlemek daha pahalıya mal olur! Tamam, bu bana yardım ettiğin için.", "65802b627b44fa5e1463889a": "Shoreline'da Ragman'ın SUV'unu bulun", - "65802b627b44fa5e1463889c": "", "65802bfabac8c53c548fca2a": "Hayatta kal ve bölgeden ayrıl", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", @@ -25985,7 +25523,6 @@ "664bbad8d5057479ac4b8002": "Locate and obtain the “Bison VS Undertaker” poster at the USEC camp on Woods", "664bbb5f217c767c35ae3d51": "Locate and obtain the “Killa and Tagilla” poster at the USEC camp on Woods", "664bbb73c71d456fd03714ca": "Locate and obtain the “Easy Money” poster at the USEC camp on Woods", - "664bbb8a9f5e21bcb6d3fd37": "", "66058cb22cee99303f1ba067 acceptPlayerMessage": "", "66058cb22cee99303f1ba067 declinePlayerMessage": "", "66058cb22cee99303f1ba067 completePlayerMessage": "", @@ -26041,7 +25578,6 @@ "66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm, looking for the one who ordered the hit. They'll get over it and realize they're crossing the line. Here, this is your reward.", "660d5effb318c171fb1ca234": "Eliminate Kaban's guards on Streets of Tarkov", "660d5f5a99b1db9725ca1543": "Eliminate Kollontay's guards on Streets of Tarkov", - "660d5f95f9b871558e7515b5": "", "66058cbf2f19c31a5a1337ec acceptPlayerMessage": "", "66058cbf2f19c31a5a1337ec declinePlayerMessage": "", "66058cbf2f19c31a5a1337ec completePlayerMessage": "", @@ -26077,7 +25613,6 @@ "662bb23200ae352a6d5a415d": "Win 6 matches out of 10 in ranked mode in Arena", "662bb24b3d34cd5e19206e63": "Failure condition: Lose 5 matches", "6633a85e347a2a2b4051a26b": "Hand over Roubles from the EFT balance", - "665490bf7177a91368ff628a": "", "665493a649bd17856482ba77": "Failure Condition: Lose 5 matches", "66058cc72cee99303f1ba069 acceptPlayerMessage": "", "66058cc72cee99303f1ba069 declinePlayerMessage": "", @@ -26121,8 +25656,6 @@ "66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.", "66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.", "66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.", - "660da00baeaeb6238c571cc6": "", - "664fd6feb93ba0de1aa6cacc": "", "664fd7aba8d870609d099fed": "Locate and obtain the compromising information on Ref", "664fd7f0837ee02ad4c8e658": "Hand over the found info", "66563f0a2684eee09e8dcd86": "Locate the old champion's hideout", @@ -26246,7 +25779,6 @@ "660ab96ef50cbdad7906e080 successMessageText": "The phone is a fake. Someone really wanted Skier and his men focused on it. Looks like the game has a new player. We'll look into it.", "660ab9c4fcef83ea40e29efe": "Telefonu ver", "660ac159205fdc5a2afb1665": "Locate and obtain The Unheard's phone on Customs", - "663b3c931a6c808fd4041d0c": "", "663b6f2e01248a081e0a6c6c": "Skier'a herhangi bir silah sat", "660ab96ef50cbdad7906e080 acceptPlayerMessage": "", "660ab96ef50cbdad7906e080 declinePlayerMessage": "", @@ -26412,7 +25944,6 @@ "6616a96a577801372605b602 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9a14df4f14a474c92ba": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9a98a97f72b921665f2": "Sabit sürücüyü teslim edin", - "6626872c0895341f9df10fc3": "", "663b75f01f52e8017dccea96": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a96a577801372605b602 acceptPlayerMessage": "", "6616a96a577801372605b602 declinePlayerMessage": "", @@ -26423,7 +25954,6 @@ "6616a9fdfd94e03533038da8 successMessageText": "So it's empty inside. That's good: if there are no bodies, chances are the refugees are alive. You know about the superposition principle, right?\nAll right, back to the point. I looked through the drive. There was a password [bmV3ZGF3bi4u] with \"important\" written on it. I think you can figure it out.", "6616a9fdfd94e03533038dab": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038dac": "Sabit sürücüyü teslim edin", - "662687519751e32101a0a744": "", "663b763025d88834a5bb15fc": "Locate and obtain the hard drive inside the cottage hideout on Lighthouse", "6616a9fdfd94e03533038da8 acceptPlayerMessage": "", "6616a9fdfd94e03533038da8 declinePlayerMessage": "", @@ -26629,16 +26159,12 @@ "6669766290442b8d8e0688b3": "Hand over the equipment", "6669769ff0cb253ff7649f27": "Find the Crye Precision AVS plate carrier (Tagilla Edition) in raid", "666976ab1a6ef5fa7b813883": "Hand over the equipment", - "6669773b93557c1520f725dc": "", - "66697748053e5fe6051b1680": "", "66697774640ec1284ed1621f": "Find the LBT-1961A Load Bearing Chest Rig (Goons Edition) in raid", "666977849154974010adb5ec": "Hand over the equipment", "666977bfe975ac480a8f914e": "Find the Mystery Ranch NICE COMM 3 BVS frame system (Coyote) in raid", "666977ca5fa54985173f8e2c": "Hand over the equipment", "666977f2dd6e511e9f33005a": "Find the Crye Precision CPC plate carrier (Goons Edition) in raid", "666978023255d2720cbdf76d": "Hand over the equipment", - "6669785411eddc83c3374c7b": "", - "6669786105acfed6df00b46a": "", "666314a1920800278d0f6746 acceptPlayerMessage": "", "666314a1920800278d0f6746 declinePlayerMessage": "", "666314a1920800278d0f6746 completePlayerMessage": "", @@ -26711,7 +26237,6 @@ "666314bc1d3ec95634095e77 description": "Sup, bandit! How's life? A little birdie told me there's a special magazine in the Ultra mall at the Interchange. They wrote about our Russian video game, which is recognized all over the world! I guess the guys really came up with a great concept!", "666314bc1d3ec95634095e77 failMessageText": "", "666314bc1d3ec95634095e77 successMessageText": "Now this is a victory! The magazine hit the jackpot! Looks like real historical shit.", - "6667570298ab2c873b4cc004": "", "667a958eb30fe2e2938a6387": "Locate and obtain the special edition of the gaming magazine on Interchange", "667a95972740eaeca1ecda21": "Hand over the found item", "666314bc1d3ec95634095e77 acceptPlayerMessage": "", @@ -26723,9 +26248,6 @@ "666314bd920800278d0f6748 successMessageText": "I think I'm beginning to understand why people watch these \"live streams\". It's addictive!", "6667579086472aaf0bf7bef5": "Передать жесткий диск с утечкой", "666757c530b9b77ff2d9ac58": "Найти жесткий диск с утечкой в покосившемся доме на локации Берег", - "6674430a82468886a4aebb30": "", - "667570c2d4f68aeef0cae9a5": "", - "667570e8a855902e9311cfdd": "", "667bf8370849ce7edf2b124e": "Install a WI-FI Camera on the mountain ledge on Woods", "667bf840981b1c594af358ce": "Install a WI-FI Camera at the pier tower on Shoreline", "667bf845dc371ee9869f185e": "Install a WI-FI Camera at the office corridor on Factory", @@ -26768,8 +26290,6 @@ "666314c3acf8442f8b0531a3 failMessageText": "", "666314c3acf8442f8b0531a3 successMessageText": "Well done! They say that even the outside world found out about our little move, haha!", "667442da875be5fb415df535": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Woods", - "6675741838e8f9096619562d": "", - "6675742aa69b94e13df80e0b": "", "6682873d755938fa4cb73073": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Shoreline", "66828746efaecf435dde20ca": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", "66d080533a3c33d823a3477d": "Stash a Golden rooster figurine at Prapor's WI-FI Camera on Factory", @@ -27025,8 +26545,6 @@ "66a74c628410476dd65543be description": "Hello, friend. Things have been a little bumpy for me lately. I will be temporarily raising the prices of my products and services from today until I can solve some pressing matters. A mercenary friend of mine is putting together a team to raid the underground lab, and he needs reliable firepower. Can you help? I see you know as much about the ARs as I do, so I thought I'd entrust this to you. I need an M4A1 with no more than 300 total recoil and ergonomics no less than 70. Not easy, I know. Now, be sure to put an EOTech XPS 3-0 on it, since the client refuses to use any other scope.", "66a74c628410476dd65543be failMessageText": "", "66a74c628410476dd65543be successMessageText": "Many thanks. I think this will keep me on track for some time.", - "66a74c628410476dd65543bf": "", - "66a74c628410476dd65543c1": "", "66a74c628410476dd65543c2": "Modify an M4A1 to comply with the given specifications", "66a74c628410476dd65543be acceptPlayerMessage": "", "66a74c628410476dd65543be declinePlayerMessage": "", @@ -27094,14 +26612,6 @@ "66aa74571e5e199ecd094f18 successMessageText": "You didn't lose anything along the way, correct? All right, then it's time to send the engineers out to do some measurements, we're about to find out what these factory walls are hiding. Thanks for your help, friend.", "66aa74571e5e199ecd094f1b": "Use the transit from Customs to Factory (In one raid)", "66aa74571e5e199ecd094f1e": "Eliminate Scavs on Factory (In one raid)", - "66aa748cbc69671b0b82ece6": "", - "66aa7532f3dab453f440e251": "", - "66aa7546e08f4372a95fad5d": "", - "66ab94c517859714e68eea8e": "", - "66ab95264a978766aeb9e684": "", - "66ab9543c94ccd538ca48af0": "", - "66ab962edbab188ccbff7916": "", - "66ab965162eb0c47875ceb3c": "", "66ab97a5c74ce045d6c32578": "Locate and obtain the precision tools package in the laboratory on Customs", "66ab97d56cb6e3bfd7c79fbc": "Stash the package at the laboratory storage room on Factory", "66aa74571e5e199ecd094f18 acceptPlayerMessage": "", @@ -27135,11 +26645,7 @@ "66aba85403e0ee3101042877 successMessageText": "So you have found it indeed. Excellent! How's the passage, is it safe? In a state of disrepair, you say? Well, it seems like this opportunity won't be with us for long. I'll send my men as soon as possible.", "66aba85403e0ee3101042878": "Locate the passage leading to The Lab on Streets of Tarkov (In one raid)", "66aba85403e0ee310104287a": "Use the transit from Streets of Tarkov to The Lab (In one raid)", - "66aba96e18a4a43b2a990b4e": "", "66aba97b1000025218c82ea8": "Locate the passage leading to Streets of Tarkov in The Lab (In one raid)", - "66aba9b0b3712c785ccb2647": "", - "66aba9ec70e169fe1a10c85f": "", - "66aba9f5e1c9b85bc70eaf3b": "", "66b090f5723e7bbe8b518ca8": "Scout the server room in The Lab (In one raid)", "66b0910951c5294b9d213918": "Scout the hazard dome in The Lab (In one raid)", "66b10eef0951e90ec383850b": "Scout the control room in The Lab (In one raid)", @@ -27169,7 +26675,6 @@ "66abb32aeb102b9bcd088d5f successMessageText": "The buyer has told me everything is in place. You've earned your reward, and you can expect my men to help you on the new trails.", "66abb32aeb102b9bcd088d62": "Use the transit from Ground Zero to Streets of Tarkov", "66abb39bf1d97b9b55390a79": "Use the transit from Streets of Tarkov to Interchange", - "66abb3a52d8bf81df0ec6156": "", "66abb3aae25c1c539ab84870": "Use the transit from Interchange to Customs", "66abb3ac416b26ade4a1446c": "Use the transit from Customs to Factory", "66abb3bf228ace5ca9f3d745": "Use the transit from Factory to Woods", @@ -27229,7 +26734,6 @@ "66debf2b9e4ce2ef233ee5b7": "Install a WI-FI Camera at the bear who sat into a flaming car on Woods", "66debf2e1e254957b82711ff": "Install a WI-FI Camera at the upside-down chair on Shoreline", "66debf30802386a45d0adb60": "Install a WI-FI Camera at the not-so-lonely bathroom on Shoreline", - "66debf32dbb19129c35938d2": "", "66d9cbb67b491f9d5304f6e6 acceptPlayerMessage": "", "66d9cbb67b491f9d5304f6e6 declinePlayerMessage": "", "66d9cbb67b491f9d5304f6e6 completePlayerMessage": "", @@ -27237,8 +26741,6 @@ "66e01aca214f88109006a4b5 description": "The soldier of fortune has come for his new task! Rumors have it that Tarkov has become even more dangerous. Who would've thought, right? Someone's started targeting certain areas with mortar fire. \n\nYou better go and see what's going on. And yes, this means going right into the middle of those mortar strike areas. Yup. Alright, so we've noticed the bombardments in the nature reserve, the military base, the customs office, and the coast line. Off you go then.", "66e01aca214f88109006a4b5 failMessageText": "", "66e01aca214f88109006a4b5 successMessageText": "Alive and well, that's great. So let's see what we're working with here. Somebody stole the mortars and now they're hitting various locations right before the airdrop supplies come in. \n\nVery suspicious. These local powdermen sure couldn't have secured communications with the outside world, could they? Either way, all we can do for now is watch.", - "66e01df1af891d3886705427": "", - "66e04e2f282e96cb6f2e50d1": "", "66e19b019f1774a3038c0c67": "Visit an active mortar strike area on any specified location (Shoreline, Woods, Reserve, Customs)", "66e01aca214f88109006a4b5 acceptPlayerMessage": "", "66e01aca214f88109006a4b5 declinePlayerMessage": "", @@ -27256,11 +26758,6 @@ "66e01ad6835f78499f049180 description": "Okay, I got word of a major fuck-up. It may not be your fault, but that's beside the point. The assholes at the water treatment plant intercepted a bunch of these crates with portable EW equipment in them. \n\nThey're obviously useless at this point, but I'm not gonna let them steal government property like this. \n\nFor a warrior like you, the task is feasible. Go to the WTP and get me those EW thingies. And yes, those rats need to be put down. \n\nThe EWs themselves have probably already been handed over to their commanders, so you're guaranteed to get this equipment from them. Assuming you don't die, I suppose.", "66e01ad6835f78499f049180 failMessageText": "", "66e01ad6835f78499f049180 successMessageText": "Splendid, the new toys have arrived. My guys are gonna love these. You need to be ready for anything these days, and such protection is definitely not superfluous.", - "66e0209ecec5c782dbd0f024": "", - "66e020ca3c3a0fe53346e455": "", - "66e0215028e22e7ef3c9aa2f": "", - "66e0218bab09a83519b09872": "", - "66e021c69099a9be779a1728": "", "66e19f1821f233c7928e32dc": "Hand over the found in raid item: GARY ZONT portable electronic warfare device", "66e19f359fee1e54e0e01f7c": "Eliminate Rogues", "66e19f7d534a8ff2bb7e9f89": "Locate and neutralize Big Pipe", @@ -27273,10 +26770,6 @@ "66e01adbd3d014f3ae061c12 description": "This whole trader thing is going pretty well for me, wouldn't you say? You know, If I didn't have my wits about me, I'd be dead in this hellhole a long time ago. Anyway, I'll deal with the reports later, not the first time. \n\nRight now, I need to equip the guys posted outside my territory. Bring them this new equipment we found. I'll give you a part of it, but the rest you need to get yourself - you already know where to look. No, you won't meet them face to face. Just stash the items in the designated spot.", "66e01adbd3d014f3ae061c12 failMessageText": "", "66e01adbd3d014f3ae061c12 successMessageText": "Good, now that they're safe from airborne threats, their combat mission will be accomplished with no problem.", - "66e062d886157640d5db6eb8": "", - "66e063a790b9dd1d882ec236": "", - "66e06bef25097c1088d27459": "", - "66e06c7a4220aba55b7ce4d1": "", "66e070d21022d2c195b847aa": "Stash the GARY ZONT portable electronic warfare device inside the sunken church on Woods", "66e071c8a9e80c3f25bb1bad": "Stash the Radar station spare parts inside the old sawmill hangar on Woods", "66e0735089627301d900ef1d": "Stash the GARY ZONT portable electronic warfare device inside the weather station tower on Shoreline", @@ -27308,7 +26801,6 @@ "66e3e2ee2136472d220bcb36 description": "About time you stopped by. You've noticed those night devils coming out of everywhere too, haven't you? They're arming themselves a lot better, huh. It's like someone's actually working with them. From above, you know?\n\nWe should look into what those bastards are up to. Besides, all the better if you can reduce their numbers. Just be careful. \n\nThere's a rumor among the scavengers that you can run into an invincible beast at night. They say it hunts and devours humans. \n\nI remember an Eastern story about such a demon, its nickname was, uh... “The Oni”. I wouldn't have brought these stories up before. But now something's definitely brewing, and dark thoughts just keep creeping into my head.", "66e3e2ee2136472d220bcb36 failMessageText": "", "66e3e2ee2136472d220bcb36 successMessageText": "So, what'd you find? I didn't sit idle either while you were gone, I met with Partisan. He says they're preparing a special ritual, and that's why they're coming out of their dens. They're all mentioning some kind of “Night of The Cult”.\n\nI don't know what's this about, but it's definitely bad news for Tarkov. And something tells me there's somebody who's orchestrating the whole thing. That demon didn't just show up in our parts for no reason. \n\nI saw something myself last night, though. His face was red, like it was burning. I grabbed my gun and aimed, but just as I blinked, there was no one there. Old man hallucinations, perhaps...", - "66e3e3482636168958243a09": "", "66e3e780e4dbb01803c493f4": "Eliminate the hooded night people", "66e3e2ee2136472d220bcb36 acceptPlayerMessage": "", "66e3e2ee2136472d220bcb36 declinePlayerMessage": "", @@ -27317,9 +26809,6 @@ "66e3e2fcb26de0e0790d3fe6 description": "Alright, I've got good news for you. \nPartisan managed to eavesdrop on the cultists' conversation before the tripwire killed them.\n\nThe Harbinger, as they call him, is in charge of this whole terror parade. He promised them that if they did what he told them, they'd receive the new Gift of the Unheard. What the hell? I have no idea what this means. But I'm certain that if you let them perform the damn ritual, there'll be countless victims amongst the decent folk. People have started fleeing the Streets, they say a ghost is hunting for souls.\n\nWe don't know the details of this mystery, but it's definitely connected to the whole thing! And we know who's behind it. We need to take out the Harbinger, and if you find any creepy crap near him, try to bury it deep in the ground. Maybe that'll keep the cultists in line.", "66e3e2fcb26de0e0790d3fe6 failMessageText": "", "66e3e2fcb26de0e0790d3fe6 successMessageText": "The bastards are taken care of? Damn things belong in hell anyway. Hopefully, the rest of the cultists will back off and go back to their dens. \n\nFunny thing is, Zryachiy's been absent lately, too. I wonder if he came down from the Lighthouse to finish the ritual and let those demons out into the light of day.", - "66e3e43cf8becfe5cc6a9938": "", - "66e3e492d9326ab109c70089": "", - "66e3e4c45e55183329f46c4d": "", "66e3eb3592c6be7be7fdc2e5": "Locate and neutralize the Oni", "66e3eb4c4a5359f2db0be81a": "Locate and neutralize the Harbinger", "66e3eb65e385f94b38f061d7": "Locate and neutralize the Ghost", @@ -27330,9 +26819,6 @@ "66e3e3027804a21d860755d6 description": "I reckon you can see what's going on now that you're back. Not only have those brutes not dispersed, but they've begun to organize their preparations even more vigorously! \n\nI just got word that the poor kid Ryzhy has been captured by Zryachiy himself. They say he'll be the main sacrifice. That means we're running out of time!\n\nPartisan is still in the forest hunting for cultists, but even he can't do it alone. Now it's up to us to clean up the scum with our own hands. If there's nobody to carry out the ritual, maybe it'll be over.", "66e3e3027804a21d860755d6 failMessageText": "", "66e3e3027804a21d860755d6 successMessageText": "Freeze, you vermin! Oh, it's you. They're starting to show up in my neck of the woods now, too. I've had a few of those visitors just before you.\n\nYou say you've cleansed Tarkov of the cultists? Well, with losses like that, they won't be able to do anything anytime soon. They'll forget all about the Harbinger. However, I don't know if I'll be able to sleep easy for a while.\n\nThanks for your help. Couldn't have done it without you.", - "66e3e57fe7f565222935089e": "", - "66e3e6663bb29f616cf844de": "", - "66e3e8d323cf1fe67c0bed75": "", "66e3e9b4218d34e0cce29dfc": "Eliminate the hooded night people on Ground Zero", "66e3ec28ecbe7102342ea56a": "Eliminate the hooded night people on Lighthouse", "66e3ecad063ef452798d369d": "Eliminate the hooded night people on Shoreline", @@ -27385,8 +26871,6 @@ "67040c22cc1f3752720376e9 successMessageText": "Okay, I see the connection, so you did everything right... Oh, they're DDoS-proofed. But what if we access it from here, you assholes? Hm, that's where Mr. Kerman comes in.\n\nAre you still here? I'm sorry, I don't have time to chitchat anymore. Kerman just sent over his data, said he's not gonna let TerraGroup's projects ruin our city. \n\nWhile he takes down the security, I have to format the drives to give Therapist everything we can find out.", "670411a2cded018840f5b599": "Locate the required computer at TerraGroup's Cardinal office on Streets of Tarkov", "670411d819aafd130ebc4bb8": "Install the flash drive at the computer to download the files", - "670411f392f504013a1c89fe": "", - "67041205106aa148ad4ac0d7": "", "67040c22cc1f3752720376e9 acceptPlayerMessage": "", "67040c22cc1f3752720376e9 declinePlayerMessage": "", "67040c22cc1f3752720376e9 completePlayerMessage": "", @@ -27441,12 +26925,10 @@ "67040cae4ac6d9c18c0ade2c failMessageText": "How dare you! My colleague made a critical contribution to saving the city and did not deserve this fate! I don't know how I can trust you after such outrageous actions.", "67040cae4ac6d9c18c0ade2c successMessageText": "You made the right choice. I know Jaeger tried to trick you into harming my colleague.\n\nBut I assure you that this version of the drug was the safest way to cleanse the city of the virus...", "6706a4ddec997e861c3f6f04": "Spread the vaccine on Lighthouse", - "6706a50277a97bdaa930c5f1": "", "6706a504c00fb0d1f430a249": "Spread the vaccine on Shoreline", "6706a51fa60dfe2fb85275ed": "Spread the vaccine on Woods", "6706a52083168d9e8ed303d8": "Spread the vaccine on Customs", "6706a61a5fb5eedf15ec6234": "Spread the vaccine on Factory", - "6706a634a92aee702eee4bb5": "", "67091272fbf6f41d103a3216": "Spread the vaccine in The Lab", "67040cae4ac6d9c18c0ade2c acceptPlayerMessage": "", "67040cae4ac6d9c18c0ade2c declinePlayerMessage": "", @@ -27455,13 +26937,7 @@ "67040ccdcc1f3752720376ef description": "Wait! Did you also not know that she developed this “cure” with Sanitar? \n\nI bet they made a simplified version so they could just kill all the sick people without blinking an eye, yeah? I'm not going to let this happen.\n\nI know her nature... She definitely developed a less lethal version of the drug for her own use, or for sale. \n\nBut if she worked on it with this punk, that means he's the one who's keeping it! Punish the bastard and get the real version of the drug. \n\nIf not the drug itself, at least find the recipe... We'll figure it out from there, probably!", "67040ccdcc1f3752720376ef failMessageText": "How stupid do you have to be to believe her, even after I literally spilled the truth? The blood of those who die from this vaccine will be on your hands, kid. \n\nWhen they come to you in your dreams, you'll realize what you've done.", "67040ccdcc1f3752720376ef successMessageText": "All done, right? We've really rubbed it in these \"businessmen's\" noses!\n\nThis should remind the hag that she swore the Hippocratic Oath.", - "6706af584478a43e95ee1c5c": "", - "6706af5b05a230144c1ba1bc": "", - "6706af5d397d407f643268f8": "", - "6706af5f7a932b3fd9e703ae": "", - "6706af6171fdcfc5d912a647": "", "6706af6cf1cdc7ba44665711": "Locate and obtain the true vaccine in Sanitar's office on Shoreline", - "6706afe3be5e96d75c2d01b9": "", "6707e758f847ab10fd857441": "Locate and neutralize Sanitar", "6719135cfab45272c32a8c01": "Hand over the found item", "67040ccdcc1f3752720376ef acceptPlayerMessage": "", @@ -27472,7 +26948,6 @@ "6707e6614e617ec94f0e63dc failMessageText": "", "6707e6614e617ec94f0e63dc successMessageText": "Well, perhaps now it's finally over! All that matters is that you chose the right side, kid, and your conscience is clear.\n\nThe cure should certainly work if they made it for themselves, we just have to wait a little longer.", "6707e6614e617ec94f0e63e0": "Spread the true vaccine on Lighthouse", - "6707e6614e617ec94f0e63e1": "", "6707e6614e617ec94f0e63e2": "Spread the true vaccine on Shoreline", "6707e6614e617ec94f0e63e3": "Spread the true vaccine on Woods", "6707e6614e617ec94f0e63e4": "Spread the true vaccine on Customs", @@ -27594,9 +27069,6 @@ "673f2d938504a2d993bc2e68": "Locate and scout the warehouses at the depot on Woods", "673f2d9a73ff76dd6d5a6344": "Locate and scout the office at the depot on Woods", "673f2da118e615f9f5550544": "Locate and scout the garages at the depot on Woods", - "673f2ddd7e5b2d2cc95b52d5": "", - "674997edd05fb5590023b8ef": "", - "674ee926ad425099b5b284c4": "", "674eefb9b48df9e0cbba4e2f": "Complete the task A Helping Hand", "673f2cd5d3346c2167020484 acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "673f2cd5d3346c2167020484 declinePlayerMessage": "I cannot help you right now.", @@ -27613,8 +27085,6 @@ "673f4e956f1b89c7bc0f56ef description": "So I went to the depot... Those assholes ruined the place and took my spare parts. I mean, I can understand tools or equipment. But why the fuck would someone take the fucking wheels? You're not gonna build a second BTR like that.\n\nAnyway, I need a spare wheel, and the sooner the better. You gotta find where the proper wheels could be laying around. I don't know where to look exactly, but you're not a moron, you'll figure it out. You can start with the customs area, but I haven't been there for ages, so I can't promise they'll be there.", "673f4e956f1b89c7bc0f56ef failMessageText": "This is a joke, right?\n\nThese are fucking truck wheels, you idiot. I'm driving a BTR. B-T-R! Go mark fucking bicycle wheels next while you're at it.", "673f4e956f1b89c7bc0f56ef successMessageText": "Awesome! These will do, and you also did it quick. I commend that! Changing the wheels will take some time though, it's not a Lada after all.", - "673f5009cab47a0637723455": "", - "673f5065cdfe082966842575": "", "673f507029a1128d5c4d7498": "Locate and mark the spare BTR wheels with an MS2000 Marker", "673f4e956f1b89c7bc0f56ef acceptPlayerMessage": "There are wheels everywhere, don't worry. I'll take care of it.", "673f4e956f1b89c7bc0f56ef declinePlayerMessage": "Perhaps some other time, okay? Not right now.", @@ -27650,9 +27120,7 @@ "673f629c5b555b53460cf827 description": "You know, you've been helping me out for a while now, and I haven't even brought you up to speed with this whole situation. So, I'm working with Skier now. I deliver his goods, and sometimes I'm involved in his operations. At first it was a nice lucrative gig, but now this asshole won't let me off the hook for even a second. He thinks I'm his personal fucking mule now!\n\nHe seems to have found out somehow that I'm tired of all this, and now he's brought his punks to my base to teach me a lesson. I'm not gonna put up with this shit anymore. I'd leave him a long time ago, but I do need protection and guarantees, you know. And since you're in contact with other traders, you could put in a good word for me. Can you help a friend out?", "673f629c5b555b53460cf827 failMessageText": "", "673f629c5b555b53460cf827 successMessageText": "Yeah, well, I was kinda expecting that.\n\nBut the key is that we've made a start. Now I have a real chance of getting away from this shithead.", - "673f633e650cffaf0f58b754": "", "673f637a1fbc23a60a72b743": "Sell any items to Ragman", - "673f639602fa6eb069695172": "", "67519696567b9773f0811bae": "Sell any items to Prapor", "675196dff77c0b8436ec1ef5": "Sell any items to Peacekeeper", "673f629c5b555b53460cf827 acceptPlayerMessage": "Alright, I'll try talking to them.", @@ -27682,11 +27150,6 @@ "6740a2c17e3818d5bb0648b6 successMessageText": "You really helped me out! If the BTR driver is as reliable as you, we'll certainly get along. I just need to finish some other urgent things and prepare everything.", "6740a322d42204d5c70767e9": "Find military electronics items in raid", "6740a33685a62f9581c2beaf": "Hand over the found in raid PC component items", - "6740a34f9caf0cd65356f3e2": "", - "6740a35c6480676445ec1a94": "", - "6740a36d816fbd68fdbf2021": "", - "6740a3779ddcc681762a0946": "", - "6749aa147d6b5eee2227138d": "", "6749aa9b1badcb1e8056d769": "Hand over the found in raid military electronic items", "6740a2c17e3818d5bb0648b6 acceptPlayerMessage": "", "6740a2c17e3818d5bb0648b6 declinePlayerMessage": "", @@ -27716,7 +27179,6 @@ "674492ebf6f84f7d09ef1abb": "Locate and mark the second section of the cliff path with an MS2000 Marker on Lighthouse", "674492f0636d0661476732f2": "Locate and mark the third section of the cliff path with an MS2000 Marker on Lighthouse", "674492f30f45cb752f21df39": "Locate and mark the fourth section of the cliff path with an MS2000 Marker on Lighthouse", - "674492f7d9c95b0c84f43b29": "", "674492b6909d2013670a347a acceptPlayerMessage": "Sounds easy enough. I'll handle it.", "674492b6909d2013670a347a declinePlayerMessage": "Perhaps some other time, okay? Not right now.", "674492b6909d2013670a347a completePlayerMessage": "My job's done. Time to pay up.", @@ -27733,7 +27195,6 @@ "6744a728352b4da8e003eda9 description": "How are the negotiations progressing? I mean, I understand that Prapor needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a728352b4da8e003eda9 failMessageText": "", "6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a951d9ac62db4b79b618": "", "6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery", "6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27742,7 +27203,6 @@ "6744a9dfef61d56e020b5c4a description": "How are the negotiations progressing? I mean, I understand that Ragman needs to mull it over first, but I'm running out of time! Gotta survive somehow while you're building bridges. No complaints against you, obviously.\n\nI don't even have any spare batteries now, and electronics can go to shit at any moment. I could even do with a tank battery right now, I might be able to make it work with my BTR.\n\nYou think you can find one of those? Because without it, it's over for me.", "6744a9dfef61d56e020b5c4a failMessageText": "", "6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.", - "6744a9dfef61d56e020b5c53": "", "6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery", "6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.", "6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.", @@ -27812,7 +27272,6 @@ "6745fcded0fbbc74ca0f721d description": "So? Feel how smooth it runs now? You did me a solid with the wheels. \n\nNow we can start thinking about the fuckers who robbed my base. They can't have gotten far, they're probably still in the nature reserve. Go and punish those fucks, will you?", "6745fcded0fbbc74ca0f721d failMessageText": "", "6745fcded0fbbc74ca0f721d successMessageText": "Nice work! Now the Scavs will think twice before messing with me.", - "6745fcded0fbbc74ca0f7226": "", "6745fd2e3d6070c3563039a9": "Eliminate Scavs on Woods", "6745fcded0fbbc74ca0f721d acceptPlayerMessage": "Alright, I'm in.", "6745fcded0fbbc74ca0f721d declinePlayerMessage": "I've got enough on my plate already. I can't help you.", @@ -27836,7 +27295,6 @@ "674601282043d1ef3c6b2eec": "Mark the City Center BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012a35218bb89951248e": "Mark the Tram BTR stop with an MS2000 Marker on Streets of Tarkov", "6746012d871e69a9abb5873d": "Mark the Rodina Cinema BTR stop with an MS2000 Marker on Streets of Tarkov", - "674601304a3d1d2008e8685f": "", "674600a366e6a521aa05eb66 acceptPlayerMessage": "", "674600a366e6a521aa05eb66 declinePlayerMessage": "", "674600a366e6a521aa05eb66 completePlayerMessage": "", @@ -27845,9 +27303,6 @@ "674602307e3818d5bb069489 failMessageText": "If you wanted to work for both sides, you should've been more fucking careful! \n\nYou won't make it far with that sucker. But you've already made your choice, fuckhead.", "674602307e3818d5bb069489 successMessageText": "The bunker is open? These hooded pricks could be a problem, but they're not the focus at the moment. The plan can't be changed, but I will notify the group anyway.", "674602682cb1c1f5999f27aa": "Locate the bunker under the mountain on Woods", - "67460299698153b59eaaaed0": "", - "6746029f95ccd45122eac971": "", - "674602a8ab2b6567dd9e850a": "", "674da90a45aa075a44b4d687": "Stash the first Russian armor-piercing ammo pack inside the bunker", "674da90f96d4f32d517cb770": "Stash the second Russian armor-piercing ammo pack inside the bunker", "674da9141cc05673dc69e7e7": "Stash the third Russian armor-piercing ammo pack inside the bunker", @@ -27858,7 +27313,6 @@ "6746053b5b555b53460d9896 description": "So a birdie told me the driver is determined and is looking for a new employer. I doubt the idiot realizes all the consequences of such a transition. In any case, I never even gave him that option anyway! The only lead I've confirmed now is about Peacekeeper. \n\nYou should go to him and remind him that we have common interests with him! Make him remember who his key partner is.", "6746053b5b555b53460d9896 failMessageText": "Did you think I wouldn't find out about you helping the driver? You think I can't replace you?\n\nYou're gonna have to work very hard if you want to do business with me again.", "6746053b5b555b53460d9896 successMessageText": "Peacekeeper is a forward thinker, even if he wants to seem like a simple hustler. He won't dare to go against me now.", - "674605a9842a3766b44deb8a": "", "675197664e610fc2b88e0bf3": "Sell any items to Peacekeeper", "6746053b5b555b53460d9896 acceptPlayerMessage": "", "6746053b5b555b53460d9896 declinePlayerMessage": "", @@ -27879,7 +27333,6 @@ "674606bac840f707bea6242f": "Use the transit from Customs to Reserve", "674606ccff406a9f6a28e26f": "Use the transit from Reserve to Woods", "674606f1c63637e54bede3a6": "Use the transit from Woods to Lighthouse", - "674607003c3ac3075a0d241d": "", "6746071002dfd67c0629a379": "Survive and extract from Lighthouse", "674607317781508c405fb979": "Eliminate PMC operatives while completing the other objectives", "67460662d0fbbc74ca0f7229 acceptPlayerMessage": "", @@ -27926,7 +27379,6 @@ "675031d3884e1da4a90b3bc9 description": "Come on in, sit down. Tea's almost ready, it'll warm you up. We haven't had such temperatures since 1873. That winter was as tough as this one, I even warmed up a stray fox here!\n\nIt makes a big difference in a combat situation. You can freeze your fingers so cold that you can't even pull the trigger. Can't sit in an ambush either when you're freezing cold.\n\nIf you want to survive, you gotta toughen up your body. Try to take out a few enemies when you're cold.", "675031d3884e1da4a90b3bc9 failMessageText": "", "675031d3884e1da4a90b3bc9 successMessageText": "So how's your condition? Now you need to warm up, or you'll be out of commission for a week.\n\nAfter you're warmed up, you'll have to practice again, otherwise your body won't get used to it. Then the cold will be an advantage, not a setback.", - "67570cedefe11a1008adcf49": "", "67585f77650907d333a3f082": "Eliminate any target while suffering from the Frostbite status effect", "675031d3884e1da4a90b3bc9 acceptPlayerMessage": "", "675031d3884e1da4a90b3bc9 declinePlayerMessage": "", @@ -28008,7 +27460,6 @@ "6752f6d83038f7df520c83e8 description": "Hello. I figure you've already seen the BTR that's been driving around Tarkov. The driver used to offer his services to PMCs like you, but lately he has started working with Skier as well. The driver came to me when he was restoring the BTR. It was an quite an interesting challenge, let me tell you. But that's beside the point. \n\nHe hasn't been in touch for quite some time, and now he's suddenly asked for help. Apparently, something serious has happened. Can you check in with him and find out what's going on? There aren't many men of wit and ambition left in Tarkov. People like us should stick together.", "6752f6d83038f7df520c83e8 failMessageText": "", "6752f6d83038f7df520c83e8 successMessageText": "I told him it was dangerous to become part of Skier's gang... Granted, it does have its privileges, but you can hardly stay independent in such a big business. \n\nI wonder who could have turned against Skier? After all, the BTR should be under his protection...", - "6752f74853dd38cbdf77a537": "", "6752f85800c5b2c48240c45f": "Complete the task Shipping Delay - Part 1", "6752f86d538945df8cc3fc3a": "Locate and obtain Prapor's package on Woods", "6756bcb3f93f4c1fc2b2d685": "Survive and extract from the location", @@ -28084,7 +27535,6 @@ "675c1cf4a757ddd00404f0a3 failMessageText": "", "675c1cf4a757ddd00404f0a3 successMessageText": "You've learned your lesson. Make sure you don't forget it. \n\nAlways be prepared for your return path to be cut short. No matter which part of Tarkov you find yourself in. Your knowledge of the terrain, the paths between the areas and safe escape routes is your strength.", "675c1cf4a757ddd00404f0a6": "Survive and extract from Customs through ZB-1012", - "676ab31c058363b09072c78e": "", "675c1cf4a757ddd00404f0a3 acceptPlayerMessage": "", "675c1cf4a757ddd00404f0a3 declinePlayerMessage": "", "675c1cf4a757ddd00404f0a3 completePlayerMessage": "", @@ -28161,7 +27611,6 @@ "6761f87227aeff895cef62c5": "Hand over the item: Den figurine", "6761f93bc757eb8c228fa754": "Eliminate Scavs", "6761f9d718fa62aac3264ff2": "Survive and extract from The Lab", - "6762a6b9945ea4e3897f9d9b": "", "6761f28a022f60bb320f3e95 acceptPlayerMessage": "", "6761f28a022f60bb320f3e95 declinePlayerMessage": "", "6761f28a022f60bb320f3e95 completePlayerMessage": "", @@ -28182,7 +27631,6 @@ "6761ff17cdc36bd66102e9e0": "Hand over the found in raid item: Cultist figurine", "6761ff17cdc36bd66102e9e1": "Hand over the found in raid item: Den figurine", "6762015739c53fca8ac51336": "Eliminate PMC operatives", - "6762a660c672b1f883e93c5e": "", "6761ff17cdc36bd66102e9d0 acceptPlayerMessage": "", "6761ff17cdc36bd66102e9d0 declinePlayerMessage": "", "6761ff17cdc36bd66102e9d0 completePlayerMessage": "", @@ -28740,9 +28188,6 @@ "6514134eec10ff011f17cc26 name": "Karanlığın Sesini Duyuyorum", "6514134eec10ff011f17cc26 description": "PMC olarak oynarken Knight'ı 15 kez alt edin", "6514134eec10ff011f17cc26 successMessage": "", - "651412ef0afef6dad1a21477": "", - "65142ceb93d02c082b8e4cc9": "", - "65142d0701e02ae1f559d606": "", "651413e9c31fcb0e163577c9 name": "Şimdi Bu İyi Bir Atış", "651413e9c31fcb0e163577c9 description": "PMC olarak oynarken Zryachiy'yi 15 kez yok edin", "651413e9c31fcb0e163577c9 successMessage": "", @@ -28936,7 +28381,6 @@ "674724a154d58001c3aae177 description": "", "674ed02cb6db2d9636812abc name": "Slot 1", "674ed02cb6db2d9636812abc description": "Slot 1", - "675a27af4d44a196dce29a7f": "", "675a27f01c8bf60fd61ae1e3": "Construct Generator level 2", "674ed05f74c3f1d5251895d7 name": "Slot 2", "674ed05f74c3f1d5251895d7 description": "Slot 2", @@ -28970,7 +28414,6 @@ "675a3e33082bf6442ec1cb5c": "Complete the task The Survivalist Path - Wounded Beast", "6757f843ef44ccd9cae9b4cd name": "Hog target", "6757f843ef44ccd9cae9b4cd description": "A target for real hunters. Making Jaeger proud.", - "675a3bc49e9ea2232939fad4": "", "675a3cd947fb8657e9dff96e": "Complete the task The Huntsman Path - Big Game", "6757f86db8c6e4b9a80b3fd2 name": "Bottle target", "6757f86db8c6e4b9a80b3fd2 description": "Let's see what kind of a shot you are, pilgrim. Take a crack at this bottle.", @@ -28980,7 +28423,6 @@ "675a3f349eb418eb05a5be68": "Complete the task The Tarkov Shooter - Part 3", "6757f8a88e1a324c7432def2 name": "Duck target", "6757f8a88e1a324c7432def2 description": "A target that brings some variety to shooting practice.", - "675a3e62296810313ce4cb67": "", "675b5508e6dbed91a6b0005b": "Complete the task Shootout Picnic", "6758359991a1b673013fed70 name": "Slot 1", "6758359991a1b673013fed70 description": "Slot 1", @@ -29011,18 +28453,15 @@ "675a2ea9f3d03cff837138f3": "Construct Medstation level 2", "67583e1c391a80d71cba478d name": "Slot 1", "67583e1c391a80d71cba478d description": "Slot 1", - "675a2ef594583bad18e99e12": "", "675b49db118a0bc15d47e6a9": "Construct the Air Filtering Unit", "67583f05104ec07eda470388 name": "Slot 1", "67583f05104ec07eda470388 description": "Slot 1", "675a2f55d52741f2d68b5415": "Construct Rest Space level 1", "67583f22e0efa071494fa0e0 name": "Slot 2", "67583f22e0efa071494fa0e0 description": "Slot 2", - "675a2f82e67c1253596278bc": "", "675b4fbc285766929bb16499": "Construct Rest Space level 2", "67583f2e51bec3123cff1eeb name": "Slot 3", "67583f2e51bec3123cff1eeb description": "Slot 3", - "675a2f97d6abe3177335320e": "", "675b4fd2270e7faa92e7aa50": "Construct Rest Space level 2", "67583f3972ff2399ad03c470 name": "Slot 4", "67583f3972ff2399ad03c470 description": "Slot 4", @@ -29146,7 +28585,6 @@ "675a320f0d8def92009c97fc": "Construct the Booze Generator", "67584d9fdd0f493728a7c1ac name": "Slot 1", "67584d9fdd0f493728a7c1ac description": "Slot 1", - "675a31f11f9fd2457d11052d": "", "675b506422acdee48a9bb6c5": "Construct Workbench level 3", "67584e135e4b1c209f06a5e0 name": "Slot 1", "67584e135e4b1c209f06a5e0 description": "Slot 1", diff --git a/Libraries/SptAssets/Assets/database/locations/bigmap/base.json b/Libraries/SptAssets/Assets/database/locations/bigmap/base.json index a42180dd..e89af4a6 100644 --- a/Libraries/SptAssets/Assets/database/locations/bigmap/base.json +++ b/Libraries/SptAssets/Assets/database/locations/bigmap/base.json @@ -555,12 +555,24 @@ "DistToPersueAxemanCoef": 1, "DistToSleep": 300, "DistToSleepPvE": 300, + "FogVisibilityDistanceCoef": 0, + "FogVisibilitySpeedCoef": 0, "GainSight": 1, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MagnetPower": 44, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 1800, "MinExfiltrationTime": 1200, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 0.35, + "RainVisibilitySpeedCoef": 0, "Scattering": 1, "VisibleDistance": 1 }, @@ -654,7 +666,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "MaxCrowdAttackSpawnLimit": 18, "MinInfectionPercentage": 0, "MinSpawnDistToPlayer": 50, @@ -673,6 +685,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.4, "GlobalLootChanceModifierPvE": 0.9, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 550, "IconY": 460, "Id": "bigmap", diff --git a/Libraries/SptAssets/Assets/database/locations/factory4_day/base.json b/Libraries/SptAssets/Assets/database/locations/factory4_day/base.json index c2128970..88a40b92 100644 --- a/Libraries/SptAssets/Assets/database/locations/factory4_day/base.json +++ b/Libraries/SptAssets/Assets/database/locations/factory4_day/base.json @@ -304,12 +304,24 @@ "DistToPersueAxemanCoef": 0.9, "DistToSleep": 150, "DistToSleepPvE": 150, + "FogVisibilityDistanceCoef": 1, + "FogVisibilitySpeedCoef": 1, "GainSight": 1, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MagnetPower": 15, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 900, "MinExfiltrationTime": 600, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 1, + "RainVisibilitySpeedCoef": 1, "Scattering": 1, "VisibleDistance": 1 }, @@ -403,7 +415,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "InfectionPercentage": 0, "MaxCrowdAttackSpawnLimit": 13, "MinInfectionPercentage": 0, @@ -420,6 +432,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.27, "GlobalLootChanceModifierPvE": 0.3, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 470, "IconY": 510, "Id": "factory4_day", diff --git a/Libraries/SptAssets/Assets/database/locations/factory4_night/base.json b/Libraries/SptAssets/Assets/database/locations/factory4_night/base.json index 16286168..f27f5426 100644 --- a/Libraries/SptAssets/Assets/database/locations/factory4_night/base.json +++ b/Libraries/SptAssets/Assets/database/locations/factory4_night/base.json @@ -355,12 +355,24 @@ "DistToPersueAxemanCoef": 0.9, "DistToSleep": 120, "DistToSleepPvE": 120, + "FogVisibilityDistanceCoef": 1, + "FogVisibilitySpeedCoef": 1, "GainSight": 1, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MagnetPower": 15, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 900, "MinExfiltrationTime": 600, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 1, + "RainVisibilitySpeedCoef": 1, "Scattering": 1, "VisibleDistance": 1 }, @@ -454,7 +466,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "InfectionPercentage": 0, "MaxCrowdAttackSpawnLimit": 13, "MinInfectionPercentage": 0, @@ -471,6 +483,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.33, "GlobalLootChanceModifierPvE": 0.5, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 318, "IconY": 359, "Id": "factory4_night", diff --git a/Libraries/SptAssets/Assets/database/locations/interchange/base.json b/Libraries/SptAssets/Assets/database/locations/interchange/base.json index 4c171c7a..21511840 100644 --- a/Libraries/SptAssets/Assets/database/locations/interchange/base.json +++ b/Libraries/SptAssets/Assets/database/locations/interchange/base.json @@ -383,11 +383,23 @@ "DistToPersueAxemanCoef": 1, "DistToSleep": 300, "DistToSleepPvE": 300, + "FogVisibilityDistanceCoef": 0, + "FogVisibilitySpeedCoef": 0, "GainSight": 1, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 1800, "MinExfiltrationTime": 1200, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 0.35, + "RainVisibilitySpeedCoef": 0, "Scattering": 1, "VisibleDistance": 1 }, @@ -481,7 +493,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "Khorovod": { "Chance": 0 }, @@ -503,6 +515,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.35, "GlobalLootChanceModifierPvE": 0.74, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 660, "IconY": 360, "Id": "Interchange", diff --git a/Libraries/SptAssets/Assets/database/locations/laboratory/base.json b/Libraries/SptAssets/Assets/database/locations/laboratory/base.json index d80f23b5..b6909094 100644 --- a/Libraries/SptAssets/Assets/database/locations/laboratory/base.json +++ b/Libraries/SptAssets/Assets/database/locations/laboratory/base.json @@ -573,12 +573,24 @@ "DistToPersueAxemanCoef": 1, "DistToSleep": 160, "DistToSleepPvE": 160, + "FogVisibilityDistanceCoef": 1, + "FogVisibilitySpeedCoef": 1, "GainSight": 1, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MagnetPower": 10, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 1800, "MinExfiltrationTime": 1200, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 1, + "RainVisibilitySpeedCoef": 1, "Scattering": 1, "VisibleDistance": 1 }, @@ -672,7 +684,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "InfectionPercentage": 0, "MaxCrowdAttackSpawnLimit": 13, "MinInfectionPercentage": 0, @@ -689,6 +701,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.33, "GlobalLootChanceModifierPvE": 0.77, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 700, "IconY": 800, "Id": "laboratory", diff --git a/Libraries/SptAssets/Assets/database/locations/lighthouse/base.json b/Libraries/SptAssets/Assets/database/locations/lighthouse/base.json index 51a31f13..3dd380a5 100644 --- a/Libraries/SptAssets/Assets/database/locations/lighthouse/base.json +++ b/Libraries/SptAssets/Assets/database/locations/lighthouse/base.json @@ -466,6 +466,30 @@ "TriggerId": "", "TriggerName": "" }, + { + "BossChance": 0, + "BossDifficult": "normal", + "BossEscortAmount": "0", + "BossEscortDifficult": "normal", + "BossEscortType": "gifter", + "BossName": "gifter", + "BossPlayer": false, + "BossZone": "", + "Delay": 0, + "DependKarma": false, + "DependKarmaPVE": false, + "ForceSpawn": false, + "IgnoreMaxBots": true, + "RandomTimeSpawn": false, + "SpawnMode": [ + "regular", + "pve" + ], + "Supports": null, + "Time": -1, + "TriggerId": "", + "TriggerName": "" + }, { "BossChance": 5, "BossDifficult": "normal", @@ -661,11 +685,23 @@ "DistToPersueAxemanCoef": 0.7, "DistToSleep": 350, "DistToSleepPvE": 350, + "FogVisibilityDistanceCoef": 0, + "FogVisibilitySpeedCoef": 0, "GainSight": 1.3, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 1800, "MinExfiltrationTime": 1200, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 0.35, + "RainVisibilitySpeedCoef": 0, "Scattering": 0.6, "VisibleDistance": 1.3 }, @@ -759,7 +795,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "MaxCrowdAttackSpawnLimit": 18, "MinInfectionPercentage": 0, "MinSpawnDistToPlayer": 50, @@ -778,6 +814,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.12, "GlobalLootChanceModifierPvE": 0.26, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 120, "IconY": 450, "Id": "Lighthouse", diff --git a/Libraries/SptAssets/Assets/database/locations/rezervbase/base.json b/Libraries/SptAssets/Assets/database/locations/rezervbase/base.json index 58b811fb..65002192 100644 --- a/Libraries/SptAssets/Assets/database/locations/rezervbase/base.json +++ b/Libraries/SptAssets/Assets/database/locations/rezervbase/base.json @@ -518,11 +518,23 @@ "DistToPersueAxemanCoef": 1.1, "DistToSleep": 350, "DistToSleepPvE": 350, + "FogVisibilityDistanceCoef": 0, + "FogVisibilitySpeedCoef": 0, "GainSight": 1.3, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 1800, "MinExfiltrationTime": 1200, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 0.35, + "RainVisibilitySpeedCoef": 0, "Scattering": 0.6, "VisibleDistance": 1.3 }, @@ -616,7 +628,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "MaxCrowdAttackSpawnLimit": 18, "MinInfectionPercentage": 0, "MinSpawnDistToPlayer": 50, @@ -635,6 +647,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.17, "GlobalLootChanceModifierPvE": 0.4, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 360, "IconY": 410, "Id": "RezervBase", diff --git a/Libraries/SptAssets/Assets/database/locations/sandbox/base.json b/Libraries/SptAssets/Assets/database/locations/sandbox/base.json index 57c4ea27..1183ac65 100644 --- a/Libraries/SptAssets/Assets/database/locations/sandbox/base.json +++ b/Libraries/SptAssets/Assets/database/locations/sandbox/base.json @@ -213,10 +213,22 @@ "DistToActivatePvE": 260, "DistToSleep": 300, "DistToSleepPvE": 300, + "FogVisibilityDistanceCoef": -1.6, + "FogVisibilitySpeedCoef": 0, "GainSight": 1, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 1500, "MinExfiltrationTime": 1200, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 0.35, + "RainVisibilitySpeedCoef": 0, "Scattering": 1, "VisibleDistance": 1 }, @@ -310,7 +322,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "MaxCrowdAttackSpawnLimit": 18, "MinInfectionPercentage": 0, "MinSpawnDistToPlayer": 50, @@ -327,6 +339,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.34, "GlobalLootChanceModifierPvE": 0.72, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 760, "IconY": 735, "Id": "Sandbox", diff --git a/Libraries/SptAssets/Assets/database/locations/shoreline/base.json b/Libraries/SptAssets/Assets/database/locations/shoreline/base.json index 8177be2b..013e36cf 100644 --- a/Libraries/SptAssets/Assets/database/locations/shoreline/base.json +++ b/Libraries/SptAssets/Assets/database/locations/shoreline/base.json @@ -585,12 +585,24 @@ "DistToPersueAxemanCoef": 1.1, "DistToSleep": 300, "DistToSleepPvE": 300, + "FogVisibilityDistanceCoef": -1.6, + "FogVisibilitySpeedCoef": 0, "GainSight": 1.1, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MagnetPower": 40, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 2000, "MinExfiltrationTime": 1500, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 0.35, + "RainVisibilitySpeedCoef": 0, "Scattering": 0.8, "VisibleDistance": 1.2 }, @@ -684,7 +696,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "MaxCrowdAttackSpawnLimit": 18, "MinInfectionPercentage": 0, "MinSpawnDistToPlayer": 50, @@ -703,6 +715,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.25, "GlobalLootChanceModifierPvE": 0.55, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 220, "IconY": 300, "Id": "Shoreline", diff --git a/Libraries/SptAssets/Assets/database/locations/tarkovstreets/base.json b/Libraries/SptAssets/Assets/database/locations/tarkovstreets/base.json index 6a13c5c1..38cad32f 100644 --- a/Libraries/SptAssets/Assets/database/locations/tarkovstreets/base.json +++ b/Libraries/SptAssets/Assets/database/locations/tarkovstreets/base.json @@ -501,10 +501,22 @@ "DistToActivatePvE": 260, "DistToSleep": 300, "DistToSleepPvE": 300, + "FogVisibilityDistanceCoef": -1.6, + "FogVisibilitySpeedCoef": 0, "GainSight": 1, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 2200, "MinExfiltrationTime": 1800, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 0.35, + "RainVisibilitySpeedCoef": 0, "Scattering": 1, "VisibleDistance": 1 }, @@ -598,7 +610,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "MaxCrowdAttackSpawnLimit": 18, "MinInfectionPercentage": 0, "MinSpawnDistToPlayer": 50, @@ -615,6 +627,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.17, "GlobalLootChanceModifierPvE": 0.37, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 670, "IconY": 620, "Id": "TarkovStreets", diff --git a/Libraries/SptAssets/Assets/database/locations/woods/base.json b/Libraries/SptAssets/Assets/database/locations/woods/base.json index 808c24da..963ebe65 100644 --- a/Libraries/SptAssets/Assets/database/locations/woods/base.json +++ b/Libraries/SptAssets/Assets/database/locations/woods/base.json @@ -505,12 +505,24 @@ "DistToPersueAxemanCoef": 1.1, "DistToSleep": 300, "DistToSleepPvE": 300, + "FogVisibilityDistanceCoef": 0, + "FogVisibilitySpeedCoef": 0, "GainSight": 1, "KhorovodChance": 0, + "LockSpawnCheckRadius": 150, + "LockSpawnCheckRadiusPvE": 150, + "LockSpawnStartTime": 10, + "LockSpawnStartTimePvE": 10, + "LockSpawnStepTime": 50, + "LockSpawnStepTimePvE": 50, "MagnetPower": 44, "MarksmanAccuratyCoef": 1, "MaxExfiltrationTime": 1800, "MinExfiltrationTime": 1200, + "NonWaveSpawnBotsLimitPerPlayer": 10, + "NonWaveSpawnBotsLimitPerPlayerPvE": 15, + "RainVisibilityDistanceCoef": 0.35, + "RainVisibilitySpeedCoef": 0, "Scattering": 1, "VisibleDistance": 1 }, @@ -604,7 +616,7 @@ ], "CrowdCooldownPerPlayerSec": 300, "CrowdsLimit": 2, - "InfectedLookCoeff": 2, + "InfectedLookCoeff": 0.5, "MaxCrowdAttackSpawnLimit": 18, "MinInfectionPercentage": 0, "MinSpawnDistToPlayer": 50, @@ -623,6 +635,35 @@ "GlobalContainerChanceModifier": 1, "GlobalLootChanceModifier": 0.4, "GlobalLootChanceModifierPvE": 0.95, + "HeatmapCellSize": { + "x": 1, + "y": 2, + "z": 1 + }, + "HeatmapLayers": [ + "AllCharactersPositions", + "AllBotsPositions", + "AllRealPlayersPositions", + "RealPlayersSavagesPositions", + "RealPlayersSavagesDeads", + "RealPlayersSavagesDamages", + "RealPlayersPmcPositions", + "RealPlayersPmcDeads", + "RealPlayersPmcDamages", + "RealPlayersPmcLaydownPositions", + "RealPlayersPmcEquipmentDropPositions", + "RealPlayersPmcHealingPositions", + "BotsBossPositions", + "BotsBossDeads", + "BotsBossDamages", + "BotsSavagesPositions", + "BotsSavagesDeads", + "BotsSavagesDamages", + "AllCharactersDamageSources", + "RealPlayerDamageSources", + "BotsDamageSources", + "LootPositions" + ], "IconX": 460, "IconY": 660, "Id": "Woods", @@ -742,7 +783,7 @@ "y": 0, "z": 0 }, - "Radius": 70 + "Radius": 55 } }, "CorePointId": 0, @@ -809,7 +850,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "027273fa-04bc-48d1-acfb-74f008bb196c", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 365.905029, "y": 13.94, @@ -1506,7 +1547,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "158e0a94-64fb-4555-afa0-90109713db91", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -265.82, "y": 10.58, @@ -2205,7 +2246,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "2685c5c9-9bde-40c1-bbc2-3a0f3b024106", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 61.22003, "y": 9.033999, @@ -3418,7 +3459,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "4bef69e6-18dd-4c33-8b74-39eba90908cd", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -256.58, "y": 10.61, @@ -3843,7 +3884,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "57b4786d-ee61-4c7f-b6ef-94467e39a3cf", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -260.32, "y": 11.27, @@ -4119,7 +4160,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "5beb21e5-df5f-4db0-b607-202cb7a62ecf", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 59.18402, "y": 8.883999, @@ -4331,7 +4372,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "6767b1b7-da32-4b62-90f0-0d44712a642b", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 370.773, "y": 13.9, @@ -4848,7 +4889,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "76582ea6-095f-494d-83b8-c9335ba3f14f", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 59.8300171, "y": 8.794, @@ -4968,7 +5009,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "794c2ad7-29fa-4faf-8bcf-649c8925444a", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 367.12, "y": 13.2439995, @@ -7253,7 +7294,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "b43bd5a4-aa6c-4dd6-9052-d3359fa6b53c", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -260.74, "y": 10.41, @@ -7406,7 +7447,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "b593e2ff-9764-4bbe-9f8f-e05781071e7b", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 372.94, "y": 15.3039989, @@ -7490,7 +7531,7 @@ "y": 0, "z": 0 }, - "Radius": 70 + "Radius": 55 } }, "CorePointId": 0, @@ -7671,7 +7712,7 @@ "y": 0, "z": 0 }, - "Radius": 70 + "Radius": 55 } }, "CorePointId": 0, @@ -7769,7 +7810,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "bf2a6323-087e-4d49-a160-ea86b8295ac0", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 63.3200073, "y": 8.99399948, @@ -7983,7 +8024,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "c5021df7-1750-44ff-ae44-137022a8bdac", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 365.55, "y": 13.35, @@ -8495,7 +8536,7 @@ "y": 0, "z": 0 }, - "Radius": 70 + "Radius": 55 } }, "CorePointId": 0, @@ -9230,7 +9271,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "e0fb7ebc-0a4c-45a3-b5a3-ba5e6b1456ba", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": 64.6600342, "y": 9.084, @@ -9260,7 +9301,7 @@ "CorePointId": 0, "DelayToCanSpawnSec": 4, "Id": "e1986567-8367-44cd-9bfa-e5c20e9e1460", - "Infiltration": "Old Station", + "Infiltration": "House", "Position": { "x": -253.669983, "y": 11.57, @@ -10352,7 +10393,7 @@ "y": 0, "z": 0 }, - "Radius": 70 + "Radius": 55 } }, "CorePointId": 0, diff --git a/Libraries/SptAssets/Assets/database/templates/profiles.json b/Libraries/SptAssets/Assets/database/templates/profiles.json index 6a01d163..f1b5a0f5 100644 --- a/Libraries/SptAssets/Assets/database/templates/profiles.json +++ b/Libraries/SptAssets/Assets/database/templates/profiles.json @@ -406,7 +406,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -3124,7 +3124,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -6023,7 +6023,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -9300,7 +9300,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -12666,7 +12666,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -16413,7 +16413,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -20390,7 +20390,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 222222222, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -24124,7 +24124,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 111111111, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -28144,7 +28144,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 222222222, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -32648,7 +32648,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 111111111, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -37252,7 +37252,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 222222222, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -38241,7 +38241,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 111111111, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -41244,7 +41244,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -44394,7 +44394,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -47532,7 +47532,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -50951,7 +50951,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -52347,7 +52347,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", @@ -53337,7 +53337,7 @@ ], "Improvements": {}, "Production": {}, - "Seed": 1234567, + "Seed": "5bcd573481bba9b22c00d06d04073eba", "Customization": { "Wall": "675844bdf94a97cbbe096f1a", "Floor": "6758443ff94a97cbbe096f18", diff --git a/Libraries/SptAssets/Assets/database/templates/quests.json b/Libraries/SptAssets/Assets/database/templates/quests.json index 013d07b3..4d70f7b5 100644 --- a/Libraries/SptAssets/Assets/database/templates/quests.json +++ b/Libraries/SptAssets/Assets/database/templates/quests.json @@ -146375,23 +146375,7 @@ "visibilityConditions": [] } ], - "AvailableForStart": [ - { - "availableAfter": 15, - "conditionType": "Quest", - "dispersion": 0, - "dynamicLocale": false, - "globalQuestCounterId": "", - "id": "6744ac53e5786a3b1ac787a4", - "index": 0, - "parentId": "", - "status": [ - 4 - ], - "target": "6740a02a69a58fceba0ff399", - "visibilityConditions": [] - } - ], + "AvailableForStart": [], "Fail": [] }, "declinePlayerMessage": "6744ab1def61d56e020b5c56 declinePlayerMessage", diff --git a/Server/Modding/ModLoadOrder.cs b/Server/Modding/ModLoadOrder.cs index 00c1c82d..316ada04 100644 --- a/Server/Modding/ModLoadOrder.cs +++ b/Server/Modding/ModLoadOrder.cs @@ -7,13 +7,13 @@ public class ModLoadOrder(ICloner cloner) { protected Dictionary mods = new(); protected Dictionary modsAvailable = new(); - protected HashSet loadOrder = new(); + protected Dictionary loadOrder = new(); - public void SetModList(Dictionary mods) + public Dictionary SetModList(Dictionary mods) { this.mods = mods; modsAvailable = cloner.Clone(this.mods); - loadOrder = []; + loadOrder = new Dictionary(); var visited = new HashSet(); @@ -30,11 +30,13 @@ public class ModLoadOrder(ICloner cloner) { GetLoadOrderRecursive(modName, visited); } + + return loadOrder; } public List GetLoadOrder() { - return [..loadOrder]; + return [..loadOrder.Keys]; } public HashSet GetModsOnLoadBefore(string mod) @@ -102,7 +104,7 @@ public class ModLoadOrder(ICloner cloner) protected void GetLoadOrderRecursive(string mod, HashSet visited) { // Validate package - if (loadOrder.Contains(mod)) + if (loadOrder.ContainsKey(mod)) { return; } @@ -147,6 +149,6 @@ public class ModLoadOrder(ICloner cloner) } visited.Remove(mod); - loadOrder.Add(mod); + loadOrder.Add(mod, config); } } diff --git a/Server/Modding/ModValidator.cs b/Server/Modding/ModValidator.cs index de38d798..2e21ba30 100644 --- a/Server/Modding/ModValidator.cs +++ b/Server/Modding/ModValidator.cs @@ -32,7 +32,7 @@ public class ModValidator( { ValidateMods(mods); - modLoadOrder.SetModList(imported.ToDictionary(m => m.Key, m => m.Value.PackageJson)); + var sortedModLoadOrder = modLoadOrder.SetModList(imported.ToDictionary(m => m.Key, m => m.Value.PackageJson)); var finalList = new List(); foreach (var orderMod in SortModsLoadOrder()) {