From 09e8b0a598d265609897b2bd910e3b9f29113ad3 Mon Sep 17 00:00:00 2001 From: CWX Date: Mon, 30 Dec 2024 16:29:32 +0000 Subject: [PATCH] Updated configs, added partisan and follower to botReqData --- DumpLib/DUMPDATA/botReqData.json | 4 +++- DumpLib/DUMPDATA/config.json | 4 ++-- DumpLib/Helpers/TypeHelper.cs | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/DumpLib/DUMPDATA/botReqData.json b/DumpLib/DUMPDATA/botReqData.json index 0d4a990..8e10e08 100644 --- a/DumpLib/DUMPDATA/botReqData.json +++ b/DumpLib/DUMPDATA/botReqData.json @@ -39,5 +39,7 @@ {"Role":"infectedPmc","Limit":2,"Difficulty":"normal"}, {"Role":"infectedCivil","Limit":2,"Difficulty":"normal"}, {"Role":"infectedLaborant","Limit":2,"Difficulty":"normal"}, - {"Role":"infectedTagilla","Limit":2,"Difficulty":"normal"} + {"Role":"infectedTagilla","Limit":2,"Difficulty":"normal"}, + {"Role":"bossPartisan","Limit":2,"Difficulty":"normal"}, + {"Role":"followerSanitar","Limit":2,"Difficulty":"normal"} ] \ No newline at end of file diff --git a/DumpLib/DUMPDATA/config.json b/DumpLib/DUMPDATA/config.json index a6159f5..e099049 100644 --- a/DumpLib/DUMPDATA/config.json +++ b/DumpLib/DUMPDATA/config.json @@ -1,10 +1,10 @@ { "Name": "Dumper", - "MapNames": [ "Interchange", "factory4_day", "laboratory", "bigmap", "Lighthouse", "RezervBase", "Sandbox", "Sandbox_high", "Shoreline", "TarkovStreets", "Woods" ], + "MapNames": [ "Interchange", "factory4_day", "factory_night", "laboratory", "bigmap", "Lighthouse", "RezervBase", "Sandbox", "Sandbox_high", "Shoreline", "TarkovStreets", "Woods" ], "DateTimeFormat": "yyyy-MM-dd_HH-mm-ss", "QuickDumpEnabled": false, "SptTimings": { "SingleIterationDelayMs": 10000, - "AllIterationDelayMs": 300000 + "AllIterationDelayMs": 100000 } } \ No newline at end of file diff --git a/DumpLib/Helpers/TypeHelper.cs b/DumpLib/Helpers/TypeHelper.cs index e59478b..52ba515 100644 --- a/DumpLib/Helpers/TypeHelper.cs +++ b/DumpLib/Helpers/TypeHelper.cs @@ -269,12 +269,12 @@ public static class TypeHelper && constructors.Length == 2 && properties.Length == 0 && methods.Length == 4 - && fields.Any(f => f.Name == "KarmaValue") - && fields.Any(f => f.Name == "Encyclopedia") && fields.Any(f => f.Name == "Id") && fields.Any(f => f.Name == "AccountId") && fields.Any(f => f.Name == "PetId") - && fields.Any(f => f.Name == "Customization"); + && fields.Any(f => f.Name == "KarmaValue") + && fields.Any(f => f.Name == "Customization") + && fields.Any(f => f.Name == "Encyclopedia"); }); } catch (Exception e)