Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 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="Ptc" />
  9. <add key="DefaultLatitude" value="35,672963" />
  10. <add key="DefaultLongitude" value="139,698338" />
  11.  
  12. <add key="DefaultAltitude" value="10" />
  13.  
  14. <!--Only needed if you chose Google as your account type-->
  15. <add key="GoogleEmail" value="google@gmail.com" />
  16. <add key="GooglePassword" value="googlepassword" />
  17. <!--Only needed if you chose Ptc as your account type-->
  18. <add key="PtcUsername" value="YourPTCUsername" />
  19. <add key="PtcPassword" value="YourPtcPassword" />
  20.  
  21. <!--Logic settings-->
  22. <add key="KeepMinIvPercentage" value="95" />
  23. <add key="KeepMinCp" value="1800" />
  24. <add key="WalkingSpeedInKilometerPerHour" value="180" />
  25. <add key="KeepPokemonsThatCanEvolve" value="false" />
  26. <add key="TransferDuplicatePokemon" value="true" />
  27. <add key="UsePokemonToNotCatchFilter" value="false" />
  28. <add key="KeepMinDuplicatePokemon" value="1" />
  29. <add key="PrioritizeIvOverCp" value="true" />
  30.  
  31. <add key="UseLuckyEggs" value="false" />
  32. <add key="UseBurstMode" value ="true" />
  33. <add key="EvolveAll" value="true" />
  34.  
  35. <!--Will ONLY evolve pokemon above your IV threshold-->
  36. <!--Unsupported at the moment-->
  37. <!--<add key="EvolveAllPokemonAboveIv" value="false" />
  38. <add key="EvolveAboveIvValue" value="95" />-->
  39.  
  40. <add key="TeleportInsteadOfWalking" value="true" />
  41.  
  42. <!--Untested. Use at own risk-->
  43. <add key="UseGpxPathing" value="false" />
  44. <add key="GpxFile" value="gpx.test" />
  45. </appSettings>
  46. <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  47.  
  48. <targets>
  49. <target name="logfile" xsi:type="File" fileName="file.txt" />
  50. <target name="console" xsi:type="ColoredConsole" layout="${date:format=yyyy-MM-dd HH\:mm\:ss} ${message}" useDefaultRowHighlightingRules="true" />
  51. </targets>
  52.  
  53. <rules>
  54. <logger name="*" minlevel="Trace" writeTo="logfile" />
  55. <logger name="*" minlevel="Info" writeTo="console" />
  56. </rules>
  57. </nlog>
  58. <startup>
  59. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
  60. </startup>
  61. <runtime>
  62. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  63. <dependentAssembly>
  64. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  65. <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  66. </dependentAssembly>
  67. </assemblyBinding>
  68. </runtime>
  69. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement