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