Guest User

Untitled

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