poe.watch api update
This commit is contained in:
parent
0f51517aaf
commit
c921689116
|
@ -8,69 +8,49 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace PoE_MxFilterGen
|
||||
{
|
||||
public class SparklineCard
|
||||
{
|
||||
public List<double?> data { get; set; }
|
||||
public double? totalChange { get; set; }
|
||||
}
|
||||
|
||||
public class ExplicitModifierCard
|
||||
{
|
||||
public string text { get; set; }
|
||||
public bool optional { get; set; }
|
||||
}
|
||||
|
||||
public class LineCard
|
||||
public class RootCard
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string icon { get; set; }
|
||||
public int mapTier { get; set; }
|
||||
public int levelRequired { get; set; }
|
||||
public string baseType { get; set; }
|
||||
public string category { get; set; }
|
||||
public string group { get; set; }
|
||||
public int frame { get; set; }
|
||||
public List<object> influences { get; set; }
|
||||
public int stackSize { get; set; }
|
||||
public object variant { get; set; }
|
||||
public object prophecyText { get; set; }
|
||||
public string artFilename { get; set; }
|
||||
public int links { get; set; }
|
||||
public int itemClass { get; set; }
|
||||
public SparklineCard sparkline { get; set; }
|
||||
public List<object> implicitModifiers { get; set; }
|
||||
public List<ExplicitModifierCard> explicitModifiers { get; set; }
|
||||
public string flavourText { get; set; }
|
||||
public string itemType { get; set; }
|
||||
public double chaosValue { get; set; }
|
||||
public double exaltedValue { get; set; }
|
||||
public int count { get; set; }
|
||||
public string icon { get; set; }
|
||||
public double mean { get; set; }
|
||||
public double median { get; set; }
|
||||
public double mode { get; set; }
|
||||
public double min { get; set; }
|
||||
public double max { get; set; }
|
||||
public double exalted { get; set; }
|
||||
public int total { get; set; }
|
||||
public int daily { get; set; }
|
||||
public int current { get; set; }
|
||||
public int accepted { get; set; }
|
||||
public double change { get; set; }
|
||||
public List<double> history { get; set; }
|
||||
}
|
||||
|
||||
public class RootCard
|
||||
{
|
||||
public List<LineCard> lines { get; set; }
|
||||
}
|
||||
|
||||
class Generator
|
||||
class Generator
|
||||
{
|
||||
private static string iB;
|
||||
|
||||
public static void Gen(string section, string api, string league, int minValue, int chanceMinValue, int confidence)
|
||||
public static void Gen(string section, string api, string league, int minValue)
|
||||
{
|
||||
List<string> itemBase = new List<string>();
|
||||
RootCard j = JsonConvert.DeserializeObject<RootCard>(File.ReadAllText("data/ninja.card.json", Encoding.UTF8));
|
||||
|
||||
foreach (var ln in j.lines)
|
||||
var RootCard = JsonConvert.DeserializeObject<List<RootCard>>(File.ReadAllText("data/poew.card.json", Encoding.UTF8));
|
||||
|
||||
foreach (var ln in RootCard)
|
||||
{
|
||||
// Check if the item count is at least equal to the desired confidence level
|
||||
if (ln.count >= confidence)
|
||||
// Check if the item value is equal or superior to the minimum value
|
||||
if (ln.min >= 10)
|
||||
{
|
||||
// Check if the item value is equal or superior to the minimum value
|
||||
if (ln.chaosValue >= 5)
|
||||
if (!itemBase.Contains(ln.name))
|
||||
{
|
||||
if (!itemBase.Contains(ln.name))
|
||||
{
|
||||
itemBase.Add(ln.name);
|
||||
iB = iB + string.Format(@" ""{0}""", ln.name);
|
||||
}
|
||||
itemBase.Add(ln.name);
|
||||
iB = iB + string.Format(@" ""{0}""", ln.name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,69 +8,49 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace PoE_MxFilterGen
|
||||
{
|
||||
public class SparklineAccessory
|
||||
{
|
||||
public List<double?> data { get; set; }
|
||||
public double? totalChange { get; set; }
|
||||
}
|
||||
|
||||
public class ExplicitModifierAccessory
|
||||
{
|
||||
public string text { get; set; }
|
||||
public bool optional { get; set; }
|
||||
}
|
||||
|
||||
public class LineAccessory
|
||||
public class RootAccessory
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string type { get; set; }
|
||||
public string category { get; set; }
|
||||
public string group { get; set; }
|
||||
public int frame { get; set; }
|
||||
public List<object> influences { get; set; }
|
||||
public string icon { get; set; }
|
||||
public int mapTier { get; set; }
|
||||
public int levelRequired { get; set; }
|
||||
public string baseType { get; set; }
|
||||
public int stackSize { get; set; }
|
||||
public object variant { get; set; }
|
||||
public object prophecyText { get; set; }
|
||||
public object artFilename { get; set; }
|
||||
public int links { get; set; }
|
||||
public int itemClass { get; set; }
|
||||
public SparklineAccessory sparkline { get; set; }
|
||||
public List<object> implicitModifiers { get; set; }
|
||||
public List<ExplicitModifierAccessory> explicitModifiers { get; set; }
|
||||
public string flavourText { get; set; }
|
||||
public string itemType { get; set; }
|
||||
public double chaosValue { get; set; }
|
||||
public double exaltedValue { get; set; }
|
||||
public int count { get; set; }
|
||||
}
|
||||
|
||||
public class RootAccessory
|
||||
{
|
||||
public List<LineAccessory> lines { get; set; }
|
||||
public double mean { get; set; }
|
||||
public double median { get; set; }
|
||||
public double mode { get; set; }
|
||||
public double min { get; set; }
|
||||
public double max { get; set; }
|
||||
public double exalted { get; set; }
|
||||
public int total { get; set; }
|
||||
public int daily { get; set; }
|
||||
public int current { get; set; }
|
||||
public int accepted { get; set; }
|
||||
public double change { get; set; }
|
||||
public List<object> history { get; set; }
|
||||
public string variation { get; set; }
|
||||
}
|
||||
|
||||
class Generator
|
||||
{
|
||||
private static string iB;
|
||||
|
||||
public static void Gen(string section, string api, string league, int minValue, int chanceMinValue, int confidence)
|
||||
public static void Gen(string section, string api, string league, int minValue)
|
||||
{
|
||||
List<string> itemBase = new List<string>();
|
||||
RootAccessory j = JsonConvert.DeserializeObject<RootAccessory>(File.ReadAllText("data/ninja.accessory.json", Encoding.UTF8));
|
||||
var RootAccessory = JsonConvert.DeserializeObject<List<RootAccessory>>(File.ReadAllText("data/poew.accessory.json", Encoding.UTF8));
|
||||
|
||||
foreach (var ln in j.lines)
|
||||
foreach (var ln in RootAccessory)
|
||||
{
|
||||
// Check if the item count is at least equal to the desired confidence level
|
||||
if (ln.count >= confidence)
|
||||
// Check if the item value is equal or superior to the minimum value
|
||||
if (ln.min >= minValue)
|
||||
{
|
||||
// Check if the item value is equal or superior to the minimum value
|
||||
if (ln.chaosValue >= minValue)
|
||||
if (!itemBase.Contains(ln.type))
|
||||
{
|
||||
if (!itemBase.Contains(ln.baseType))
|
||||
{
|
||||
itemBase.Add(ln.baseType);
|
||||
iB = iB + string.Format(@" ""{0}""", ln.baseType);
|
||||
}
|
||||
itemBase.Add(ln.type);
|
||||
iB = iB + string.Format(@" ""{0}""", ln.type);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -86,8 +66,8 @@ namespace PoE_MxFilterGen
|
|||
File.AppendAllText(fn, " SetBackgroundColor 255 255 255" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " SetBorderColor 180 96 0" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " SetFontSize 45" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, @" CustomAlertSound ""mx_chase.mp3""", Encoding.UTF8);
|
||||
File.AppendAllText(fn, " MinimapIcon 0 White Star", Encoding.UTF8);
|
||||
File.AppendAllText(fn, @" CustomAlertSound ""mx_chase.mp3""" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " MinimapIcon 0 White Star" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " PlayEffect White", Encoding.UTF8);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,68 +8,54 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace PoE_MxFilterGen
|
||||
{
|
||||
public class SparklineArmour
|
||||
{
|
||||
public List<double?> data { get; set; }
|
||||
public double? totalChange { get; set; }
|
||||
}
|
||||
|
||||
public class ExplicitModifierArmour
|
||||
{
|
||||
public string text { get; set; }
|
||||
public bool optional { get; set; }
|
||||
}
|
||||
|
||||
public class LineArmour
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string icon { get; set; }
|
||||
public int mapTier { get; set; }
|
||||
public int levelRequired { get; set; }
|
||||
public string baseType { get; set; }
|
||||
public int stackSize { get; set; }
|
||||
public object variant { get; set; }
|
||||
public object prophecyText { get; set; }
|
||||
public object artFilename { get; set; }
|
||||
public int links { get; set; }
|
||||
public int itemClass { get; set; }
|
||||
public SparklineArmour sparkline { get; set; }
|
||||
public List<object> implicitModifiers { get; set; }
|
||||
public List<ExplicitModifierArmour> explicitModifiers { get; set; }
|
||||
public string flavourText { get; set; }
|
||||
public string itemType { get; set; }
|
||||
public double chaosValue { get; set; }
|
||||
public double exaltedValue { get; set; }
|
||||
public int count { get; set; }
|
||||
}
|
||||
|
||||
public class RootArmour
|
||||
{
|
||||
public List<LineArmour> lines { get; set; }
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string type { get; set; }
|
||||
public string category { get; set; }
|
||||
public string group { get; set; }
|
||||
public int frame { get; set; }
|
||||
public List<object> influences { get; set; }
|
||||
public int linkCount { get; set; }
|
||||
public string icon { get; set; }
|
||||
public double mean { get; set; }
|
||||
public double median { get; set; }
|
||||
public double mode { get; set; }
|
||||
public double min { get; set; }
|
||||
public double max { get; set; }
|
||||
public double exalted { get; set; }
|
||||
public int total { get; set; }
|
||||
public int daily { get; set; }
|
||||
public int current { get; set; }
|
||||
public int accepted { get; set; }
|
||||
public double change { get; set; }
|
||||
public List<object> history { get; set; }
|
||||
public string variation { get; set; }
|
||||
}
|
||||
|
||||
class Generator
|
||||
{
|
||||
private static string iB;
|
||||
|
||||
public static void Gen(string section, string api, string league, int minValue, int chanceMinValue, int confidence)
|
||||
public static void Gen(string section, string api, string league, int minValue)
|
||||
{
|
||||
List<string> itemBase = new List<string>();
|
||||
RootArmour j = JsonConvert.DeserializeObject<RootArmour>(File.ReadAllText("data/ninja.armour.json", Encoding.UTF8));
|
||||
var RootArmour = JsonConvert.DeserializeObject<List<RootArmour>>(File.ReadAllText("data/poew.armour.json", Encoding.UTF8));
|
||||
|
||||
foreach (var ln in j.lines)
|
||||
foreach (var ln in RootArmour)
|
||||
{
|
||||
// Check if the item count is at least equal to the desired confidence level
|
||||
if (ln.count >= confidence && ln.links <= 4)
|
||||
if (ln.linkCount <= 5)
|
||||
{
|
||||
// Check if the item value is equal or superior to the minimum value
|
||||
if (ln.chaosValue >= minValue)
|
||||
if (ln.min >= minValue)
|
||||
{
|
||||
if (!itemBase.Contains(ln.baseType))
|
||||
if (!itemBase.Contains(ln.type))
|
||||
{
|
||||
itemBase.Add(ln.baseType);
|
||||
iB = iB + string.Format(@" ""{0}""", ln.baseType);
|
||||
itemBase.Add(ln.type);
|
||||
iB = iB + string.Format(@" ""{0}""", ln.type);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -86,8 +72,8 @@ namespace PoE_MxFilterGen
|
|||
File.AppendAllText(fn, " SetBackgroundColor 255 255 255" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " SetBorderColor 180 96 0" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " SetFontSize 45" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, @" CustomAlertSound ""mx_chase.mp3""", Encoding.UTF8);
|
||||
File.AppendAllText(fn, " MinimapIcon 0 White Star", Encoding.UTF8);
|
||||
File.AppendAllText(fn, @" CustomAlertSound ""mx_chase.mp3""" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " MinimapIcon 0 White Star" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " PlayEffect White", Encoding.UTF8);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,68 +8,54 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace PoE_MxFilterGen
|
||||
{
|
||||
public class Sparkline
|
||||
{
|
||||
public List<double?> data { get; set; }
|
||||
public double? totalChange { get; set; }
|
||||
}
|
||||
|
||||
public class ExplicitModifier
|
||||
{
|
||||
public string text { get; set; }
|
||||
public bool optional { get; set; }
|
||||
}
|
||||
|
||||
public class LineWeapon
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string icon { get; set; }
|
||||
public int mapTier { get; set; }
|
||||
public int levelRequired { get; set; }
|
||||
public string baseType { get; set; }
|
||||
public int stackSize { get; set; }
|
||||
public object variant { get; set; }
|
||||
public object prophecyText { get; set; }
|
||||
public object artFilename { get; set; }
|
||||
public int links { get; set; }
|
||||
public int itemClass { get; set; }
|
||||
public Sparkline sparkline { get; set; }
|
||||
public List<object> implicitModifiers { get; set; }
|
||||
public List<ExplicitModifier> explicitModifiers { get; set; }
|
||||
public string flavourText { get; set; }
|
||||
public string itemType { get; set; }
|
||||
public double chaosValue { get; set; }
|
||||
public double exaltedValue { get; set; }
|
||||
public int count { get; set; }
|
||||
}
|
||||
|
||||
public class RootWeapon
|
||||
{
|
||||
public List<LineWeapon> lines { get; set; }
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public string type { get; set; }
|
||||
public string category { get; set; }
|
||||
public string group { get; set; }
|
||||
public int frame { get; set; }
|
||||
public List<object> influences { get; set; }
|
||||
public string icon { get; set; }
|
||||
public double mean { get; set; }
|
||||
public double median { get; set; }
|
||||
public double mode { get; set; }
|
||||
public double min { get; set; }
|
||||
public double max { get; set; }
|
||||
public double exalted { get; set; }
|
||||
public int total { get; set; }
|
||||
public int daily { get; set; }
|
||||
public int current { get; set; }
|
||||
public int accepted { get; set; }
|
||||
public double change { get; set; }
|
||||
public List<object> history { get; set; }
|
||||
public int? linkCount { get; set; }
|
||||
public string variation { get; set; }
|
||||
}
|
||||
|
||||
class Generator
|
||||
{
|
||||
private static string iB;
|
||||
|
||||
public static void Gen(string section, string api, string league, int minValue, int chanceMinValue, int confidence)
|
||||
public static void Gen(string section, string api, string league, int minValue)
|
||||
{
|
||||
List<string> itemBase = new List<string>();
|
||||
RootWeapon j = JsonConvert.DeserializeObject<RootWeapon>(File.ReadAllText("data/ninja.weapon.json", Encoding.UTF8));
|
||||
var RootWeapon = JsonConvert.DeserializeObject<List<RootWeapon>>(File.ReadAllText("data/poew.weapon.json", Encoding.UTF8));
|
||||
|
||||
foreach (var ln in j.lines)
|
||||
foreach (var ln in RootWeapon)
|
||||
{
|
||||
// Check if the item count is at least equal to the desired confidence level
|
||||
if (ln.count >= confidence && ln.links <= 4)
|
||||
if (ln.linkCount <= 5)
|
||||
{
|
||||
// Check if the item value is equal or superior to the minimum value
|
||||
if (ln.chaosValue >= minValue)
|
||||
if (ln.min >= minValue)
|
||||
{
|
||||
if (!itemBase.Contains(ln.baseType))
|
||||
if (!itemBase.Contains(ln.type))
|
||||
{
|
||||
itemBase.Add(ln.baseType);
|
||||
iB = iB + string.Format(@" ""{0}""", ln.baseType);
|
||||
itemBase.Add(ln.type);
|
||||
iB = iB + string.Format(@" ""{0}""", ln.type);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -86,8 +72,8 @@ namespace PoE_MxFilterGen
|
|||
File.AppendAllText(fn, " SetBackgroundColor 255 255 255" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " SetBorderColor 180 96 0" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " SetFontSize 45" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, @" CustomAlertSound ""mx_chase.mp3""", Encoding.UTF8);
|
||||
File.AppendAllText(fn, " MinimapIcon 0 White Star", Encoding.UTF8);
|
||||
File.AppendAllText(fn, @" CustomAlertSound ""mx_chase.mp3""" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " MinimapIcon 0 White Star" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " PlayEffect White", Encoding.UTF8);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -83,8 +83,8 @@ namespace PoE_MxFilterGen
|
|||
File.AppendAllText(fn, " SetBackgroundColor 255 255 255" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " SetBorderColor 180 96 0" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " SetFontSize 45" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, @" CustomAlertSound ""mx_chase.mp3""", Encoding.UTF8);
|
||||
File.AppendAllText(fn, " MinimapIcon 0 White Star", Encoding.UTF8);
|
||||
File.AppendAllText(fn, @" CustomAlertSound ""mx_chase.mp3""" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " MinimapIcon 0 White Star" + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, " PlayEffect White", Encoding.UTF8);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27428.2015
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.29613.14
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXPENSIVE UNIQUE (GEN) (Maps)", "EXPENSIVE UNIQUE (Maps)\EXPENSIVE UNIQUE (GEN) (Maps).csproj", "{964745AD-FE02-49C3-8E9E-4773D4F526A0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DIVINATION CARD (GEN)", "DIVINATION CARD (GEN)\DIVINATION CARD (GEN).csproj", "{2DA1EB7B-8508-42C6-828B-87D5DCFA3CF2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXPENSIVE UNIQUE (GEN) (Weapons)", "EXPENSIVE UNIQUE (GEN) (Weapons)\EXPENSIVE UNIQUE (GEN) (Weapons).csproj", "{53EA625F-4C5F-4584-A96F-78BE5E54657A}"
|
||||
|
@ -13,20 +11,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXPENSIVE UNIQUE (GEN) (Arm
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EXPENSIVE UNIQUE (GEN) (Accessories)", "EXPENSIVE UNIQUE (GEN) (Accessories)\EXPENSIVE UNIQUE (GEN) (Accessories).csproj", "{636E5A6B-CC9D-45CD-A554-024324E701B5}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHANCING (Body)", "CHANCING (Body)\CHANCING (Body).csproj", "{B4433CCE-879E-4061-9E18-518D473A39DC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHANCING (Boots)", "CHANCING (Boots)\CHANCING (Boots).csproj", "{BB8A89F2-5FD2-476C-8484-B01B60D70576}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHANCING (Gloves)", "CHANCING (Gloves)\CHANCING (Gloves).csproj", "{08A15B18-3572-4A15-8FEB-16933C1E34C2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHANCING (Helmet)", "CHANCING (Helmet)\CHANCING (Helmet).csproj", "{F66DADB1-0E93-406F-AA8C-5FD93733455A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHANCING (Quiver)", "CHANCING (Quiver)\CHANCING (Quiver).csproj", "{EEAB1016-0C68-441C-9BED-58C00163BC3B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHANCING (Shield)", "CHANCING (Shield)\CHANCING (Shield).csproj", "{9530B929-416B-43FE-A1BA-FEEBFFB97575}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CHANCING (Belt)", "CHANCING (Belt)\CHANCING (Belt).csproj", "{30965CCD-46DF-47A3-BDBC-6FC0B0900B4E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tiers (DATA)", "Tiers (DATA)\Tiers (DATA).csproj", "{428B5A68-922A-4651-88FC-A6C194C10BD8}"
|
||||
EndProject
|
||||
Global
|
||||
|
@ -35,10 +19,6 @@ Global
|
|||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{964745AD-FE02-49C3-8E9E-4773D4F526A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{964745AD-FE02-49C3-8E9E-4773D4F526A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{964745AD-FE02-49C3-8E9E-4773D4F526A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{964745AD-FE02-49C3-8E9E-4773D4F526A0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{2DA1EB7B-8508-42C6-828B-87D5DCFA3CF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2DA1EB7B-8508-42C6-828B-87D5DCFA3CF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2DA1EB7B-8508-42C6-828B-87D5DCFA3CF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
|
@ -55,34 +35,6 @@ Global
|
|||
{636E5A6B-CC9D-45CD-A554-024324E701B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{636E5A6B-CC9D-45CD-A554-024324E701B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{636E5A6B-CC9D-45CD-A554-024324E701B5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{B4433CCE-879E-4061-9E18-518D473A39DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{B4433CCE-879E-4061-9E18-518D473A39DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{B4433CCE-879E-4061-9E18-518D473A39DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{B4433CCE-879E-4061-9E18-518D473A39DC}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{BB8A89F2-5FD2-476C-8484-B01B60D70576}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{BB8A89F2-5FD2-476C-8484-B01B60D70576}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{BB8A89F2-5FD2-476C-8484-B01B60D70576}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BB8A89F2-5FD2-476C-8484-B01B60D70576}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{08A15B18-3572-4A15-8FEB-16933C1E34C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{08A15B18-3572-4A15-8FEB-16933C1E34C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{08A15B18-3572-4A15-8FEB-16933C1E34C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{08A15B18-3572-4A15-8FEB-16933C1E34C2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{F66DADB1-0E93-406F-AA8C-5FD93733455A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{F66DADB1-0E93-406F-AA8C-5FD93733455A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{F66DADB1-0E93-406F-AA8C-5FD93733455A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{F66DADB1-0E93-406F-AA8C-5FD93733455A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{EEAB1016-0C68-441C-9BED-58C00163BC3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{EEAB1016-0C68-441C-9BED-58C00163BC3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{EEAB1016-0C68-441C-9BED-58C00163BC3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{EEAB1016-0C68-441C-9BED-58C00163BC3B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{9530B929-416B-43FE-A1BA-FEEBFFB97575}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{9530B929-416B-43FE-A1BA-FEEBFFB97575}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9530B929-416B-43FE-A1BA-FEEBFFB97575}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9530B929-416B-43FE-A1BA-FEEBFFB97575}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{30965CCD-46DF-47A3-BDBC-6FC0B0900B4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{30965CCD-46DF-47A3-BDBC-6FC0B0900B4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{30965CCD-46DF-47A3-BDBC-6FC0B0900B4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{30965CCD-46DF-47A3-BDBC-6FC0B0900B4E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{428B5A68-922A-4651-88FC-A6C194C10BD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{428B5A68-922A-4651-88FC-A6C194C10BD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{428B5A68-922A-4651-88FC-A6C194C10BD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
|
|
|
@ -30,7 +30,7 @@ namespace Tiers__DATA_
|
|||
public string tiers { get; set; }
|
||||
}
|
||||
|
||||
public static void Gen(string section, string api, string league, int minValue, int chanceMinValue, int confidence)
|
||||
public static void Gen(string section, string api, string league, int minValue)
|
||||
{
|
||||
string giturl = settings.GetGIT();
|
||||
var js = Web.ReadString($@"{giturl}/PoE-MxFilter-Structure/master/Tiers.txt");
|
||||
|
|
Loading…
Reference in New Issue