Guest User

Untitled

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