Guest User

Untitled

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