Advertisement
Freakeh

Haxton Config [High XP]

Aug 7th, 2016
4,651
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.19 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.  
  10.     <!--YOU NEED TO UPDATE THESE COORDS, PLEASE FIND A GOOD LOCATION AND SAVE THEM-->
  11.     <add key="DefaultLatitude" value="35.633511709084274" />
  12.     <add key="DefaultLongitude" value="139.87992525100708" />
  13.     <add key="DefaultAltitude" value="10" />
  14.  
  15.     <!--Only needed if you chose Google as your account type-->
  16.     <add key="GoogleEmail" value="google@gmail.com" />
  17.     <add key="GooglePassword" value="hunter2" />
  18.     <!--Only needed if you chose Ptc as your account type-->
  19.     <add key="PtcUsername" value="xxxx" />
  20.     <add key="PtcPassword" value="xxxx" />
  21.  
  22.     <!--Logic settings-->
  23.     <add key="KeepMinIvPercentage" value="98" />
  24.     <add key="KeepMinCp" value="1900" />
  25.     <add key="WalkingSpeedInKilometerPerHour" value="150" />
  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.     <!--If value is empty, no proxy will be used-->
  33.     <!--HTTP Proxys only. No Sock4/5-->
  34.     <add key="Proxy" value ="" />
  35.  
  36.     <add key="UseLuckyEggs" value="true" />
  37.     <add key="UseBurstMode" value="true" />
  38.     <add key="EvolveAll" value="true" />
  39.  
  40.     <!--Will ONLY evolve pokemon above your IV threshold-->
  41.     <!--Unsupported at the moment-->
  42.     <!--<add key="EvolveAllPokemonAboveIv" value="false" />
  43.    <add key="EvolveAboveIvValue" value="95" />-->
  44.  
  45.     <add key="TeleportInsteadOfWalking" value="true" />
  46.  
  47.     <!--Untested. Use at own risk-->
  48.     <add key="UseGpxPathing" value="false" />
  49.     <add key="GpxFile" value="gpx.test" />
  50.   </appSettings>
  51.   <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  52.  
  53.     <targets>
  54.       <target name="logfile" xsi:type="File" fileName="file.txt" />
  55.       <target name="console" xsi:type="ColoredConsole" layout="${date:format=yyyy-MM-dd HH\:mm\:ss} ${message}" useDefaultRowHighlightingRules="true" />
  56.     </targets>
  57.  
  58.     <rules>
  59.       <logger name="*" minlevel="Trace" writeTo="logfile" />
  60.       <logger name="*" minlevel="Info" writeTo="console" />
  61.     </rules>
  62.   </nlog>
  63.   <startup>
  64.     <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
  65.   </startup>
  66.   <runtime>
  67.     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  68.       <dependentAssembly>
  69.         <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  70.         <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
  71.       </dependentAssembly>
  72.       <dependentAssembly>
  73.         <assemblyIdentity name="C5" publicKeyToken="282361b99ded7e8e" culture="neutral" />
  74.         <bindingRedirect oldVersion="0.0.0.0-2.4.5947.17248" newVersion="2.4.5947.17248" />
  75.       </dependentAssembly>
  76.     </assemblyBinding>
  77.   </runtime>
  78. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement