|
You last visited: Today at 12:42
Advertisement
[Pokémon Go] C# Bot - Pokemon-Go-Rocket-API - Pokéstops/Pokémon farmen [Google/PTC]
Discussion on [Pokémon Go] C# Bot - Pokemon-Go-Rocket-API - Pokéstops/Pokémon farmen [Google/PTC] within the Pokemon Hacks, Bots, Cheats & Exploits forum part of the Pokemon category.
07/21/2016, 19:28
|
#676
|
elite*gold: 0
Join Date: Feb 2010
Posts: 124
Received Thanks: 40
|
Quote:
Originally Posted by blackout069
Habe mehrere User die ihn benutzen und keiner hat einen Softban bekommen und botte schon seit 7 Stunden damit und nichts passiert. Hast warscheinlich schlechte Koordinaten benutzt oder irgendwas falsch gemacht.
|
kannste deinen noch woanders hochladen? kann von upload nix mehr ziehen
Quote:
Originally Posted by FITH
Alles falsch gemacht!
Code:
<?xml version="1.0" encoding="utf-16"?>
<UserSettingsXml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<AuthType>Google</AuthType> <!-- Google or Ptc -->
<DefaultLatitude>HIER EINTRAGEN</DefaultLatitude> <!-- Change this to your Latitude -->
<DefaultLongitude>HIER EINTRAGEN</DefaultLongitude> <!-- Change this to your Longitude -->
<GoogleRefreshToken>HIER EINTRAGEN</GoogleRefreshToken> <!-- When starting the Program you will get your token to fill in. -->
<PtcPassword>pw</PtcPassword> <!-- IF you are using PTC fill in your password -->
<PtcUsername>username</PtcUsername> <!-- IF you are using PTC fill in your username -->
<EvolveAllGivenPokemons>true</EvolveAllGivenPokemons> <!-- Do you want to evolve all of your pokemon? Change to true -->
<TransferType>leaveStrongest</TransferType> <!-- Transfertypes are as follows: leaveStrongest, all, duplicate, cp leave at none to keep all pokemon caught. -->
<TransferCPThreshold>0</TransferCPThreshold> <!-- IF you are using the Transfertype cp then this will be the maximum cp to transfer -->
</UserSettingsXml>
so muss das aussehen
|
wow, bin ich ein XML legastheniker, danke!
|
|
|
07/21/2016, 19:34
|
#677
|
elite*gold: 74
Join Date: Oct 2008
Posts: 619
Received Thanks: 288
|
Quote:
Originally Posted by marcomatic0
kannste deinen noch woanders hochladen? kann von upload nix mehr ziehen 
|
Quote:
Originally Posted by blackout069
Für Leute die immer noch nix auf die Reihe bekommen haben, hier ist meine bearbeitete Version von dem Bot. Einfach herunterladen, .ini's bearbeiten und die .exe öffnen!
Location.ini
- Location bitte so eintragen: xx.xxxx xx.xxxx (1.Koordinate*LEERZEICHEN*2.KOORDINATE)
Account.ini (NUR FÜR PTC ACCOUNTS)
- PTC Userdaten bitte so eintragen: username  asswort
MinCP.ini
- Mindest CP/WP das ein Pokemon haben soll ohne es wegzuschicken
Download
-
Viel spaß
BTW: Ich werde den Bot auch immer Updaten!
|
 - PokeGo Bot_MultiUpload.biz.rar.html
