Advertisement
Guest User

Untitled

a guest
Oct 5th, 2016
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. <?xml version="1.0"?>
  2.  
  3. <configuration>
  4. <general
  5. betweenQueriesInterval="15.0"
  6. betweenQueriesSalt="12.0"
  7. betweenAccountsInterval="300"
  8. betweenAccountsSalt="600"
  9. openTopLinkRange="5"
  10. openLinkChance=".7"
  11. addSearchesDesktop="0"
  12. addSearchesDesktopSalt="20"
  13. addSearchesMobile="0"
  14. addSearchesMobileSalt="20" />
  15. <!--
  16. openTopLinkRange looks at the top X results, and randomly clicks one
  17. openLinkChance is the chance that a Bing result will be opened
  18. Lower the addSearches values if you have three or more accounts
  19. If you have one account, an average of 30 extra searches a day is fine
  20. If you have 5 accounts, an average of 150 extra searches a day is probably not good
  21. -->
  22.  
  23. <!--
  24. - Note: login and password are optional
  25. - if not set, the proxy is considered open
  26. - only Basic HTTP Authentication is currently supported
  27. - protocols: a comma separated list of values - i.e, "http,https"
  28. <proxy protocols="http,https" url="218.204.159.45:8123" login="John Smith" password="xxx" />
  29. -->
  30.  
  31. <accounts>
  32. <!--
  33. <account type="Facebook" disabled="false">
  34. <login>john.smith@gmail.com</login>
  35. <password>xxx</password>
  36. </account>
  37. <account type="Facebook" disabled="true">
  38. <login>blabla@mail.com</login>
  39. <password>xxx</password>
  40. </account>
  41. <account type="Live" disabled="false">
  42. <login>gogo@hotmail.com</login>
  43. <password>xxx</password>
  44. </account>
  45. -->
  46. <account type="Live" disabled="false">
  47. <login>XXXX@gmail.com</login>
  48. <password>XXXX+XXXX</password>
  49. </account>
  50. </accounts>
  51.  
  52. <events>
  53. <onError>
  54. <retry interval="15" salt="13.5" count="3" />
  55. <notify cmd="/home/BingRewards/bin/BingRewards/notify/onError.sh %a %p %r %P %l %i %e" />
  56. </onError>
  57. <onComplete>
  58. <retry if="%p lt 16" interval="15" salt="13.5" count="3" />
  59. <notify if="%l gt 3000"
  60. cmd='/home/BingRewards/bin/BingRewards/notify/onComplete_reached.sh %a %p %r %P %l %i "reached %l Life Credits"' />
  61. <notify if="%p ne 16"
  62. cmd="/home/BingRewards/bin/BingRewards/notify/onComplete.sh %a %p %r %P %l %i" />
  63. <notify if="%P gt 475"
  64. cmd="/home/BingRewards/bin/BingRewards/notify/onComplete.sh %a %p %r %P %l %i" />
  65. <!--
  66. <account ref="Live_gogo@hotmail.com">
  67. <retry if="%p lt 16" interval="15" salt="13.5" count="3" />
  68. <notify if="%l gt 750"
  69. cmd='/home/BingRewards/bin/BingRewards/notify/onComplete_reached.sh %a %p %r %P %l %i "Gold with %l Life Credits"' />
  70. <notify if="%p ne 16"
  71. cmd="/home/BingRewards/bin/BingRewards/notify/onComplete.sh %a %p %r %P %l %i" />
  72. <notify if="%P gt 475"
  73. cmd="/home/BingRewards/bin/BingRewards/notify/onComplete.sh %a %p %r %P %l %i" />
  74. </account>
  75. -->
  76. <account ref="XXXX@gmail.com">
  77. <retry if="%p lt 31" interval="15" salt="13.5" count="3" />
  78. <notify if="%l gt 10000"
  79. cmd='/home/BingRewards/bin/BingRewards/notify/onComplete_reached.sh %a %p %r %P %l %i "reached %l Life Credits"' />
  80. <notify if="%p ne 31"
  81. cmd="/home/BingRewards/bin/BingRewards/notify/onComplete.sh %a %p %r %P %l %i" />
  82. <notify if="%P gt 475"
  83. cmd="/home/BingRewards/bin/BingRewards/notify/onComplete.sh %a %p %r %P %l %i" />
  84. </account>
  85. </onComplete>
  86. <onScriptComplete>
  87. <notify cmd="/home/BingRewards/bin/BingRewards/notify/onScriptComplete.sh -mail" />
  88. </onScriptComplete>
  89. <onScriptFailure>
  90. <notify cmd="/home/BingRewards/bin/BingRewards/notify/onScriptFailure.sh -mail" />
  91. </onScriptFailure>
  92. </events>
  93.  
  94. <!--
  95. - generator="MODULE" must be a module in pkg/queryGenerators
  96. - current modules:
  97. - bing - uses today's bing news page. Generates terms which may be partial words.
  98. - wikipedia - uses today's wikipedia. Generates terms with whole words.
  99. - googleTrends - uses today's google trends, and google suggested searches. This generatoer
  100. - generates whole words, generally consistent with a search syntax. These terms
  101. - are anything trending and can be NSFW or terms for illegal items.
  102. -->
  103. <queries generator="wikipedia" />
  104. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement