Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.27 KB | None | 0 0
  1. # DO NOT USE NOTEPAD TO EDIT CONFIG FILES!! USE NOTEPAD ++ INSTEAD.
  2. # Authentication settings
  3. #auth-service: # ptc (default) or google
  4. #username:
  5. #password:
  6. accountcsv: accounts.csv #name and file extention of the .csv you wish to use.
  7. workers: 100 #defaults to the amount in the .csv
  8. account-search-interval: 3600 #Length of time in seconds for an account will search for before resting.
  9. account-rest-interval: 1800 #Length of time in seconds for an account to rest after reciving a ban or captcha.
  10. max-failures: 5 #Maximum number of failures to parse locations before an account will go into a two hour sleep
  11. #print-status: True #My prefered map display.
  12.  
  13. #For captcha solving set the below
  14. captcha-solving: true #enables the ability to manually solve captchas.
  15. captcha-key: [MY KEY]
  16.  
  17. # Database settings
  18. db-type: mysql # sqlite (default) or mysql
  19. db-host: 127.0.0.1 # required for mysql
  20. db-name: rocketmapdb # required for mysql
  21. db-user: [My Username] # required for mysql
  22. db-pass: [My Password] # required for mysql
  23. db-port: 3307 # default 3306
  24. db-threads: 55
  25.  
  26. # Search settings
  27. location: 45.957614 -66.651126
  28. speed-scan: True # To use speed-scan as the search scheduler
  29. kph: 22 # KPH which the account travels.
  30. no-search-control: True # Removes user search controls.
  31. fixed-location: True # Fixes the start location.
  32. #no-gyms: # disables gym scanning (default false)
  33. #no-pokemon: # disables pokemon scanning (default false)
  34. #no-pokestops: # disables pokestop scanning (default false)
  35. scan-delay: 15 # default 10
  36. step-limit: 45 # default 12
  37. #gym-info: # enables detailed gym info collection (default false)
  38. #min-seconds-left: # time that must be left on a spawn before considering it too late and skipping it (default 0)
  39. #status-name: # enables writing status updates to the database - if you use multiple processes, each needs a unique value
  40.  
  41. #Pokemon IV
  42. encounter: true # Set to true to start encounters to pull more info, like IVs or movesets. (default false)
  43. encounter-delay: 5 # delay in seconds before starting an encounter. Must not be zero. (default 1)
  44. encounter-whitelist: [1,2,3,4,5,6,7,8,9,43,44,58,59,60,61,62,66,67,68,79,80,88,89,102,103,111,112,129,130,131,134,135,136,143,147,148,149,152,153,154,155,156,157,158,159,160,175,176,179,180,181,182,186,191,196,197,199,201,203,204,205,207,208,212,214,217,218,219,225,226,228,229,230,231,232,233,235,237,241,242,243,244,245,246,247,248,249,250] # whitelist of pokemon ids to encounter. Syntax [id,id,id,id] (Do not use with blacklist)
  45. #encounter-blacklist: # blacklist of pokemon ids to NOT encounter. Syntax [id,id,id,id] (Do not use with whitelist)
  46.  
  47. # Misc
  48. gmaps-key: [My Key] # your Google Maps API key
  49. #proxy: # Proxy URL e.g. socks5://127.0.0.1:9050 or a list of proxies e.g. [socks5://127.0.0.1:9050,socks5://127.0.0.1:9050]
  50. #proxy-timeout: # Timeout before proceeding with next proxy while checking if the proxy works, (default 5)
  51. #proxy-display: # Used with -ps, full = display complete proxy address. Index = displays just the index for that proxy (default index)
  52. #webhook:[http://127.0.0.1:4000, http://127.0.0.1:4001] # webhook URL (including http://)
  53. webhook: http://127.0.0.1:4000 # webhook URL (including http://)
  54. wh-threads: 200
  55. #webhook-updates-only: # only send updates to webhooks, (excludes gyms & non-lured pokéstops)
  56.  
  57. # Webserver settings
  58. host: 127.0.0.1 # address to listen on (default 127.0.0.1)
  59. port: 5000 # port to listen on (default 5000)
  60. #locale: # pokemon translation
  61. #ssl-certificate: # path to ssl certificate
  62. #ssl-privatekey: # path to ssl private key
  63. #encrypt-lib: # path to encrypt lib to be used instead of the shipped ones
  64. #status-page-password: # enables and protects the /status page to view status of all workers
  65.  
  66. #Uncomment a line when you want to change its default value (Remove # at the beginning)
  67. #Please ensure to leave a space after the : (example setting: value)
  68. #username, password, location and gmaps-key are required
  69.  
  70. #Status Page
  71. status-page-password:status
  72. hash-key: [My Key]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement