Skip to content

Commit

Permalink
Merge pull request #13 from anyuta1166/fix003
Browse files Browse the repository at this point in the history
Update for changed Dieter skills
  • Loading branch information
SpenceKonde authored Aug 9, 2020
2 parents e0b31f9 + b1595cb commit dc01447
Show file tree
Hide file tree
Showing 25 changed files with 542 additions and 432 deletions.
498 changes: 249 additions & 249 deletions GUI/AzzyAIConfig/AzzyAIConfig.csproj

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions GUI/AzzyAIConfig/H_Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,10 @@ static void LoadAutobuffOptions(string file)
{
UseDieterPyroclastic = Convert.ToInt32(Regex.Match(file, "UseDieterPyroclastic\\s*=\\s*-?\\d+", RegexOptions.Multiline).Value.Split('=')[1].Trim());
}
if (Regex.IsMatch(file, "DieterPyroclasticLevel\\s*=\\s*-?\\d+", RegexOptions.Multiline))
{
DieterPyroclasticLevel = Convert.ToInt32(Regex.Match(file, "DieterPyroclasticLevel\\s*=\\s*-?\\d+", RegexOptions.Multiline).Value.Split('=')[1].Trim());
}
if (Regex.IsMatch(file, "UseEiraOveredBoost\\s*=\\s*-?\\d+", RegexOptions.Multiline))
{
UseEiraOveredBoost = Convert.ToInt32(Regex.Match(file, "UseEiraOveredBoost\\s*=\\s*-?\\d+", RegexOptions.Multiline).Value.Split('=')[1].Trim());
Expand Down Expand Up @@ -1468,6 +1472,14 @@ static string SaveAutobuffOptions(string file)
{
file = string.Format("{1}{0}{2,-25}= {3}", Environment.NewLine, file, "UseDieterPyroclastic", UseDieterPyroclastic);
}
if (Regex.IsMatch(file, "DieterPyroclasticLevel\\s*=\\s*(\\d+|-\\d+)", RegexOptions.Multiline))
{
file = Regex.Replace(file, "(DieterPyroclasticLevel\\s*=\\s*)(\\d+|-\\d+)", string.Format("{0,-25}= {1}", "DieterPyroclasticLevel", DieterPyroclasticLevel), RegexOptions.Multiline);
}
else
{
file = string.Format("{1}{0}{2,-25}= {3}", Environment.NewLine, file, "DieterPyroclasticLevel", DieterPyroclasticLevel);
}
if (Regex.IsMatch(file, "UseEiraOveredBoost\\s*=\\s*(\\d+|-\\d+)", RegexOptions.Multiline))
{
file = Regex.Replace(file, "(UseEiraOveredBoost\\s*=\\s*)(\\d+|-\\d+)", string.Format("{0,-25}= {1}", "UseEiraOveredBoost", UseEiraOveredBoost), RegexOptions.Multiline);
Expand Down Expand Up @@ -2423,6 +2435,12 @@ public static int UseDieterPyroclastic
get { return _UseDieterPyroclastic; }
set { _UseDieterPyroclastic = value; }
}
static int _DieterPyroclasticLevel = 0;
public static int DieterPyroclasticLevel
{
get { return _DieterPyroclasticLevel; }
set { _DieterPyroclasticLevel = value; }
}
static int _UseEiraOveredBoost = 0;
public static int UseEiraOveredBoost
{
Expand Down
3 changes: 2 additions & 1 deletion GUI/AzzyAIConfig/H_Config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ EleanorSonicClawLevel =5
EleanorSilverveinLevel =5
EleanorMidnightLevel =5
UseDieterLavaSlide =1
DieterLavaSlideLevel =5
DieterLavaSlideLevel =10
UseDefensiveBuff =1
UseOffensiveBuff =1
UseProvokeOwner =0
Expand All @@ -59,6 +59,7 @@ UseBayeriGoldenPherze =0
UseDieterMagmaFlow =0
UseDieterGraniticArmor =0
UseDieterPyroclastic =0
DieterPyroclasticLevel =10
UseEiraOveredBoost =0
HealSelfHP = 50
HealOwnerHP = 50
Expand Down
36 changes: 33 additions & 3 deletions GUI/AzzyAIConfig/HomConf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,7 @@ public void SetDefaults()
_UseDieterMagmaFlow = (UseDieterMagmaFlowOptions)((DefaultValueAttribute)TypeDescriptor.GetProperties(this)["UseDieterMagmaFlow"].Attributes[typeof(DefaultValueAttribute)]).Value;
_UseDieterGraniticArmor = (UseDieterGraniticArmorOptions)((DefaultValueAttribute)TypeDescriptor.GetProperties(this)["UseDieterGraniticArmor"].Attributes[typeof(DefaultValueAttribute)]).Value;
_UseDieterPyroclastic = (UseDieterPyroclasticOptions)((DefaultValueAttribute)TypeDescriptor.GetProperties(this)["UseDieterPyroclastic"].Attributes[typeof(DefaultValueAttribute)]).Value;
_DieterPyroclasticLevel = Convert.ToInt32(((DefaultValueAttribute)TypeDescriptor.GetProperties(this)["DieterPyroclasticLevel"].Attributes[typeof(DefaultValueAttribute)]).Value);
_UseEiraOveredBoost = (UseEiraOveredBoostOptions)((DefaultValueAttribute)TypeDescriptor.GetProperties(this)["UseEiraOveredBoost"].Attributes[typeof(DefaultValueAttribute)]).Value;
_HealSelfHP = Convert.ToInt32(((DefaultValueAttribute)TypeDescriptor.GetProperties(this)["HealSelfHP"].Attributes[typeof(DefaultValueAttribute)]).Value);
_UseAutoHeal = (UseAutoHealOptions)((DefaultValueAttribute)TypeDescriptor.GetProperties(this)["UseAutoHeal"].Attributes[typeof(DefaultValueAttribute)]).Value;
Expand Down Expand Up @@ -569,6 +570,7 @@ public void Save(string file)
H_Config.UseDieterMagmaFlow = Convert.ToInt32(_UseDieterMagmaFlow);
H_Config.UseDieterGraniticArmor = Convert.ToInt32(_UseDieterGraniticArmor);
H_Config.UseDieterPyroclastic = Convert.ToInt32(_UseDieterPyroclastic);
H_Config.DieterPyroclasticLevel = _DieterPyroclasticLevel;
H_Config.UseEiraOveredBoost = Convert.ToInt32(_UseEiraOveredBoost);
H_Config.HealSelfHP = _HealSelfHP;
H_Config.LavaSlideMode = Convert.ToInt32(_LavaSlideMode);
Expand Down Expand Up @@ -732,6 +734,7 @@ void InitValues()
_UseDieterMagmaFlow = (UseDieterMagmaFlowOptions)H_Config.UseDieterMagmaFlow;
_UseDieterGraniticArmor = (UseDieterGraniticArmorOptions)H_Config.UseDieterGraniticArmor;
_UseDieterPyroclastic = (UseDieterPyroclasticOptions)H_Config.UseDieterPyroclastic;
_DieterPyroclasticLevel = H_Config.DieterPyroclasticLevel;
_UseEiraOveredBoost = (UseEiraOveredBoostOptions)H_Config.UseEiraOveredBoost;
_HealSelfHP = H_Config.HealSelfHP;
_UseAutoHeal = (UseAutoHealOptions)H_Config.UseAutoHeal;
Expand Down Expand Up @@ -1892,7 +1895,7 @@ public bool UseDieterVolcanicAsh
"Use this level of Lava Slide. Overridden by skill tactics " +
"unless MobSkillFixedLevel is enabled"
),
DefaultValue(5)]
DefaultValue(10)]
public int DieterLavaSlideLevel
{
get { return _DieterLavaSlideLevel; }
Expand All @@ -1902,9 +1905,9 @@ public int DieterLavaSlideLevel
{
_DieterLavaSlideLevel = 1;
}
else if (value > 5)
else if (value > 10)
{
_DieterLavaSlideLevel = 5;
_DieterLavaSlideLevel = 10;
}
else
{
Expand Down Expand Up @@ -2665,6 +2668,33 @@ public UseDieterPyroclasticOptions UseDieterPyroclastic
set { _UseDieterPyroclastic = value; }
}

int _DieterPyroclasticLevel = 10;
[Category("Autobuff Options"),
Description(
"Use this level of Pyroclastic." +
" "
),
DefaultValue(10)]
public int DieterPyroclasticLevel
{
get { return _DieterPyroclasticLevel; }
set
{
if (value < 1)
{
_DieterPyroclasticLevel = 1;
}
else if (value > 10)
{
_DieterPyroclasticLevel = 10;
}
else
{
_DieterPyroclasticLevel = value;
}
}
}

UseEiraOveredBoostOptions _UseEiraOveredBoost = UseEiraOveredBoostOptions.Never;
[Category("Autobuff Options"),
Description(
Expand Down
Binary file modified GUI/AzzyAIConfig/bin/Debug/AzzyAIConfig.exe
Binary file not shown.
Binary file modified GUI/AzzyAIConfig/bin/Debug/AzzyAIConfig.pdb
Binary file not shown.
3 changes: 2 additions & 1 deletion GUI/AzzyAIConfig/bin/Debug/H_Config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ EleanorSonicClawLevel =5
EleanorSilverveinLevel =5
EleanorMidnightLevel =5
UseDieterLavaSlide =1
DieterLavaSlideLevel =5
DieterLavaSlideLevel =10
UseDefensiveBuff =1
UseOffensiveBuff =1
UseProvokeOwner =0
Expand All @@ -59,6 +59,7 @@ UseBayeriGoldenPherze =0
UseDieterMagmaFlow =0
UseDieterGraniticArmor =0
UseDieterPyroclastic =0
DieterPyroclasticLevel =10
UseEiraOveredBoost =0
HealSelfHP = 50
HealOwnerHP = 50
Expand Down
Binary file modified GUI/AzzyAIConfig/bin/Release/AzzyAIConfig.exe
Binary file not shown.
Binary file modified GUI/AzzyAIConfig/bin/Release/AzzyAIConfig.pdb
Binary file not shown.
3 changes: 2 additions & 1 deletion GUI/AzzyAIConfig/bin/Release/H_Config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ EleanorSonicClawLevel =5
EleanorSilverveinLevel =5
EleanorMidnightLevel =5
UseDieterLavaSlide =1
DieterLavaSlideLevel =5
DieterLavaSlideLevel =10
UseDefensiveBuff =1
UseOffensiveBuff =1
UseProvokeOwner =0
Expand All @@ -59,6 +59,7 @@ UseBayeriGoldenPherze =0
UseDieterMagmaFlow =0
UseDieterGraniticArmor =0
UseDieterPyroclastic =0
DieterPyroclasticLevel =10
UseEiraOveredBoost =0
HealSelfHP = 50
HealOwnerHP = 50
Expand Down
Binary file not shown.
179 changes: 102 additions & 77 deletions GUI/AzzyAIConfig/obj/x86/Debug/AzzyAIConfig.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -1,77 +1,102 @@
X:\AI Stuff\AzzyAIConfig\bin\Debug\Documentation.txt
X:\AI Stuff\AzzyAIConfig\bin\Debug\Defaults.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\H_Config.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\H_Extra.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\H_Tactics.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\M_Config.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\M_Extra.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\M_Tactics.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\PVP_Tact.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe
X:\AI Stuff\AzzyAIConfig\bin\Debug\AzzyAIConfig.pdb
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\ResolveAssemblyReference.cache
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.AzzyAIAboutBox.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.ExtraControl.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.PvpTactControl.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MerTactControl.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.HomTactControl.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MainForm.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.Properties.Resources.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.pdb
X:\AI Stuff\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe.manifest
X:\AI Stuff\AzzyAIConfig\bin\Debug\AzzyAIConfig.application
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.TrustInfo.xml
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe.manifest
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.application
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\Documentation.txt
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\Defaults.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\H_Config.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\H_Extra.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\H_Tactics.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\M_Config.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\M_Extra.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\M_Tactics.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\AzzyAIConfig.pdb
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\ResolveAssemblyReference.cache
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.AzzyAIAboutBox.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.ExtraControl.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.PvpTactControl.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MerTactControl.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.HomTactControl.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MainForm.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.Properties.Resources.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\GenerateResource.read.1.tlog
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\GenerateResource.write.1.tlog
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.pdb
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\GenerateResource.read.1669.tlog
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\GenerateResource.read.1672.tlog
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\H_PVP_Tact.lua
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.M_PvpTactControl.resources
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\M_PVP_Tact.lua
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.pdb
F:\Desktop\AzzyAIConfig\bin\Debug\Documentation.txt
F:\Desktop\AzzyAIConfig\bin\Debug\M_PVP_Tact.lua
F:\Desktop\AzzyAIConfig\bin\Debug\Defaults.lua
F:\Desktop\AzzyAIConfig\bin\Debug\H_Config.lua
F:\Desktop\AzzyAIConfig\bin\Debug\H_Extra.lua
F:\Desktop\AzzyAIConfig\bin\Debug\H_Tactics.lua
F:\Desktop\AzzyAIConfig\bin\Debug\M_Config.lua
F:\Desktop\AzzyAIConfig\bin\Debug\M_Extra.lua
F:\Desktop\AzzyAIConfig\bin\Debug\M_Tactics.lua
F:\Desktop\AzzyAIConfig\bin\Debug\H_PVP_Tact.lua
F:\Desktop\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe
F:\Desktop\AzzyAIConfig\bin\Debug\AzzyAIConfig.pdb
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.AzzyAIAboutBox.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.M_PvpTactControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.ExtraControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.PvpTactControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MerTactControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.HomTactControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MainForm.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.Properties.Resources.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.csproj.GenerateResource.Cache
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.csprojResolveAssemblyReference.cache
X:\AI Stuff\AzzyAIConfig\bin\Debug\Documentation.txt
X:\AI Stuff\AzzyAIConfig\bin\Debug\Defaults.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\H_Config.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\H_Extra.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\H_Tactics.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\M_Config.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\M_Extra.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\M_Tactics.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\PVP_Tact.lua
X:\AI Stuff\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe
X:\AI Stuff\AzzyAIConfig\bin\Debug\AzzyAIConfig.pdb
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\ResolveAssemblyReference.cache
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.AzzyAIAboutBox.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.ExtraControl.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.PvpTactControl.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MerTactControl.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.HomTactControl.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MainForm.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.Properties.Resources.resources
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.pdb
X:\AI Stuff\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe.manifest
X:\AI Stuff\AzzyAIConfig\bin\Debug\AzzyAIConfig.application
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.TrustInfo.xml
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe.manifest
X:\AI Stuff\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.application
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\Documentation.txt
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\Defaults.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\H_Config.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\H_Extra.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\H_Tactics.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\M_Config.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\M_Extra.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\M_Tactics.lua
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\AzzyAIConfig.pdb
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\ResolveAssemblyReference.cache
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.AzzyAIAboutBox.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.ExtraControl.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.PvpTactControl.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MerTactControl.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.HomTactControl.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MainForm.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.Properties.Resources.resources
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\GenerateResource.read.1.tlog
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\GenerateResource.write.1.tlog
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.pdb
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\GenerateResource.read.1669.tlog
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\GenerateResource.read.1672.tlog
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\H_PVP_Tact.lua
C:\Users\User\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.M_PvpTactControl.resources
C:\Users\User\Desktop\AzzyAIConfig\bin\Debug\M_PVP_Tact.lua
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.pdb
F:\Desktop\AzzyAIConfig\bin\Debug\Documentation.txt
F:\Desktop\AzzyAIConfig\bin\Debug\M_PVP_Tact.lua
F:\Desktop\AzzyAIConfig\bin\Debug\Defaults.lua
F:\Desktop\AzzyAIConfig\bin\Debug\H_Config.lua
F:\Desktop\AzzyAIConfig\bin\Debug\H_Extra.lua
F:\Desktop\AzzyAIConfig\bin\Debug\H_Tactics.lua
F:\Desktop\AzzyAIConfig\bin\Debug\M_Config.lua
F:\Desktop\AzzyAIConfig\bin\Debug\M_Extra.lua
F:\Desktop\AzzyAIConfig\bin\Debug\M_Tactics.lua
F:\Desktop\AzzyAIConfig\bin\Debug\H_PVP_Tact.lua
F:\Desktop\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe
F:\Desktop\AzzyAIConfig\bin\Debug\AzzyAIConfig.pdb
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.AzzyAIAboutBox.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.M_PvpTactControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.ExtraControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.PvpTactControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MerTactControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.HomTactControl.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MainForm.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.Properties.Resources.resources
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.csproj.GenerateResource.Cache
F:\Desktop\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.csprojResolveAssemblyReference.cache
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\Documentation.txt
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\M_PVP_Tact.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\Defaults.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\H_Config.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\H_Extra.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\H_Tactics.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\M_Config.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\M_Extra.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\M_Tactics.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\H_PVP_Tact.lua
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\AzzyAIConfig.exe
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\bin\Debug\AzzyAIConfig.pdb
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.csprojAssemblyReference.cache
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.AzzyAIAboutBox.resources
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.M_PvpTactControl.resources
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.ExtraControl.resources
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.PvpTactControl.resources
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MerTactControl.resources
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.HomTactControl.resources
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.MainForm.resources
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.Properties.Resources.resources
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.csproj.GenerateResource.cache
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.csproj.CoreCompileInputs.cache
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.exe
D:\repositories\anyuta1166\AzzyAI\GUI\AzzyAIConfig\obj\x86\Debug\AzzyAIConfig.pdb
Binary file not shown.
Binary file modified GUI/AzzyAIConfig/obj/x86/Debug/AzzyAIConfig.exe
Binary file not shown.
Binary file modified GUI/AzzyAIConfig/obj/x86/Debug/AzzyAIConfig.pdb
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit dc01447

Please sign in to comment.