Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. public bool AutoUpdate = true;
  2. public double DefaultAltitude = 10;
  3. public double DefaultLatitude = 40.785091;
  4. public double DefaultLongitude = -73.968285;
  5. public int DelayBetweenPokemonCatch = 2000;
  6. public int DelayBetweenPlayerActions = 5000;
  7. public float EvolveAboveIvValue = 90;
  8. public bool EvolveAllPokemonAboveIv = false;
  9. public bool EvolveAllPokemonWithEnoughCandy = true;
  10. public int UseLuckyEggsMinPokemonAmount = 30;
  11. public bool UseLuckyEggsWhileEvolving = false;
  12. public bool UseEggIncubators = true;
  13. public bool DumpPokemonStats = false;
  14. public string GpxFile = "GPXPath.GPX";
  15. public bool UseGpxPathing = false;
  16. public double WalkingSpeedInKilometerPerHour = 15.0;
  17. public int MaxTravelDistanceInMeters = 1000;
  18. public int KeepMinCp = 1250;
  19. public int KeepMinDuplicatePokemon = 1;
  20. public float KeepMinIvPercentage = 95;
  21. public bool KeepPokemonsThatCanEvolve = false;
  22. public bool PrioritizeIvOverCp = true;
  23. public bool RenameAboveIv = true;
  24. public string RenameTemplate = "{0}_{1}";
  25. public bool TransferDuplicatePokemon = true;
  26. public string TranslationLanguageCode = "en";
  27. public bool UsePokemonToNotCatchFilter = false;
  28. public int WebSocketPort = 14251;
  29. public bool StartupWelcomeDelay = true;
  30. public bool SnipeAtPokestops = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement