Guest User

Untitled

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