Guest User

Untitled

a guest
Jul 30th, 2016
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.78 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.4
  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=0.0
  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=2.18
  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=false
  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=true
  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=1
  78.  
  79. # maximum amount of pokemon type to keep (-1 to keep all)
  80. max_pokemon_amount=-1
  81.  
  82. # Sort by IV first instead of CP
  83. sort_by_iv=true
  84.  
  85. # Always throw curveballs
  86. always_curve=false
  87.  
  88. # Never use berries
  89. never_use_berries=false
  90.  
  91. # Allow leaving the starting area
  92. allow_leave_start_area=true
  93.  
  94. # Max distance from starting point the bot should ever go in meters
  95. # (-1: only limited by the initial pokestops (~3*3km); with allow_leave_start_area=true unlimited)
  96. spawn_radius=1500
  97.  
  98. # Set Profile Update Timer (Default: 60)
  99. profile_update_timer=60
  100.  
  101. # Minimum IV percentage to keep a pokemon (to ignore IV: use -1)
  102. # between 0 and 100, suggested 80
  103. transfer_iv_threshold=80
  104.  
  105. # Minimum CP to keep a pokemon (to ignore CP: use -1)
  106. transfer_cp_threshold=900
  107.  
  108. # list of pokemon you don't want to transfer regardless of CP
  109. # the names must be divided by a ","
  110. # if you want all pokemons to be transferred just leave it blank
  111. ignored_pokemon=
  112.  
  113. # list of pokemon you always want to transfer regardless of CP
  114. obligatory_transfer=
  115.  
  116. # port where the webserver (gui) should listen, 0 = do not listen
  117. gui_port=9090
  118. # port where the socketserver should listen, 0 = do not listen
  119. gui_port_socket=9091
  120.  
  121. #List of pokemon names
  122. #MISSINGNO
  123. #BULBASAUR
  124. #IVYSAUR
  125. #VENUSAUR
  126. #CHARMANDER
  127. #CHARMELEON
  128. #CHARIZARD
  129. #SQUIRTLE
  130. #WARTORTLE
  131. #BLASTOISE
  132. #CATERPIE
  133. #METAPOD
  134. #BUTTERFREE
  135. #WEEDLE
  136. #KAKUNA
  137. #BEEDRILL
  138. #PIDGEY
  139. #PIDGEOTTO
  140. #PIDGEOT
  141. #RATTATA
  142. #RATICATE
  143. #SPEAROW
  144. #FEAROW
  145. #EKANS
  146. #ARBOK
  147. #PIKACHU
  148. #RAICHU
  149. #SANDSHREW
  150. #SANDSLASH
  151. #NIDORAN_FEMALE
  152. #NIDORINA
  153. #NIDOQUEEN
  154. #NIDORAN_MALE
  155. #NIDORINO
  156. #NIDOKING
  157. #CLEFAIRY
  158. #CLEFABLE
  159. #VULPIX
  160. #NINETALES
  161. #JIGGLYPUFF
  162. #WIGGLYTUFF
  163. #ZUBAT
  164. #GOLBAT
  165. #ODDISH
  166. #GLOOM
  167. #VILEPLUME
  168. #PARAS
  169. #PARASECT
  170. #VENONAT
  171. #VENOMOTH
  172. #DIGLETT
  173. #DUGTRIO
  174. #MEOWTH
  175. #PERSIAN
  176. #PSYDUCK
  177. #GOLDUCK
  178. #MANKEY
  179. #PRIMEAPE
  180. #GROWLITHE
  181. #ARCANINE
  182. #POLIWAG
  183. #POLIWHIRL
  184. #POLIWRATH
  185. #ABRA
  186. #KADABRA
  187. #ALAKAZAM
  188. #MACHOP
  189. #MACHOKE
  190. #MACHAMP
  191. #BELLSPROUT
  192. #WEEPINBELL
  193. #VICTREEBEL
  194. #TENTACOOL
  195. #TENTACRUEL
  196. #GEODUDE
  197. #GRAVELER
  198. #GOLEM
  199. #PONYTA
  200. #RAPIDASH
  201. #SLOWPOKE
  202. #SLOWBRO
  203. #MAGNEMITE
  204. #MAGNETON
  205. #FARFETCHD
  206. #DODUO
  207. #DODRIO
  208. #SEEL
  209. #DEWGONG
  210. #GRIMER
  211. #MUK
  212. #SHELLDER
  213. #CLOYSTER
  214. #GASTLY
  215. #HAUNTER
  216. #GENGAR
  217. #ONIX
  218. #DROWZEE
  219. #HYPNO
  220. #KRABBY
  221. #KINGLER
  222. #VOLTORB
  223. #ELECTRODE
  224. #EXEGGCUTE
  225. #EXEGGUTOR
  226. #CUBONE
  227. #MAROWAK
  228. #HITMONLEE
  229. #HITMONCHAN
  230. #LICKITUNG
  231. #KOFFING
  232. #WEEZING
  233. #RHYHORN
  234. #RHYDON
  235. #CHANSEY
  236. #TANGELA
  237. #KANGASKHAN
  238. #HORSEA
  239. #SEADRA
  240. #GOLDEEN
  241. #SEAKING
  242. #STARYU
  243. #STARMIE
  244. #MR_MIME
  245. #SCYTHER
  246. #JYNX
  247. #ELECTABUZZ
  248. #MAGMAR
  249. #PINSIR
  250. #TAUROS
  251. #MAGIKARP
  252. #GYARADOS
  253. #LAPRAS
  254. #DITTO
  255. #EEVEE
  256. #VAPOREON
  257. #JOLTEON
  258. #FLAREON
  259. #PORYGON
  260. #OMANYTE
  261. #OMASTAR
  262. #KABUTO
  263. #KABUTOPS
  264. #AERODACTYL
  265. #SNORLAX
  266. #ARTICUNO
  267. #ZAPDOS
  268. #MOLTRES
  269. #DRATINI
  270. #DRAGONAIR
  271. #DRAGONITE
  272. #MEWTWO
  273. #MEW
Add Comment
Please, Sign In to add comment