Advertisement
Guest User

Config

a guest
Aug 8th, 2016
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
  5. </configSections>
  6. <appSettings>
  7. <!--Account type can be 'Google' or 'Ptc'-->
  8. <add key="AccountType" value="Google" />
  9.  
  10. <!--YOU NEED TO UPDATE THESE COORDS, PLEASE FIND A GOOD LOCATION AND SAVE THEM-->
  11. <add key="DefaultLatitude" value="43.654548" />
  12. <add key="DefaultLongitude" value="-79.369624" />
  13. <add key="DefaultAltitude" value="10" />
  14.  
  15. <!--Only needed if you chose Google as your account type-->
  16. <add key="GoogleEmail" value="GMAIL" />
  17. <add key="GooglePassword" value="PW" />
  18. <!--Only needed if you chose Ptc as your account type-->
  19. <add key="PtcUsername" value="ptcusername" />
  20. <add key="PtcPassword" value="ptcpassword" />
  21.  
  22. <!--Logic settings-->
  23. <add key="KeepMinIvPercentage" value="95" />
  24. <add key="KeepMinCp" value="1200" />
  25. <add key="WalkingSpeedInKilometerPerHour" value="180" />
  26. <add key="KeepPokemonsThatCanEvolve" value="false" />
  27. <add key="TransferDuplicatePokemon" value="true" />
  28. <add key="UsePokemonToNotCatchFilter" value="false" />
  29. <add key="KeepMinDuplicatePokemon" value="1" />
  30. <add key="PrioritizeIvOverCp" value="true" />
  31.  
  32. <add key="UseLuckyEggs" value="false" />
  33. <add key="UseBurstMode" value="true" />
  34. <add key="EvolveAll" value="false" />
  35.  
  36. <!--Will ONLY evolve pokemon above your IV threshold-->
  37. <!--Unsupported at the moment-->
  38. <!--<add key="EvolveAllPokemonAboveIv" value="false" />
  39. <add key="EvolveAboveIvValue" value="95" />-->
  40.  
  41. <add key="TeleportInsteadOfWalking" value="true" />
  42.  
  43. <!--Untested. Use at own risk-->
  44. <add key="UseGpxPathing" value="false" />
  45. <add key="GpxFile" value="gpx.test" />
  46. </appSettings>
  47. <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  48.  
  49. <targets>
  50. <target name="logfile" xsi:type="File" fileName="file.txt" />
  51. <target name="console" xsi:type="ColoredConsole" layout="${date:format=yyyy-MM-dd HH\:mm\:ss} ${message}" useDefaultRowHighlightingRules="true" />
  52. </targets>
  53.  
  54. <rules>
  55. <logger name="*" minlevel="Trace" writeTo="logfile" />
  56. <logger name="*" minlevel="Info" writeTo="console" />
  57. </rules>
  58. </nlog>
  59. <startup>
  60. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
  61. </startup>
  62. <runtime>
  63. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  64. <dependentAssembly>
  65. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  66. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  67. </dependentAssembly>
  68. <dependentAssembly>
  69. <assemblyIdentity name="C5" publicKeyToken="282361b99ded7e8e" culture="neutral" />
  70. <bindingRedirect oldVersion="0.0.0.0-2.4.5947.17248" newVersion="2.4.5947.17248" />
  71. </dependentAssembly>
  72. </assemblyBinding>
  73. </runtime>
  74. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement