Advertisement
Guest User

Untitled

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