This commit is contained in:
CWX
2025-01-16 21:46:13 +00:00
7 changed files with 433 additions and 14 deletions
+1 -1
View File
@@ -3662,7 +3662,7 @@ public class EliteBonusSettings
public double? FenceStandingLossDiscount { get; set; }
[JsonPropertyName("RepeatableQuestExtraCount")]
public double? RepeatableQuestExtraCount { get; set; }
public int? RepeatableQuestExtraCount { get; set; }
[JsonPropertyName("ScavCaseDiscount")]
public double? ScavCaseDiscount { get; set; }
+5 -4
View File
@@ -153,10 +153,11 @@ public class Info
public bool? HasCoopExtension { get; set; }
public bool? HasPveGame { get; set; }
public string? Voice { get; set; }
public double? Level { get; set; }
public double? Experience { get; set; }
public int? Level { get; set; }
public int? Experience { get; set; }
[JsonConverter(typeof(StringToNumberFactoryConverter))]
public long? RegistrationDate { get; set; }
public int? RegistrationDate { get; set; }
public string? GameVersion { get; set; }
public double? AccountType { get; set; }
public MemberCategory? MemberCategory { get; set; }
@@ -184,7 +185,7 @@ public class Info
[JsonPropertyName("isMigratedSkills")]
public bool? IsMigratedSkills { get; set; }
public double? PrestigeLevel { get; set; }
public int? PrestigeLevel { get; set; }
}
public class BotInfoSettings