Guest User

config.properties

a guest
Aug 12th, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.27 KB | None | 0 0
  1. # PTC/Google login credentials
  2. username=XXXXXXXX
  3.  
  4. # Choose plaintext or base64'd password
  5. password=XXXXXXXX
  6. base64_password=
  7.  
  8. # Token to login directly
  9. token=
  10. latitude=37.7878
  11. longitude=-122.408
  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=8
  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=0
  51. item_max_revive=0
  52. item_potion=0
  53. item_super_potion=0
  54. item_hyper_potion=0
  55. item_max_potion=0
  56. item_poke_ball=30
  57. item_great_ball=50
  58. item_ultra_ball=250
  59. item_master_ball=-1
  60. item_razz_berry=50
  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=false
  73.  
  74. ## Extra Info
  75. # Should the bot display rewards pokestop (true/false)
  76. display_pokestop_rewards=false
  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=false
  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=false
  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=-1
  103.  
  104. # Sort by IV first instead of CP
  105. sort_by_iv=false
  106.  
  107. # Always throw curveballs
  108. always_curve=false
  109.  
  110. # Never use berries
  111. never_use_berries=true
  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=1700
  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=MEWTWO,SNORLAX,LAPRAS,MEW
  140.  
  141. # List of pokemon you always want to transfer regardless of CP
  142. obligatory_transfer=BULBASAUR,IVYSAUR,CHARMANDER,CHARMELEON,SQUIRTLE,WARTORTLE,CATERPIE,METAPOD,BUTTERFREE,WEEDLE,KAKUNA,BEEDRILL,PIDGEY,PIDGEOTTO,PIDGEOT,RATTATA,RATICATE,SPEAROW,FEAROW,EKANS,ARBOK,PIKACHU,SANDSHREW,SANDSLASH,NIDORAN_MALE,NIDORINA,NIDORAN_FEMALE,NIDORINO,CLEFAIRY,VULPIX,JIGGLYPUFF,ZUBAT,GOLBAT,ODDISH,GLOOM,PARAS,PARASECT,VENONAT,VENOMOTH,DIGLETT,DUGTRIO,MEOWTH,PERSIAN,PSYDUCK,GOLDUCK,MANKEY,PRIMEAPE,GROWLITHE,POLIWAG,POLIWHIRL,ABRA,KADABRA,ALAKAZAM,MACHOP,MACHOKE,BELLSPROUT,WEEPINBELL,TENTACOOL,TENTACRUEL,GEODUDE,GRAVELER,PONYTA,RAPIDASH,SLOWPOKE,MAGNEMITE,MAGNETON,DODUO,DODRIO,SEEL,DEWGONG,GRIMER,SHELLDER,CLOYSTER,GASTLY,HAUNTER,GENGAR,ONIX,DROWZEE,HYPNO,KRABBY,KINGLER,VOLTORB,ELECTRODE,EXEGGCUTE,CUBONE,MAROWAK,HITMONLEE,HITMONCHAN,LICKITUNG,KOFFING,WEEZING,RHYHORN,RHYDON,CHANSEY,TANGELA,HORSEA,SEADRA,GOLDEEN,SEAKING,STARYU,STARMIE,SCYTHER,JYNX,ELECTABUZZ,MAGMAR,PINSIR,TAUROS,PORYGON,OMANYTE,OMASTAR,KABUTO,KABUTOPS,AERODACTYL
  143.  
  144. # Port where the socketserver should listen, 0 = do not listen
  145. gui_port_socket=8001
  146.  
  147. # Export player/pokemondata on Profile Update. Options are:
  148. # *empty* Don't export (default)
  149. # CSV Correct USA/UK CSV format ("," as delimiter and "." as decimal separator)
  150. # DSV European CSV/DSV format (";" as delimiter and "," as decimal separator)
  151. # Use this one if your MS Excel can't handle the default CSV option
  152. export=
  153.  
  154. # Initial map size (S2 tiles) to fetch (max. 9: ~3*3km area)
  155. initial_map_size=9
  156.  
  157. # List of pokemon names
  158. #MISSINGNO
  159. #BULBASAUR
  160. #IVYSAUR
  161. #VENUSAUR
  162. #CHARMANDER
  163. #CHARMELEON
  164. #CHARIZARD
  165. #SQUIRTLE
  166. #WARTORTLE
  167. #BLASTOISE
  168. #CATERPIE
  169. #METAPOD
  170. #BUTTERFREE
  171. #WEEDLE
  172. #KAKUNA
  173. #BEEDRILL
  174. #PIDGEY
  175. #PIDGEOTTO
  176. #PIDGEOT
  177. #RATTATA
  178. #RATICATE
  179. #SPEAROW
  180. #FEAROW
  181. #EKANS
  182. #ARBOK
  183. #PIKACHU
  184. #RAICHU
  185. #SANDSHREW
  186. #SANDSLASH
  187. #NIDORAN_FEMALE
  188. #NIDORINA
  189. #NIDOQUEEN
  190. #NIDORAN_MALE
  191. #NIDORINO
  192. #NIDOKING
  193. #CLEFAIRY
  194. #CLEFABLE
  195. #VULPIX
  196. #NINETALES
  197. #JIGGLYPUFF
  198. #WIGGLYTUFF
  199. #ZUBAT
  200. #GOLBAT
  201. #ODDISH
  202. #GLOOM
  203. #VILEPLUME
  204. #PARAS
  205. #PARASECT
  206. #VENONAT
  207. #VENOMOTH
  208. #DIGLETT
  209. #DUGTRIO
  210. #MEOWTH
  211. #PERSIAN
  212. #PSYDUCK
  213. #GOLDUCK
  214. #MANKEY
  215. #PRIMEAPE
  216. #GROWLITHE
  217. #ARCANINE
  218. #POLIWAG
  219. #POLIWHIRL
  220. #POLIWRATH
  221. #ABRA
  222. #KADABRA
  223. #ALAKAZAM
  224. #MACHOP
  225. #MACHOKE
  226. #MACHAMP
  227. #BELLSPROUT
  228. #WEEPINBELL
  229. #VICTREEBEL
  230. #TENTACOOL
  231. #TENTACRUEL
  232. #GEODUDE
  233. #GRAVELER
  234. #GOLEM
  235. #PONYTA
  236. #RAPIDASH
  237. #SLOWPOKE
  238. #SLOWBRO
  239. #MAGNEMITE
  240. #MAGNETON
  241. #FARFETCHD
  242. #DODUO
  243. #DODRIO
  244. #SEEL
  245. #DEWGONG
  246. #GRIMER
  247. #MUK
  248. #SHELLDER
  249. #CLOYSTER
  250. #GASTLY
  251. #HAUNTER
  252. #GENGAR
  253. #ONIX
  254. #DROWZEE
  255. #HYPNO
  256. #KRABBY
  257. #KINGLER
  258. #VOLTORB
  259. #ELECTRODE
  260. #EXEGGCUTE
  261. #EXEGGUTOR
  262. #CUBONE
  263. #MAROWAK
  264. #HITMONLEE
  265. #HITMONCHAN
  266. #LICKITUNG
  267. #KOFFING
  268. #WEEZING
  269. #RHYHORN
  270. #RHYDON
  271. #CHANSEY
  272. #TANGELA
  273. #KANGASKHAN
  274. #HORSEA
  275. #SEADRA
  276. #GOLDEEN
  277. #SEAKING
  278. #STARYU
  279. #STARMIE
  280. #MR_MIME
  281. #SCYTHER
  282. #JYNX
  283. #ELECTABUZZ
  284. #MAGMAR
  285. #PINSIR
  286. #TAUROS
  287. #MAGIKARP
  288. #GYARADOS
  289. #LAPRAS
  290. #DITTO
  291. #EEVEE
  292. #VAPOREON
  293. #JOLTEON
  294. #FLAREON
  295. #PORYGON
  296. #OMANYTE
  297. #OMASTAR
  298. #KABUTO
  299. #KABUTOPS
  300. #AERODACTYL
  301. #SNORLAX
  302. #ARTICUNO
  303. #ZAPDOS
  304. #MOLTRES
  305. #DRATINI
  306. #DRAGONAIR
  307. #DRAGONITE
  308. #MEWTWO
  309. #MEW
Add Comment
Please, Sign In to add comment