forked from jbs4bmx/BandanaOfProtection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigurationGuide.txt
40 lines (37 loc) · 2.11 KB
/
ConfigurationGuide.txt
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
Configuration Guide
You can specify the following configurations in the "\src\config.json" file.
"Main Armor" and "Head Segments" are boolean values and must be input as true or false.
No other values will be accepted for these.
Values other than true or false will default to true.
"Resources" are the property values represented by whole numbers.
For RepairCost, marketPrice, and traderPrice, any value below 1 or greater than 9999999 will default to 100000.
For Durability, values below 1 or greater than 9999999 will default to 100.
For minTraderLevel, values below 1 or greater than 4 will default to 2.
{
"MainArmor": {
"Head": true, // [Boolean] value must be set to true or false - Set to true to enable protection for the specified body Part.
"Thorax": true, // [Boolean]
"Stomach": true, // [Boolean]
"LeftArm": true, // [Boolean]
"RightArm": true, // [Boolean]
"LeftLeg": true, // [Boolean]
"RightLeg": true // [Boolean]
},
"HeadAreas": {
"Top": true, // [Boolean] value must be set to true or false - Set to true to enable protection for the specified body Part.
"Nape": true, // [Boolean]
"Ears": true, // [Boolean]
"Eyes": true, // [Boolean]
"Jaws": true // [Boolean]
},
"Resources": {
"RepairCost": 1, // [Integer] value must be a whole number - Sets the cost to repair the item. (1-9999999)
"Durability": 1, // [Integer] value must be a whole number - Sets the durability amount of the item.(1-9999999)
"minTraderLevel": 1, // [Integer] value must be a whole number - Sets the minimum required trader level to acquire this item. (1-4)
"marketPrice": 1, // [Integer] value must be a whole number - Sets the Flea Market price of the item.(1-9999999)
"traderPrice": 1 // [Integer] value must be a whole number - Sets the Ragman price of the item.(1-9999999)
},
"other": {
"HideWarningMessage": false // Verify that you have read this document and the configuration file.
}
}