Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. {
  2. "_comment1": "Language, can be german/english",
  3. "language": "english",
  4.  
  5. "_comment2": "If unique_coordinates is set to false, profile coordinates will be overwritten with standard_coordinates.",
  6. "unique_coordinates": false,
  7.  
  8. "_comment3": "Used by the map as starting point and with unique_coordinates set to false for the scan.",
  9. "standard_coordinates":
  10. {
  11. "lat": 53.3965819,
  12. "lng": 14.526789,
  13. "alt": 0
  14. },
  15.  
  16. "_comment4": "The size in MB after which the spawn file gets renamed and a new one is used, set to 0 to disable.",
  17. "backup_size": 10,
  18.  
  19. "_comment5": "Set to true to overwrite the coordinates for id 1 to 6 to scan around the id 0 pseudo-hexagon.",
  20. "centralscan": false,
  21.  
  22. "_comment6": "Standard scan range, represented as layers around the center hexagon.",
  23. "range": 5,
  24.  
  25. "_comment7": "How often it will scan. Can be higher under bad server conditions.",
  26. "scaninterval": 120,
  27.  
  28. "_comment8": "Google API browser key. (You can get one for free)",
  29. "api_key": "klucz_gugla_api",
  30.  
  31. "_comment9": "Pokemon with these ids won't be shown in the map. (data still gets collected)",
  32. "exclude_ids": [],
  33.  
  34. "_comment10": "Will scale icons by this factor.",
  35. "icon_scalefactor": 0.5,
  36.  
  37. "_comment11": "Will scale the whole user interface by this factor.",
  38. "mobile_scalefactor": 0.7,
  39.  
  40. "_comment12": "The html page will only try to load the live data for ids listed here.",
  41. "load_ids": [0],
  42.  
  43. "comment13": "The path to the res folder from the html point of view.",
  44. "html_respath": "res/",
  45.  
  46. "comment14": "Pushbullet settings. You need a Pushbullet API key for it. Put ids of pokemon you want to be notified about into push_ids.",
  47. "pushbullet":
  48. {
  49. "enabled": true,
  50. "api_key": "klucz_pushbullet_api",
  51. "push_ids": [0,1,2,3,4,5,6,7,8,9,12,23,24,25,26,27,28,31,34,36,38,39,40,45,51,53,55,57,59,61,62,63,64,65,66,67,68,71,73,74,75,76,77,78,80,82,83,84,85,86,87,89,95,101,103,105,106,107,108,110,112,113,114,115,121,122,126,127,128,130,131,132,135,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151]
  52.  
  53. },
  54.  
  55. "_comment15": "The profiles. Each with their own id, login info, and coordinates. Add as many as you like.",
  56. "profiles": [
  57. {
  58. "id": 0,
  59. "type": "google",
  60. "username": "nazwa_użytkownika",
  61. "password": "hasło",
  62. "coordinates":
  63. {
  64. "lat": 53.3965819,
  65. "lng": 14.526789,
  66. "alt": 0
  67. }
  68. },
  69. {
  70. "id": 1,
  71. "type": "ptc",
  72. "username": "agent1",
  73. "password": "password",
  74. "coordinates":
  75. {
  76. "lat": 0,
  77. "lng": 0,
  78. "alt": 0
  79. }
  80. },
  81. {
  82. "id": 2,
  83. "type": "google",
  84. "username": "agent2",
  85. "password": "password",
  86. "coordinates":
  87. {
  88. "lat": 0,
  89. "lng": 0,
  90. "alt": 0
  91. }
  92. }
  93. ]
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement