This repository has been archived by the owner on May 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.xml
executable file
·62 lines (56 loc) · 1.66 KB
/
options.xml
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
<?xml version="1.0"?>
<!DOCTYPE data SYSTEM "http://www.woltlab.com/DTD/options.dtd">
<data>
<import>
<categories>
<category name="guthaben"></category> <category name="guthaben.general">
<parent>guthaben</parent>
</category>
<category name="guthaben.spend">
<parent>guthaben</parent>
</category>
<category name="guthaben.earn">
<parent>guthaben</parent>
</category>
</categories>
<options>
<!-- general -->
<option name="guthaben_enable_global">
<categoryname>guthaben.general</categoryname>
<optiontype>boolean</optiontype>
<defaultvalue>1</defaultvalue>
</option>
<option name="guthaben_enable_autocompress">
<categoryname>guthaben.general</categoryname>
<optiontype>boolean</optiontype>
<defaultvalue>1</defaultvalue>
</option>
<!-- general -->
<!-- spend -->
<option name="guthaben_tax_per_day">
<categoryname>guthaben.spend</categoryname>
<optiontype>float</optiontype>
<defaultvalue>5</defaultvalue>
</option>
<!-- spend -->
<!-- earn -->
<option name="guthaben_earn_per_pn">
<categoryname>guthaben.earn</categoryname>
<optiontype>integer</optiontype>
<defaultvalue>5</defaultvalue>
</option>
<option name="guthaben_earn_for_register">
<categoryname>guthaben.earn</categoryname>
<optiontype>integer</optiontype>
<defaultvalue>500</defaultvalue>
</option>
<option name="guthaben_earn_per_birthday">
<categoryname>guthaben.earn</categoryname>
<optiontype>integer</optiontype>
<defaultvalue>350</defaultvalue>
</option>
<!-- earn -->
</options>
</import>
</data>