Advertisement
Guest User

config.ini of RocketMap

a guest
Aug 27th, 2017
704
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.99 KB | None | 0 0
  1. # DO NOT USE NOTEPAD TO EDIT CONFIG FILES! USE NOTEPAD++ INSTEAD!
  2. # Uncomment a line when you want to change its default value (Remove # at the beginning)
  3. # Please ensure to leave a space after the colon if a value is needed ("example-setting" "example-setting-with: value")
  4. # At least one account with "username", "password" as well as "location" and "gmaps-key" are required
  5. # When your configuration is done, rename this file by removing the ".example" extension
  6. # A different config-files can be included directly in processes by "--config-file" or "-cf" and path
  7.  
  8.  
  9. # Required settings
  10. ###################
  11.  
  12. gmaps-key: AIzaSyCvzWpNBsBBdeZFtqFn7iMB5pweQbHNHZk
  13. #auth-service: ptc
  14. username: [MyAccounts]
  15. password: [MyPassword]
  16. hash-key: MyHashKey
  17.  
  18.  
  19. # Common settings
  20. #################
  21.  
  22. host: 0.0.0.0
  23. #port: # Port to listen on (default=5000)
  24. #csv: account.csv
  25. speed-scan: true
  26. location: 43.12604547425634, 5.941629409790039
  27. step-limit: 22
  28. #scan-delay: # There was some personal note here, you shouldn't need this
  29. #no-gyms # Disables gym scanning (default=False)
  30. #no-pokemon # Disables pokemon scanning. (default=False)
  31. #no-pokestops # Disables pokestop scanning. (default=False)
  32. #no-raids # Disables raid scanning (default=False)
  33. #print-status # Enable ENTER to switch between log view and a status view.
  34. # Optionally add ": status" to start in status view and ": logs" to start in log view. (default=False)
  35. status-page-password: A password
  36. #captcha-solving # Enables captcha solving. (default=False)
  37.  
  38.  
  39. # Database settings
  40. ###################
  41.  
  42. db-type: mysql
  43. #db: #Dabase filename for SQLite. (default='pogom.db')
  44. db-host: 127.0.0.1
  45. db-name: rocketmapdb
  46. db-user: rocketmapuser
  47. db-pass: password
  48. #db-port: # Required for mysql (default=3306)
  49. #db-max_connections: # Max connections (per thread) for the database. (default=5)
  50. db-threads: 21
  51.  
  52.  
  53. #Scan method: speed-scan
  54. #############
  55.  
  56. #beehive # Use beehive configuration for multiple accounts, one account per hex.
  57. # Make sure to keep -st under 5, and -w under the total amount of accounts available.
  58. #spawnpoint-scanning #spawnpoint-scanning
  59. # Scans in a circle based on step_limit when on DB.
  60. # A spawnpoint-file can be added optinal as value for "spawnpoint-scanning".
  61. #dump-spawnpoints # Dump the spawnpoints from the db to json (only for use with -ss).
  62.  
  63.  
  64. # Geofence settings
  65. ###################
  66.  
  67. #geofence-file: # Geofence file to define outer borders of the scan area.
  68. #geofence-excluded-file: # File to define forbidden areas inside scan area. Regarded this as inverted geofence. Can be combined with geofence-file.
  69.  
  70.  
  71. # Search settings
  72. #################
  73.  
  74. #china # Coordinates transformer for China.
  75. #no-jitter # Don't apply random -9m to +9m jitter to location.
  76. #altitude: # Default altitude in meters. Retrieve this value regarding your scan location from the web. (default=507)
  77. #altitude-variance: # Variance for --altitude in meters (default=1)
  78. #use-altitude-cache # Query the Elevation API for each step, rather than only once, and store results in the database.
  79. # Make sure your Google Elevation API is enabled
  80. #workers-per-hive: # Only referenced when using --beehive. Sets number of workers per hive. (default=1)
  81. #workers: # Number of search worker threads to start. (default=#accounts)
  82. #spawn-delay: # Number of seconds after spawn time to wait before scanning to be sure the Pokemon is there. (default=10)
  83. #kph: # Set a maximum speed in km/hour for scanner movement. (default=35)
  84. #bad-scan-retry: # Number of bad scans before giving up on a step. (default=2, 0 to disable)
  85. #skip-empty # Enables skipping of empty cells in normal scans - requires previously populated database. (not to be used with -ss)
  86. #min-seconds-left: # Time that must be left on a spawn before considering it too late and skipping it. (default=0)
  87. gym-info: True
  88. #pokestop-spinning # Spin Pokestops with "50%" Chance (default=False)
  89. #account-max-spins # Maximum number of Pokestop spins per hour (default=80)
  90. #on-demand_timeout: # Pause searching while web UI is inactive for this timeout (in seconds). (default=0)
  91.  
  92.  
  93. # Account rotation
  94. ##################
  95.  
  96. #login-delay: # Time delay between each login attempt. (default=6)
  97. #login-retries: # Number of times to retry the login before refreshing a thread. (default=3)
  98. #account-search-interval: # Seconds for accounts to search before switching to a new account. (default=0)
  99. #account-rest-interval: # Seconds for accounts to rest when they fail or are switched out. (default=7200)
  100. #max-failures: # Maximum number of failures to parse locations before an account will go into a sleep for
  101. # account-rest-interval seconds. (default 5, 0 to disable)
  102. #max-empty: # Maximum number of empty scans before an account will go into a sleep for
  103. # account-rest-interval seconds. Reasonable to use with proxies. (default=0)
  104.  
  105.  
  106. # Pokemon IV (Only use one of the filters below)
  107. ############
  108.  
  109. #encounter # Set to true to start encounters to pull more info, like IVs or movesets. (default=False)
  110. #encounter-delay: # Delay in seconds before starting an encounter. Must not be zero. (default=1)
  111. #high-lvl-accounts: # File containing a list high level accounts, in the format "auth_service,username,password"
  112. #enc-whitelist-file: # File containing a list of Pokemon IDs to encounter for IV/CPs. Requires L30 or higher accounts in --high-lvl-accounts.
  113. #hlvl-kph: # Set a maximum speed in km/hour for high level account scanning. (default=25)
  114.  
  115.  
  116. # Webserver settings
  117. ####################
  118.  
  119. #no-server # No-Server Mode. Starts the searcher but not the Webserver.
  120. #only-server # Server-Only Mode. Starts only the Webserver without the searcher.
  121. locale: fr
  122. #search-control # Enables search control.
  123. #no-fixed-location # Disables the fixed map location and shows the search bar for use in shared maps.
  124. #cors # Enable CORS on web server.
  125. #ssl-certificate: # Path to ssl certificate
  126. #ssl-privatekey: # Path to ssl private key
  127. #encrypt-lib: # Path to encrypt lib to be used instead of the shipped ones.
  128. #display-in-console # Display Found Pokemon in Console.
  129. #disable-blacklist # Disable the global anti-scraper IP blacklist.
  130.  
  131.  
  132. # Proxy settings
  133. ################
  134.  
  135. #proxy: # Proxy URL e.g. socks5://127.0.0.1:9050 or a list of proxies
  136. # e.g. [socks5://127.0.0.1:9050,socks5://127.0.0.1:9050]
  137. #proxy-skip-check # Disable checking of proxies before start.
  138. #proxy-test-timeout: # Timeout before proceeding with next proxy while checking if the proxy works. (default=5)
  139. #proxy-test-retries: # Number of times to retry sending proxy test requests on failure. (default=0)
  140. #proxy-test-backoff-factor: # Factor (in seconds) by which the delay until next retry will increase. (default=0.25)
  141. #proxy-test-concurrency: # Async requests pool size. (default=0 for automatic optimal sizing)
  142. #proxy-display: # Used with -ps, full = display complete proxy address. Index = displays just the index for that proxy. (default='index')
  143. #proxy-file: # Load proxy list from text file (one proxy per line), overrides #proxy.
  144. #proxy-refresh: # Period of proxy file reloading, in seconds. Works only with proxy-file. (default=0, 0 to disable)
  145. #proxy-rotation: # Enable proxy rotation with account changing for search threads (none/round/random). (default='none')
  146.  
  147.  
  148. # Webhook settings
  149. ##################
  150.  
  151. webhook: http://127.0.0.1:4000
  152. # http://127.0.0.1:4000
  153. wh-types:[pokemon, egg, tth]
  154. #wh-threads: # Number of webhook threads; increase if the webhook queue falls behind. (default=1)
  155. #wh-retries: # Number of times to retry sending webhook data on failure (default=5)
  156. #wh-timeout: # Timeout (in seconds) for webhook requests (default=2).
  157. #wh-concurrency: # Async requests pool size. (default=25)
  158. #wh-backoff-factor: # Factor (in seconds) by which the delay until next retry will increase. (default=0.25).
  159. #wh-lfu-size: # Webhook LFU cache max size (default=1000).
  160. #wh-frame-interval: # Time to wait for wh message grouping (msecs) (default=500)
  161.  
  162.  
  163.  
  164. # Status and logs
  165. #################
  166.  
  167. #stats-log-timer # In log view, list per hr stats every X seconds
  168. #status-name: # Enables writing status updates to the database - if you use multiple processes, each needs a unique value. (default=None)
  169.  
  170.  
  171. # Captcha Solving
  172. #################
  173.  
  174. #captcha-key: # 2Captcha API key.
  175. #captcha-dsk: # PokemonGo captcha data-sitekey. Don't change this if not explicitly needed due to recent changes.
  176. # (default="6LeeTScTAAAAADqvhqVMhPpr_vB9D364Ia-1dSgK")
  177. #manual-captcha-domain: # Enables the option to manual solve Captcha.
  178. # Enter domain where captcha tokens will be sent. (default="http://127.0.0.1:5000")
  179. #manual-captcha-refresh: # Time available before captcha page refreshes. (default=30)
  180. #manual-captcha-timeout: # Maximum time captchas will wait for manual captcha solving.
  181. # On timeout, if enabled, 2Captcha will be used to solve captcha. (default=0)
  182.  
  183.  
  184. # Misc
  185. ######
  186.  
  187. #verbosity # Show debug messages from RocketMap and PGoApi. Values are 1,2,3 (default=0)
  188. #no-file-logs # Disables logging to files except for access.log. (default=False)
  189. #log-path # Defines the path logs are saved at. (default=logs/)
  190. #no-version-check # Disable API version check. (default=False)
  191. #version-check-interval: # Interval to check API version in seconds (Default: in range [60, 300]).
  192. #mock: # Mock mode - point to a fpgo endpoint instead of using the real PogoApi,
  193. # ec: http://127.0.0.1:9090 (default='')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement