Guest User

Untitled

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