|
|
|
07/21/2016, 19:39
|
#678
|
elite*gold: 1
Join Date: Mar 2015
Posts: 1,112
Received Thanks: 43
|
<PokemonGo.RocketAPI.Console.UserSettings>
<setting name="AuthType" serializeAs="String">
<value>Google</value>
</setting>
<setting name="PtcUsername" serializeAs="String">
<value>username</value>
</setting>
<setting name="PtcPassword" serializeAs="String">
<value>pw</value>
</setting>
<setting name="GoogleRefreshToken" serializeAs="String">
<value />
</setting>
<setting name="DefaultLatitude" serializeAs="String">
<value>52.379189</value>
</setting>
<setting name="DefaultLongitude" serializeAs="String">
<value>4.899431</value>
</setting>
</PokemonGo.RocketAPI.Console.UserSettings>
</userSettings>
</configuration>
wie gebe ich den refresh tokn bei google ein? weil dort kein
<value>pw</value> ist oder soll ich das selber machen?
kann jemand ein bsp posten danke.
|
|
|
07/21/2016, 19:42
|
#679
|
elite*gold: 74
Join Date: Oct 2008
Posts: 619
Received Thanks: 288
|
</value> steht da schon, also ein <value> davor und dazwischen den Token.
XML Parst immer die Werte gleich, zwischen <setting> und </setting> steht halt <value></value> Immer Variablen Name auf und zu, blöd gesagt.
[EDIT]
Ok, das value stand schon falsch da, unter aber so wie es eig sein sollte, so denke ich:
Code:
<PokemonGo.RocketAPI.Console.UserSettings>
<setting name="AuthType" serializeAs="String">
<value>Google</value>
</setting>
<setting name="PtcUsername" serializeAs="String">
<value>username</value>
</setting>
<setting name="PtcPassword" serializeAs="String">
<value>pw</value>
</setting>
<setting name="GoogleRefreshToken" serializeAs="String">
<value>AUTHCODE</value>
</setting>
<setting name="DefaultLatitude" serializeAs="String">
<value>52.379189</value>
</setting>
<setting name="DefaultLongitude" serializeAs="String">
<value>4.899431</value>
</setting>
</PokemonGo.RocketAPI.Console.UserSettings>
</userSettings>
</configuration>
|
|
|
07/21/2016, 19:42
|
#680
|
elite*gold: 261
Join Date: Nov 2012
Posts: 1,224
Received Thanks: 109
|
Ein neuer Thread/überarbeiteter main post mit einer final version wäre nicht schlecht
|
|
|
07/21/2016, 19:48
|
#681
|
elite*gold: 1792
Join Date: Aug 2010
Posts: 3,665
Received Thanks: 512
|
Quote:
Originally Posted by Cr4nkSt4r
</value> steht da schon, also ein <value> davor und dazwischen den Token.
XML Parst immer die Werte gleich, zwischen <setting> und </setting> steht halt <value></value> Immer Variablen Name auf und zu, blöd gesagt.
[EDIT]
Ok, das value stand schon falsch da, unter aber so wie es eig sein sollte, so denke ich:
Code:
<PokemonGo.RocketAPI.Console.UserSettings>
<setting name="AuthType" serializeAs="String">
<value>Google</value>
</setting>
<setting name="PtcUsername" serializeAs="String">
<value>username</value>
</setting>
<setting name="PtcPassword" serializeAs="String">
<value>pw</value>
</setting>
<setting name="GoogleRefreshToken" serializeAs="String">
<value>AUTHCODE</value>
</setting>
<setting name="DefaultLatitude" serializeAs="String">
<value>52.379189</value>
</setting>
<setting name="DefaultLongitude" serializeAs="String">
<value>4.899431</value>
</setting>
</PokemonGo.RocketAPI.Console.UserSettings>
</userSettings>
</configuration>
|
Wenn ihr das nicht versteht, dann muss ich mal hier ein Geschäft eröffnen würde durch euch hier noch reich werden, echt.
|
|
|
07/21/2016, 19:52
|
#682
|
elite*gold: 74
Join Date: Oct 2008
Posts: 619
Received Thanks: 288
|
Quote:
Originally Posted by ShapyShape
Wenn ihr das nicht versteht, dann muss ich mal hier ein Geschäft eröffnen würde durch euch hier noch reich werden, echt. 
|
Ui, Mister Klugscheißer, erkläre mir bitte was ich nicht weis?
|
|
|
07/21/2016, 19:54
|
#683
|
elite*gold: 1
Join Date: Mar 2015
Posts: 1,112
Received Thanks: 43
|
Weil seit 40min will der keinen refresh vom device.
|
|
|
07/21/2016, 19:58
|
#684
|
elite*gold: 1792
Join Date: Aug 2010
Posts: 3,665
Received Thanks: 512
|
Quote:
Originally Posted by Cr4nkSt4r
Ui, Mister Klugscheißer, erkläre mir bitte was ich nicht weis? 
|
O.o ich meinte das doch gut für dich.. ^^
Sorry das man das anders verstanden hat ..
Hier ist mal für die "Ahnungslosen" ein Code - Wo beschrieben wurde wo Ihr euren Daten einschreiben müsst
UserSettings.Designer.cs (unter Ordner)
♦ UserSettings (doppelklick)
Dann erscheint da ein Feld voller Codes. - Hier ist das beschriebene code:
Code:
namespace PokemonGo.RocketAPI.Console {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")]
internal sealed partial class UserSettings : global::System.Configuration.ApplicationSettingsBase {
private static UserSettings defaultInstance = ((UserSettings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new UserSettings())));
public static UserSettings Default {
get {
return defaultInstance;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Hier kommt dein Googlemail addresse rein")]
public string AuthType {
get {
return ((string)(this["AuthType"]));
}
set {
this["AuthType"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("username")]
public string PtcUsername {
get {
return ((string)(this["PtcUsername"]));
}
set {
this["PtcUsername"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("pw")]
public string PtcPassword {
get {
return ((string)(this["PtcPassword"]));
}
set {
this["PtcPassword"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string GoogleRefreshToken {
get {
return ((string)(this["GoogleRefreshToken"]));
}
set {
this["Hier kommt die 8 Stellige Code eingabe von Google Device"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Hier kommt eure Breite von ort ")]
public double DefaultLatitude {
get {
return ((double)(this["DefaultLatitude"]));
}
set {
this["DefaultLatitude"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Hier kommt die Länge")]
public double DefaultLongitude {
get {
return ((double)(this["DefaultLongitude"]));
}
set {
this["DefaultLongitude"] = value;
}
}
}
}
Jetzt einfach suchen wo was steht, euren account eingeben und Fertig  - Schon funktioniert bei euch Entwickeln, Farmen, Hyperball benutzen etc.
Wenn es euch geholfen Thanks und wenn Ihr das mit Copy&Paste methode leichter findet erstelle ich euch einen Externen Thread
Grüße
|
|
|
07/21/2016, 19:59
|
#685
|
elite*gold: 26
Join Date: Feb 2011
Posts: 3,967
Received Thanks: 374
|
Wie fix man das got away?
|
|
|
07/21/2016, 20:00
|
#686
|
elite*gold: 0
Join Date: Apr 2005
Posts: 5
Received Thanks: 0
|
Quote:
Originally Posted by FITH
Alles falsch gemacht!
Code:
<?xml version="1.0" encoding="utf-16"?>
<UserSettingsXml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<AuthType>Google</AuthType> <!-- Google or Ptc -->
<DefaultLatitude>HIER EINTRAGEN</DefaultLatitude> <!-- Change this to your Latitude -->
<DefaultLongitude>HIER EINTRAGEN</DefaultLongitude> <!-- Change this to your Longitude -->
<GoogleRefreshToken>HIER EINTRAGEN</GoogleRefreshToken> <!-- When starting the Program you will get your token to fill in. -->
<PtcPassword>pw</PtcPassword> <!-- IF you are using PTC fill in your password -->
<PtcUsername>username</PtcUsername> <!-- IF you are using PTC fill in your username -->
<EvolveAllGivenPokemons>true</EvolveAllGivenPokemons> <!-- Do you want to evolve all of your pokemon? Change to true -->
<TransferType>leaveStrongest</TransferType> <!-- Transfertypes are as follows: leaveStrongest, all, duplicate, cp leave at none to keep all pokemon caught. -->
<TransferCPThreshold>0</TransferCPThreshold> <!-- IF you are using the Transfertype cp then this will be the maximum cp to transfer -->
</UserSettingsXml>
so muss das aussehen
|
Hallo,
kannst du mir bitte sagen wo die XML Datei liegt? Alle versionen die ich mir angeschaut habe enthalten keine XML-Datei mit dem Namen "UserSettingsXml".
Bitte Ordnerstrucktur und dateinamen genau angeben. Ich habe das Gefühl es gibt 10 Versionen die alle irgendwie anders aufgebaut sind
Grüße!
|
|
|
07/21/2016, 20:01
|
#687
|
elite*gold: 81
Join Date: Apr 2010
Posts: 1,173
Received Thanks: 243
|
using System.Configuration;
using PokemonGo.RocketAPI.Enums;
using PokemonGo.RocketAPI.GeneratedCode;
using System;
using System.Globalization;
using System.Runtime.CompilerServices;
namespace PokemonGo.RocketAPI.Console
{
public class Settings : ISettings
{
public AuthType AuthType => (AuthType)Enum.Parse(typeof(AuthType), GetSetting());
public string PtcUsername => GetSetting() != string.Empty ? GetSetting() : "T******";
public string PtcPassword => GetSetting() != string.Empty? GetSetting() : "k***";
public double DefaultLatitude => GetSetting() != string.Empty ? double.Parse(GetSetting(), CultureInfo.InvariantCulture) : 45.030152; //Default Amsterdam Central Station
public double DefaultLongitude => GetSetting() != string.Empty ? double.Parse(GetSetting(),CultureInfo.InvariantCul ture) : -93.31931;//Default Amsterdam Central Station
public string GoogleRefreshToken
{
get { return GetSetting() != string.Empty ? GetSetting() : string.Empty; }
set { SetSetting(value); }
}
private string GetSetting([CallerMemberName]string key = null)
{
return ConfigurationManager.AppSettings[key];
}
private void SetSetting(string value, [CallerMemberName]string key = null)
{
var configFile = ConfigurationManager.OpenExeConfiguration(Configur ationUserLevel.None);
if (key != null) configFile.AppSettings.Settings[key].Value = value;
configFile.Save();
Ich hab mir jetzt 30 Seiten durchgelesen, doch ich weiß immernoch nicht wo ich dort jetzt PTC eintragen muss, da dort weder Google noch ähnliches steht. ?
|
|
|
07/21/2016, 20:04
|
#688
|
elite*gold: 0
Join Date: Apr 2006
Posts: 11
Received Thanks: 6
|
Die neuste Version vom Entwickler
Benutzt alle Bälle
ist bereits Compiled
|
|
|
07/21/2016, 20:06
|
#689
|
elite*gold: 0
Join Date: Apr 2005
Posts: 5
Received Thanks: 0
|
Quote:
Originally Posted by TeeH
using System.Configuration;
using PokemonGo.RocketAPI.Enums;
using PokemonGo.RocketAPI.GeneratedCode;
using System;
using System.Globalization;
using System.Runtime.CompilerServices;
namespace PokemonGo.RocketAPI.Console
{
public class Settings : ISettings
{
public AuthType AuthType => (AuthType)Enum.Parse(typeof(AuthType), GetSetting());
public string PtcUsername => GetSetting() != string.Empty ? GetSetting() : "T******";
public string PtcPassword => GetSetting() != string.Empty? GetSetting() : "k***";
public double DefaultLatitude => GetSetting() != string.Empty ? double.Parse(GetSetting(), CultureInfo.InvariantCulture) : 45.030152; //Default Amsterdam Central Station
public double DefaultLongitude => GetSetting() != string.Empty ? double.Parse(GetSetting(),CultureInfo.InvariantCul ture) : -93.31931;//Default Amsterdam Central Station
public string GoogleRefreshToken
{
get { return GetSetting() != string.Empty ? GetSetting() : string.Empty; }
set { SetSetting(value); }
}
private string GetSetting([CallerMemberName]string key = null)
{
return ConfigurationManager.AppSettings[key];
}
private void SetSetting(string value, [CallerMemberName]string key = null)
{
var configFile = ConfigurationManager.OpenExeConfiguration(Configur ationUserLevel.None);
if (key != null) configFile.AppSettings.Settings[key].Value = value;
configFile.Save();
Ich hab mir jetzt 30 Seiten durchgelesen, doch ich weiß immernoch nicht wo ich dort jetzt PTC eintragen muss, da dort weder Google noch ähnliches steht. ?
|
Hallo,
wenn du die version von der ersten seite hast !! und in Vusial Studio bist gibt es unter der Projectmappe --> PokemonGo.RocketAPI.Console---> USERSETTINGS.SETTINGS..... hier oben "ptc" reinschreiben login/pass usw.
|
|
|
07/21/2016, 20:07
|
#690
|
elite*gold: 1792
Join Date: Aug 2010
Posts: 3,665
Received Thanks: 512
|
Sieht dann so aus
|
|
|
All times are GMT +1. The time now is 12:42.
|
|