Guest User

myproperties

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