Advertisement
Guest User

Untitled

a guest
Aug 8th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. latitude=52.357572
  2. longitude=4.867755
  3.  
  4. # Desired probability to catch Pokemon with 1 throw
  5. desired_catch_probability=0.4
  6.  
  7. # Desired probability to catch unwanted Pokemon (obligatory_transfer; low IV; low CP)
  8. # Set to -1 to not attempt catching at all
  9. desired_catch_probability_unwanted=0.0
  10.  
  11. # Number of nearest unused pokestops to randomly select
  12. # The next pokestop from (1/infinite)
  13. random_next_pokestop_selection=5
  14.  
  15. ## Walking
  16. # Meters per second
  17. speed=2.8
  18.  
  19. # Should the bot follow the streets (true) or just go directly to pokestops/waypoints
  20. follow_streets=false
  21.  
  22. # Should the bot loot the pokestops (true/false)
  23. loot_pokestop=true
  24.  
  25. # Should the bot catch pokemons (true/false)
  26. catch_pokemon=true
  27.  
  28. # Should the bot auto fill incubators with eggs (true/false)
  29. auto_fill_incubator=true
  30.  
  31. ## Items drop
  32. # Should the bot EVER drop items (true/false)
  33. drop_items=true
  34.  
  35. # Max number of each item that the bot should keep if "drop_items" is enabled
  36. # Use -1 in an item to never drop this specific item
  37. # The default values add up to 350
  38. item_revive=20
  39. item_max_revive=10
  40. item_potion=0
  41. item_super_potion=30
  42. item_hyper_potion=50
  43. item_max_potion=50
  44. item_poke_ball=40
  45. item_great_ball=50
  46. item_ultra_ball=50
  47. item_master_ball=10
  48. item_razz_berry=40
  49. item_lucky_egg=-1
  50. item_incense=-1
  51. item_lure_module=-1
  52.  
  53. ## Extra Info
  54. # Should the bot display rewards pokestop (true/false)
  55. display_pokestop_rewards=true
  56.  
  57. # Should the bot display rewards when catching pokemon (true/false)
  58. display_pokemon_catch_rewards=true
  59.  
  60. # Display keepalive coordinates
  61. display_keepalive=true
  62.  
  63. # Should the bot display information of where it's walking to (true/false)
  64. # This will show the name of the pokestop that it's walking to and
  65. # replace on the loot log the pokestop id for its name
  66. # WARNING: this will increase the https requests without any need. If
  67. # the servers are slow it's recommended to turn off this setting
  68. display_pokestop_name=false
  69.  
  70. ## Pokemon Transfer
  71. # Should the bot auto transfer duplicate pokemon
  72. autotransfer=true
  73.  
  74. # Minimum amount of pokemon type to keep
  75. keep_pokemon_amount=1
  76.  
  77. # Maximum amount of pokemon type to keep (-1 to keep all)
  78. max_pokemon_amount=-1
  79.  
  80. # Sort by IV first instead of CP
  81. sort_by_iv=true
  82.  
  83. # Always throw curveballs
  84. always_curve=false
  85.  
  86. # Never use berries
  87. never_use_berries=true
  88.  
  89. # Allow leaving the starting area
  90. allow_leave_start_area=false
  91.  
  92. # Max distance from starting point the bot should ever go in meters
  93. # (-1: only limited by the initial pokestops (~3*3km); with allow_leave_start_area=true unlimited)
  94. spawn_radius=-1
  95.  
  96. # Set timer in seconds to go back to the starting pokestop (-1 disabled)
  97. timerWalkToStartPokeStop=-1
  98.  
  99. # Set profile update timer (Default: 60)
  100. profile_update_timer=60
  101.  
  102. # Minimum IV percentage to keep a pokemon (to ignore IV: use -1)
  103. # between 0 and 100, suggested 80
  104. transfer_iv_threshold=90
  105.  
  106. # Minimum CP to keep a pokemon (to ignore CP: use -1)
  107. transfer_cp_threshold=-1
  108.  
  109. # List of pokemon you don't want to transfer regardless of CP
  110. # The names must be divided by a ","
  111. # If you want all pokemons to be transferred just leave it blank
  112. ignored_pokemon=MEWTWO,MEW,DRAGONITE
  113.  
  114. # List of pokemon you always want to transfer regardless of CP
  115. obligatory_transfer=RATTATA,CATERPIE,PIDGEY
  116.  
  117. # Port where the webserver (gui) should listen, 0 = do not listen
  118. gui_port=8000
  119. # Port where the socketserver should listen, 0 = do not listen
  120. gui_port_socket=8001
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement