Guest User

Untitled

a guest
Aug 11th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.33 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=35.633511709084274
  11. longitude=139.87992525100708
  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. # Should the bot camp around lured x pokestops (-1 = off; 1 = one needs to be in range; 2 = two..., etc)
  25. camp_lure_pokestop=-1
  26.  
  27. ## Walking
  28. # Meters per second
  29. speed=15
  30.  
  31. # Should the bot follow the streets (true) or just go directly to pokestops/waypoints
  32. follow_streets=false
  33.  
  34. # Should the bot loot the pokestops (true/false)
  35. loot_pokestop=true
  36.  
  37. # Should the bot catch pokemons (true/false)
  38. catch_pokemon=true
  39.  
  40. # Should the bot auto fill incubators with eggs (true/false)
  41. auto_fill_incubator=true
  42.  
  43. ## Items drop
  44. # Should the bot EVER drop items (true/false)
  45. drop_items=true
  46.  
  47. # Max number of each item that the bot should keep if "drop_items" is enabled
  48. # Use -1 in an item to never drop this specific item
  49. # The default values add up to 350
  50. item_revive=30
  51. item_max_revive=10
  52. item_potion=0
  53. item_super_potion=0
  54. item_hyper_potion=0
  55. item_max_potion=25
  56. item_poke_ball=20
  57. item_great_ball=60
  58. item_ultra_ball=60
  59. item_master_ball=-1
  60. item_razz_berry=40
  61. item_lucky_egg=-1
  62. item_incense=-1
  63. item_lure_module=-1
  64.  
  65. # Groups the items that are kept by type so it keeps best of same type
  66. # Ex: if you have item_revive=20 and item_max_revive=10 and set this
  67. # to true, if you get 25 item_revive and 20 item_max_revive it will
  68. # drop 15 item_revive and keep 10 item_revive and 20 item_max_revive
  69. # Items that have -1 are excluded from groups
  70. # Ex: if you set item_potion=-1 it will only group the other potions and
  71. # ignore item_potion (never dropping item_potion)
  72. group_items_by_type=true
  73.  
  74. ## Extra Info
  75. # Should the bot display rewards pokestop (true/false)
  76. display_pokestop_rewards=true
  77.  
  78. # Should the bot display if it caught a pokemon from a lure (true/false)
  79. display_if_pokemon_from_lure=true
  80.  
  81. # Should the bot display rewards when catching pokemon (true/false)
  82. display_pokemon_catch_rewards=true
  83.  
  84. # Display keepalive coordinates
  85. display_keepalive=true
  86.  
  87. # Should the bot display information of where it's walking to (true/false)
  88. # This will show the name of the pokestop that it's walking to and
  89. # replace on the loot log the pokestop id for its name
  90. # WARNING: this will increase the https requests without any need. If
  91. # the servers are slow it's recommended to turn off this setting
  92. display_pokestop_name=true
  93.  
  94. ## Pokemon Transfer
  95. # Should the bot auto transfer duplicate pokemon
  96. autotransfer=true
  97.  
  98. # Minimum amount of pokemon type to keep
  99. keep_pokemon_amount=1
  100.  
  101. # Maximum amount of pokemon type to keep (-1 to keep all)
  102. max_pokemon_amount=5
  103.  
  104. # Sort by IV first instead of CP
  105. sort_by_iv=false
  106.  
  107. # Always throw curveballs
  108. always_curve=true
  109.  
  110. # Never use berries
  111. never_use_berries=false
  112.  
  113. # Allow leaving the starting area
  114. allow_leave_start_area=false
  115.  
  116. # Max distance from starting point the bot should ever go in meters
  117. # (-1: only limited by the initial pokestops (~3*3km); with allow_leave_start_area=true unlimited)
  118. spawn_radius=-1
  119.  
  120. # Number of times the pokestop should be spun to attempt softban bypass (0 to disable, 40 recommended value to work)
  121. ban_spin_count=40
  122.  
  123. # Set timer in seconds to go back to the starting pokestop (-1 disabled)
  124. timer_walk_to_start_pokestop=-1
  125.  
  126. # Set profile update timer (Default: 60)
  127. profile_update_timer=60
  128.  
  129. # Minimum IV percentage to keep a pokemon (to ignore IV: use -1)
  130. # between 0 and 100, suggested 80
  131. transfer_iv_threshold=90
  132.  
  133. # Minimum CP to keep a pokemon (to ignore CP: use -1)
  134. transfer_cp_threshold=1900
  135.  
  136. # List of pokemon you don't want to transfer regardless of CP
  137. # The names must be divided by a ","
  138. # If you want all pokemons to be transferred just leave it blank
  139. ignored_pokemon=
  140.  
  141. # List of pokemon you always want to transfer regardless of CP
  142. obligatory_transfer=
  143. # Port where the socketserver should listen, 0 = do not listen
  144. gui_port_socket=8001
  145.  
  146. # Export player/pokemondata on Profile Update. Options are:
  147. # *empty* Don't export (default)
  148. # CSV Correct USA/UK CSV format ("," as delimiter and "." as decimal separator)
  149. # DSV European CSV/DSV format (";" as delimiter and "," as decimal separator)
  150. # Use this one if your MS Excel can't handle the default CSV option
  151. export=
  152.  
  153. # Initial map size (S2 tiles) to fetch (max. 9: ~3*3km area)
  154. initial_map_size=9
  155.  
  156. # List of pokemon names
  157. #MISSINGNO
  158. #BULBASAUR
  159. #IVYSAUR
  160. #VENUSAUR
  161. #CHARMANDER
  162. #CHARMELEON
  163. #CHARIZARD
  164. #SQUIRTLE
  165. #WARTORTLE
  166. #BLASTOISE
  167. #CATERPIE
  168. #METAPOD
  169. #BUTTERFREE
  170. #WEEDLE
  171. #KAKUNA
  172. #BEEDRILL
  173. #PIDGEY
  174. #PIDGEOTTO
  175. #PIDGEOT
  176. #RATTATA
  177. #RATICATE
  178. #SPEAROW
  179. #FEAROW
  180. #EKANS
  181. #ARBOK
  182. #PIKACHU
  183. #RAICHU
  184. #SANDSHREW
  185. #SANDSLASH
  186. #NIDORAN_FEMALE
  187. #NIDORINA
  188. #NIDOQUEEN
  189. #NIDORAN_MALE
  190. #NIDORINO
  191. #NIDOKING
  192. #CLEFAIRY
  193. #CLEFABLE
  194. #VULPIX
  195. #NINETALES
  196. #JIGGLYPUFF
  197. #WIGGLYTUFF
  198. #ZUBAT
  199. #GOLBAT
  200. #ODDISH
  201. #GLOOM
  202. #VILEPLUME
  203. #PARAS
  204. #PARASECT
  205. #VENONAT
  206. #VENOMOTH
  207. #DIGLETT
  208. #DUGTRIO
  209. #MEOWTH
  210. #PERSIAN
  211. #PSYDUCK
  212. #GOLDUCK
  213. #MANKEY
  214. #PRIMEAPE
  215. #GROWLITHE
  216. #ARCANINE
  217. #POLIWAG
  218. #POLIWHIRL
  219. #POLIWRATH
  220. #ABRA
  221. #KADABRA
  222. #ALAKAZAM
  223. #MACHOP
  224. #MACHOKE
  225. #MACHAMP
  226. #BELLSPROUT
  227. #WEEPINBELL
  228. #VICTREEBEL
  229. #TENTACOOL
  230. #TENTACRUEL
  231. #GEODUDE
  232. #GRAVELER
  233. #GOLEM
  234. #PONYTA
  235. #RAPIDASH
  236. #SLOWPOKE
  237. #SLOWBRO
  238. #MAGNEMITE
  239. #MAGNETON
  240. #FARFETCHD
  241. #DODUO
  242. #DODRIO
  243. #SEEL
  244. #DEWGONG
  245. #GRIMER
  246. #MUK
  247. #SHELLDER
  248. #CLOYSTER
  249. #GASTLY
  250. #HAUNTER
  251. #GENGAR
  252. #ONIX
  253. #DROWZEE
  254. #HYPNO
  255. #KRABBY
  256. #KINGLER
  257. #VOLTORB
  258. #ELECTRODE
  259. #EXEGGCUTE
  260. #EXEGGUTOR
  261. #CUBONE
  262. #MAROWAK
  263. #HITMONLEE
  264. #HITMONCHAN
  265. #LICKITUNG
  266. #KOFFING
  267. #WEEZING
  268. #RHYHORN
  269. #RHYDON
  270. #CHANSEY
  271. #TANGELA
  272. #KANGASKHAN
  273. #HORSEA
  274. #SEADRA
  275. #GOLDEEN
  276. #SEAKING
  277. #STARYU
  278. #STARMIE
  279. #MR_MIME
  280. #SCYTHER
  281. #JYNX
  282. #ELECTABUZZ
  283. #MAGMAR
  284. #PINSIR
  285. #TAUROS
  286. #MAGIKARP
  287. #GYARADOS
  288. #LAPRAS
  289. #DITTO
  290. #EEVEE
  291. #VAPOREON
  292. #JOLTEON
  293. #FLAREON
  294. #PORYGON
  295. #OMANYTE
  296. #OMASTAR
  297. #KABUTO
  298. #KABUTOPS
  299. #AERODACTYL
  300. #SNORLAX
  301. #ARTICUNO
  302. #ZAPDOS
  303. #MOLTRES
  304. #DRATINI
  305. #DRAGONAIR
  306. #DRAGONITE
  307. #MEWTWO
  308. #MEW
Add Comment
Please, Sign In to add comment