diff --git a/PokemonGo/RocketAPI/ISettings.cs b/PokemonGo/RocketAPI/ISettings.cs
index 2ed43dd..9fc20db 100644
--- a/PokemonGo/RocketAPI/ISettings.cs
+++ b/PokemonGo/RocketAPI/ISettings.cs
@@ -29,5 +29,6 @@ namespace PokemonGo.RocketAPI
string Language { get; }
string RazzBerryMode { get; }
double RazzBerrySetting { get; }
+ bool CatchPokemon { get; }
}
}
diff --git a/PokemonGo/RocketAPI/Window/App.config b/PokemonGo/RocketAPI/Window/App.config
index 8d6175c..924e21b 100644
--- a/PokemonGo/RocketAPI/Window/App.config
+++ b/PokemonGo/RocketAPI/Window/App.config
@@ -45,6 +45,8 @@
<!--transfer pokemon with IV less than this value if iv transfer type is selected. Whitelist in Program.cs-->
<add key="TravelSpeed" value="60"/>
<!--The speed to travel in km/h-->
+ <add key="CatchPokemon" value="true"/>
+ <!--Only visit pokestop and collect items-->
<add key="EvolveAllGivenPokemons" value="false" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
diff --git a/PokemonGo/RocketAPI/Window/MainForm.cs b/PokemonGo/RocketAPI/Window/MainForm.cs
index 103ebdb..daefd6a 100644
--- a/PokemonGo/RocketAPI/Window/MainForm.cs
+++ b/PokemonGo/RocketAPI/Window/MainForm.cs
@@ -258,8 +258,9 @@ namespace PokemonGo.RocketAPI.Window
default:
ColoredConsoleWrite(Color.DarkGray, "Transfering pokemon disabled");
break;
- }
-
+ }
+
+
if (ClientSettings.EvolveAllGivenPokemons)
await EvolveAllGivenPokemons(client, pokemons);
if (ClientSettings.Recycler)
@@ -442,8 +443,10 @@ namespace PokemonGo.RocketAPI.Window
if (pokeStopsNearPokeStop.Count() > (nextPokeStopList == null ? 0 : nextPokeStopList.Count()))
{
nextPokeStopList = pokeStopsNearPokeStop;
- }
- await ExecuteCatchAllNearbyPokemons(client);
+ }
+
+ if (ClientSettings.CatchPokemon)
+ await ExecuteCatchAllNearbyPokemons(client);
}
if (nextPokeStopList != null)
{
diff --git a/PokemonGo/RocketAPI/Window/Settings.cs b/PokemonGo/RocketAPI/Window/Settings.cs
index d1f916f..75f32f9 100644
--- a/PokemonGo/RocketAPI/Window/Settings.cs
+++ b/PokemonGo/RocketAPI/Window/Settings.cs
@@ -48,6 +48,7 @@ namespace PokemonGo.RocketAPI.Window
public int TransferIVThreshold => GetSetting() != string.Empty ? int.Parse(GetSetting(), CultureInfo.InvariantCulture) : 0;
public int TravelSpeed => GetSetting() != string.Empty ? int.Parse(GetSetting(), CultureInfo.InvariantCulture) : 60;
public bool EvolveAllGivenPokemons => GetSetting() != string.Empty && Convert.ToBoolean(GetSetting(), CultureInfo.InvariantCulture);
+ public bool CatchPokemon => GetSetting() != string.Empty && Convert.ToBoolean(GetSetting(), CultureInfo.InvariantCulture);
public AuthType AuthType
diff --git a/PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs b/PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs
index 00264ef..a0307c5 100644
--- a/PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs
+++ b/PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs
@@ -51,14 +51,16 @@
this.saveBtn = new System.Windows.Forms.Button();
this.gMapControl1 = new GMap.NET.WindowsForms.GMapControl();
this.groupBox1 = new System.Windows.Forms.GroupBox();
+ this.FindAdressButton = new System.Windows.Forms.Button();
+ this.AdressBox = new System.Windows.Forms.TextBox();
this.trackBar = new System.Windows.Forms.TrackBar();
this.panel1 = new System.Windows.Forms.Panel();
+ this.TravelSpeedBox = new System.Windows.Forms.TextBox();
+ this.TravelSpeedText = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
- this.TravelSpeedText = new System.Windows.Forms.Label();
- this.TravelSpeedBox = new System.Windows.Forms.TextBox();
- this.AdressBox = new System.Windows.Forms.TextBox();
- this.FindAdressButton = new System.Windows.Forms.Button();
+ this.CatchPokemonBox = new System.Windows.Forms.CheckBox();
+ this.CatchPokemonText = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
this.panel1.SuspendLayout();
@@ -143,11 +145,12 @@
// label3
//
this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(3, 243);
+ this.label3.Location = new System.Drawing.Point(3, 292);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(91, 13);
this.label3.TabIndex = 8;
this.label3.Text = "Evolve Pokemon:";
+ this.label3.Click += new System.EventHandler(this.label3_Click);
//
// label4
//
@@ -243,19 +246,20 @@
// evolveAllChk
//
this.evolveAllChk.AutoSize = true;
- this.evolveAllChk.Location = new System.Drawing.Point(104, 243);
+ this.evolveAllChk.Location = new System.Drawing.Point(104, 292);
this.evolveAllChk.Name = "evolveAllChk";
this.evolveAllChk.Size = new System.Drawing.Size(15, 14);
this.evolveAllChk.TabIndex = 19;
this.evolveAllChk.UseVisualStyleBackColor = true;
+ this.evolveAllChk.CheckedChanged += new System.EventHandler(this.evolveAllChk_CheckedChanged);
//
// saveBtn
//
this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.saveBtn.Location = new System.Drawing.Point(6, 288);
+ this.saveBtn.Location = new System.Drawing.Point(6, 312);
this.saveBtn.Name = "saveBtn";
- this.saveBtn.Size = new System.Drawing.Size(198, 119);
+ this.saveBtn.Size = new System.Drawing.Size(198, 95);
this.saveBtn.TabIndex = 20;
this.saveBtn.Text = "Save";
this.saveBtn.UseVisualStyleBackColor = true;
@@ -303,6 +307,25 @@
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Location";
//
+ // FindAdressButton
+ //
+ this.FindAdressButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.FindAdressButton.Location = new System.Drawing.Point(338, 384);
+ this.FindAdressButton.Name = "FindAdressButton";
+ this.FindAdressButton.Size = new System.Drawing.Size(130, 26);
+ this.FindAdressButton.TabIndex = 25;
+ this.FindAdressButton.Text = "Find Location";
+ this.FindAdressButton.UseVisualStyleBackColor = true;
+ this.FindAdressButton.Click += new System.EventHandler(this.FindAdressButton_Click_1);
+ //
+ // AdressBox
+ //
+ this.AdressBox.Location = new System.Drawing.Point(6, 387);
+ this.AdressBox.Name = "AdressBox";
+ this.AdressBox.Size = new System.Drawing.Size(326, 20);
+ this.AdressBox.TabIndex = 25;
+ //
// trackBar
//
this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
@@ -317,6 +340,8 @@
//
// panel1
//
+ this.panel1.Controls.Add(this.CatchPokemonBox);
+ this.panel1.Controls.Add(this.CatchPokemonText);
this.panel1.Controls.Add(this.TravelSpeedBox);
this.panel1.Controls.Add(this.TravelSpeedText);
this.panel1.Controls.Add(this.textBox1);
@@ -347,6 +372,24 @@
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(212, 413);
this.panel1.TabIndex = 26;
+ this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
+ //
+ // TravelSpeedBox
+ //
+ this.TravelSpeedBox.Location = new System.Drawing.Point(104, 243);
+ this.TravelSpeedBox.Name = "TravelSpeedBox";
+ this.TravelSpeedBox.Size = new System.Drawing.Size(100, 20);
+ this.TravelSpeedBox.TabIndex = 24;
+ this.TravelSpeedBox.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
+ //
+ // TravelSpeedText
+ //
+ this.TravelSpeedText.AutoSize = true;
+ this.TravelSpeedText.Location = new System.Drawing.Point(3, 246);
+ this.TravelSpeedText.Name = "TravelSpeedText";
+ this.TravelSpeedText.Size = new System.Drawing.Size(102, 13);
+ this.TravelSpeedText.TabIndex = 23;
+ this.TravelSpeedText.Text = "Travel Speed km/h:";
//
// textBox1
//
@@ -366,41 +409,25 @@
this.label6.Text = "IV Threshold:";
this.label6.Click += new System.EventHandler(this.label6_Click);
//
- // TravelSpeedText
- //
- this.TravelSpeedText.AutoSize = true;
- this.TravelSpeedText.Location = new System.Drawing.Point(3, 265);
- this.TravelSpeedText.Name = "TravelSpeedText";
- this.TravelSpeedText.Size = new System.Drawing.Size(102, 13);
- this.TravelSpeedText.TabIndex = 23;
- this.TravelSpeedText.Text = "Travel Speed km/h:";
- //
- // TravelSpeedBox
- //
- this.TravelSpeedBox.Location = new System.Drawing.Point(104, 262);
- this.TravelSpeedBox.Name = "TravelSpeedBox";
- this.TravelSpeedBox.Size = new System.Drawing.Size(100, 20);
- this.TravelSpeedBox.TabIndex = 24;
- this.TravelSpeedBox.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
- //
- // AdressBox
+ // CatchPokemonBox
//
- this.AdressBox.Location = new System.Drawing.Point(6, 387);
- this.AdressBox.Name = "AdressBox";
- this.AdressBox.Size = new System.Drawing.Size(326, 20);
- this.AdressBox.TabIndex = 25;
+ this.CatchPokemonBox.AutoSize = true;
+ this.CatchPokemonBox.Location = new System.Drawing.Point(104, 269);
+ this.CatchPokemonBox.Name = "CatchPokemonBox";
+ this.CatchPokemonBox.Size = new System.Drawing.Size(15, 14);
+ this.CatchPokemonBox.TabIndex = 26;
+ this.CatchPokemonBox.UseVisualStyleBackColor = true;
+ this.CatchPokemonBox.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
- // FindAdressButton
+ // CatchPokemonText
//
- this.FindAdressButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.FindAdressButton.Location = new System.Drawing.Point(338, 384);
- this.FindAdressButton.Name = "FindAdressButton";
- this.FindAdressButton.Size = new System.Drawing.Size(130, 26);
- this.FindAdressButton.TabIndex = 25;
- this.FindAdressButton.Text = "Find Location";
- this.FindAdressButton.UseVisualStyleBackColor = true;
- this.FindAdressButton.Click += new System.EventHandler(this.FindAdressButton_Click_1);
+ this.CatchPokemonText.AutoSize = true;
+ this.CatchPokemonText.Location = new System.Drawing.Point(3, 269);
+ this.CatchPokemonText.Name = "CatchPokemonText";
+ this.CatchPokemonText.Size = new System.Drawing.Size(86, 13);
+ this.CatchPokemonText.TabIndex = 25;
+ this.CatchPokemonText.Text = "Catch Pokemon:";
+ this.CatchPokemonText.Click += new System.EventHandler(this.label7_Click);
//
// SettingsForm
//
@@ -460,5 +487,7 @@
private System.Windows.Forms.TextBox TravelSpeedBox;
private System.Windows.Forms.TextBox AdressBox;
private System.Windows.Forms.Button FindAdressButton;
+ private System.Windows.Forms.CheckBox CatchPokemonBox;
+ private System.Windows.Forms.Label CatchPokemonText;
}
}
diff --git a/PokemonGo/RocketAPI/Window/SettingsForm.cs b/PokemonGo/RocketAPI/Window/SettingsForm.cs
index 4f22dac..eb9f70f 100644
--- a/PokemonGo/RocketAPI/Window/SettingsForm.cs
+++ b/PokemonGo/RocketAPI/Window/SettingsForm.cs
@@ -31,6 +31,7 @@ namespace PokemonGo.RocketAPI.Window
transferTypeCb.Text = Settings.Instance.TransferType;
transferCpThresText.Text = Settings.Instance.TransferCPThreshold.ToString();
evolveAllChk.Checked = Settings.Instance.EvolveAllGivenPokemons;
+ CatchPokemonBox.Checked = Settings.Instance.CatchPokemon;
TravelSpeedBox.Text = Settings.Instance.TravelSpeed.ToString();
// Initialize map:
//use google provider
@@ -80,6 +81,7 @@ namespace PokemonGo.RocketAPI.Window
Settings.Instance.SetSetting(transferCpThresText.Text, "TransferCPThreshold");
Settings.Instance.SetSetting(TravelSpeedBox.Text, "TravelSpeed");
Settings.Instance.SetSetting(evolveAllChk.Checked ? "true" : "false", "EvolveAllGivenPokemons");
+ Settings.Instance.SetSetting(CatchPokemonBox.Checked ? "true" : "false", "CatchPokemon");
Settings.Instance.Reload();
Close();
}
@@ -200,5 +202,30 @@ namespace PokemonGo.RocketAPI.Window
latitudeText.Text = latitude;
longitudeText.Text = longitude;
}
+
+ private void panel1_Paint(object sender, PaintEventArgs e)
+ {
+
+ }
+
+ private void label3_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void evolveAllChk_CheckedChanged(object sender, EventArgs e)
+ {
+
+ }
+
+ private void label7_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void checkBox1_CheckedChanged(object sender, EventArgs e)
+ {
+
+ }
}
}
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/PokemonGo/RocketAPI/Window/obj/Debug/DesignTimeResolveAssemblyReferences.cache
new file mode 100644
index 0000000..8b6baeb
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/PokemonGo/RocketAPI/Window/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
index fab0e5b..fca307d 100644
Binary files a/PokemonGo/RocketAPI/Window/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/PokemonGo/RocketAPI/Window/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.MainForm.resources b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.MainForm.resources
new file mode 100644
index 0000000..df28adc
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.MainForm.resources differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.PokeUi.resources b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.PokeUi.resources
new file mode 100644
index 0000000..df28adc
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.PokeUi.resources differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.PokemonForm.resources b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.PokemonForm.resources
new file mode 100644
index 0000000..df28adc
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.PokemonForm.resources differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.Properties.Resources.resources b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.Properties.Resources.resources differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.SettingsForm.resources b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.SettingsForm.resources
new file mode 100644
index 0000000..df28adc
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.SettingsForm.resources differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csproj.FileListAbsolute.txt b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csproj.FileListAbsolute.txt
index 21b5cb4..5787378 100644
--- a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csproj.FileListAbsolute.txt
+++ b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csproj.FileListAbsolute.txt
@@ -5,3 +5,33 @@ Z:\Pokeman Bots\Pokemon-Go-Rocket-API-master\Pokemon-Go-Rocket-API-master\Pokemo
Z:\Pokeman Bots\Pokemon-Go-Rocket-API-master\Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Window\bin\Debug\Pokemon Go Rocket API.dll
Z:\Pokeman Bots\Pokemon-Go-Rocket-API-master\Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Window\bin\Debug\Newtonsoft.Json.dll
Z:\Pokeman Bots\Pokemon-Go-Rocket-API-master\Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Window\bin\Debug\System.Net.Http.Formatting.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\pokemonGo.ico
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\PokemonGo.RocketAPI.Window.exe.config
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\PokemonGo.RocketAPI.Window.exe
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\PokemonGo.RocketAPI.Window.pdb
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\GMap.NET.Core.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\GMap.NET.WindowsForms.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\Google.Protobuf.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\Pokemon Go Rocket API.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\Newtonsoft.Json.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\S2Geometry.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\System.VarintBitConverter.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\System.Net.Http.Formatting.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\C5.dll
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\Pokemon Go Rocket API.pdb
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\GMap.NET.Core.xml
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\GMap.NET.WindowsForms.xml
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\Google.Protobuf.xml
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\Newtonsoft.Json.xml
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\S2Geometry.xml
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\System.Net.Http.Formatting.xml
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\bin\Debug\C5.xml
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.csprojResolveAssemblyReference.cache
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.MainForm.resources
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.PokemonForm.resources
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.PokeUi.resources
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.Properties.Resources.resources
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.SettingsForm.resources
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.csproj.GenerateResource.Cache
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.exe
+Z:\Pokeman Bots\Pokemon Go Rocket API\PokemonGo\RocketAPI\Window\obj\Debug\PokemonGo.RocketAPI.Window.pdb
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csproj.GenerateResource.Cache b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csproj.GenerateResource.Cache
new file mode 100644
index 0000000..192425e
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csproj.GenerateResource.Cache differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csprojResolveAssemblyReference.cache b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csprojResolveAssemblyReference.cache
new file mode 100644
index 0000000..d559251
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.csprojResolveAssemblyReference.cache differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.exe b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.exe
new file mode 100644
index 0000000..2260cd9
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.exe differ
diff --git a/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.pdb b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.pdb
new file mode 100644
index 0000000..a343ad0
Binary files /dev/null and b/PokemonGo/RocketAPI/Window/obj/Debug/PokemonGo.RocketAPI.Window.pdb differ
You may download the files in Public Git.