Guest User

Untitled

a guest
Jul 26th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 KB | None | 0 0
  1. # PTC/Google login credentials
  2. username=
  3.  
  4. # Choose plaintext or base64'd password
  5. password=
  6. base64_password=
  7.  
  8. # Token to login directly
  9. token=
  10.  
  11. # UTD
  12. latitude=32.987085
  13. longitude=-96.7482939
  14.  
  15. # desired probability to catch Pokemon with 1 throw
  16. desired_catch_probability=0.4
  17.  
  18. # desired probability to catch unwanted Pokemon (obligatory_transfer; low IV; low CP)
  19. # set to -1 to not attempt catching at all
  20. desired_catch_probability_unwanted=0.2
  21.  
  22. # number of nearest unused pokestops to randomly select
  23. # the next pokestop from (1/infinite)
  24. random_next_pokestop_selection=5
  25.  
  26. ## Walking
  27. # Meters per second
  28. speed=2.778
  29.  
  30. # Should the bot loot the pokestops (true/false)
  31. loot_pokestop=true
  32.  
  33. # Should the bot catch pokemons (true/false)
  34. catch_pokemon=true
  35.  
  36. # Shout the bot auto fill incubators with eggs (true/false)
  37. auto_fill_incubator=true
  38.  
  39. ## Items drop
  40. # should the bot EVER drop items (true/false)
  41. drop_items=true
  42.  
  43. # max number of each item that the bot should keep if "drop_items" is enabled
  44. # use -1 in a item to never drop this specific item
  45. item_revive=21
  46. item_max_revive=-1
  47. item_potion=0
  48. item_super_potion=0
  49. item_hyper_potion=42
  50. item_max_potion=-1
  51. item_poke_ball=42
  52. item_great_ball=42
  53. item_ultra_ball=-1
  54. item_master_ball=-1
  55. item_razz_berry=-1
  56.  
  57. ## Extra Info
  58. # should the bot display rewards pokestop (true/false)
  59. display_pokestop_rewards=true
  60.  
  61. # should the bot display rewards when catching pokemon (true/false)
  62. display_pokemon_catch_rewards=true
  63.  
  64. # Display Keepalive Coordinates
  65. display_keepalive=true
  66.  
  67. # should the bot display information of where it's walking to (true/false)
  68. # this will show the name of the pokestop that it's walking to and
  69. # replace on the loot log the pokestop id for its name
  70. # WARNING: this will increase the https requests without any need. if
  71. # the servers are slow it's recommended to turn off this setting
  72. display_pokestop_name=true
  73.  
  74. ## Pokemon Transfer
  75. # should the bot auto transfer duplicate pokemon
  76. autotransfer=true
  77.  
  78. # minimum amount of pokemon type to keep
  79. keep_pokemon_amount=2
  80.  
  81. # Sort by IV first instead of CP
  82. sort_by_iv=true
  83.  
  84. # Always throw curveballs
  85. always_curve=false
  86.  
  87. # Never use berries
  88. never_use_berries=true
  89.  
  90. # Minimum IV percentage to keep a pokemon (to ignore IV: use -1)
  91. # between 0 and 100, suggested 80
  92. transfer_iv_threshold=-1
  93.  
  94. # Minimum CP to keep a pokemon (to ignore CP: use -1)
  95. transfer_cp_threshold=-1
  96.  
  97. # list of pokemon you don't want to transfer regardless of CP
  98. # the names must be divided by a ","
  99. # if you want all pokemons to be transferred just leave it blank
  100. ignored_pokemon=MISSINGNO,MEWTWO,MEW
  101.  
  102. # list of pokemon you always want to trancsfer regardless of CP
  103. obligatory_transfer=
  104.  
  105. #List of pokemon names
  106. #MISSINGNO
  107. #BULBASAUR
  108. #IVYSAUR
  109. #VENUSAUR
  110. #CHARMANDER
  111. #CHARMELEON
  112. #CHARIZARD
  113. #SQUIRTLE
  114. #WARTORTLE
  115. #BLASTOISE
  116. #CATERPIE
  117. #METAPOD
  118. #BUTTERFREE
  119. #WEEDLE
  120. #KAKUNA
  121. #BEEDRILL
  122. #PIDGEY
  123. #PIDGEOTTO
  124. #PIDGEOT
  125. #RATTATA
  126. #RATICATE
  127. #SPEAROW
  128. #FEAROW
  129. #EKANS
  130. #ARBOK
  131. #PIKACHU
  132. #RAICHU
  133. #SANDSHREW
  134. #SANDSLASH
  135. #NIDORAN_FEMALE
  136. #NIDORINA
  137. #NIDOQUEEN
  138. #NIDORAN_MALE
  139. #NIDORINO
  140. #NIDOKING
  141. #CLEFAIRY
  142. #CLEFABLE
  143. #VULPIX
  144. #NINETALES
  145. #JIGGLYPUFF
  146. #WIGGLYTUFF
  147. #ZUBAT
  148. #GOLBAT
  149. #ODDISH
  150. #GLOOM
  151. #VILEPLUME
  152. #PARAS
  153. #PARASECT
  154. #VENONAT
  155. #VENOMOTH
  156. #DIGLETT
  157. #DUGTRIO
  158. #MEOWTH
  159. #PERSIAN
  160. #PSYDUCK
  161. #GOLDUCK
  162. #MANKEY
  163. #PRIMEAPE
  164. #GROWLITHE
  165. #ARCANINE
  166. #POLIWAG
  167. #POLIWHIRL
  168. #POLIWRATH
  169. #ABRA
  170. #KADABRA
  171. #ALAKAZAM
  172. #MACHOP
  173. #MACHOKE
  174. #MACHAMP
  175. #BELLSPROUT
  176. #WEEPINBELL
  177. #VICTREEBEL
  178. #TENTACOOL
  179. #TENTACRUEL
  180. #GEODUDE
  181. #GRAVELER
  182. #GOLEM
  183. #PONYTA
  184. #RAPIDASH
  185. #SLOWPOKE
  186. #SLOWBRO
  187. #MAGNEMITE
  188. #MAGNETON
  189. #FARFETCHD
  190. #DODUO
  191. #DODRIO
  192. #SEEL
  193. #DEWGONG
  194. #GRIMER
  195. #MUK
  196. #SHELLDER
  197. #CLOYSTER
  198. #GASTLY
  199. #HAUNTER
  200. #GENGAR
  201. #ONIX
  202. #DROWZEE
  203. #HYPNO
  204. #KRABBY
  205. #KINGLER
  206. #VOLTORB
  207. #ELECTRODE
  208. #EXEGGCUTE
  209. #EXEGGUTOR
  210. #CUBONE
  211. #MAROWAK
  212. #HITMONLEE
  213. #HITMONCHAN
  214. #LICKITUNG
  215. #KOFFING
  216. #WEEZING
  217. #RHYHORN
  218. #RHYDON
  219. #CHANSEY
  220. #TANGELA
  221. #KANGASKHAN
  222. #HORSEA
  223. #SEADRA
  224. #GOLDEEN
  225. #SEAKING
  226. #STARYU
  227. #STARMIE
  228. #MR_MIME
  229. #SCYTHER
  230. #JYNX
  231. #ELECTABUZZ
  232. #MAGMAR
  233. #PINSIR
  234. #TAUROS
  235. #MAGIKARP
  236. #GYARADOS
  237. #LAPRAS
  238. #DITTO
  239. #EEVEE
  240. #VAPOREON
  241. #JOLTEON
  242. #FLAREON
  243. #PORYGON
  244. #OMANYTE
  245. #OMASTAR
  246. #KABUTO
  247. #KABUTOPS
  248. #AERODACTYL
  249. #SNORLAX
  250. #ARTICUNO
  251. #ZAPDOS
  252. #MOLTRES
  253. #DRATINI
  254. #DRAGONAIR
  255. #DRAGONITE
  256. #MEWTWO
  257. #MEW
Add Comment
Please, Sign In to add comment