forked from EngineHub/CraftBook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcraftbook.properties
92 lines (76 loc) · 3.13 KB
/
craftbook.properties
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
##
## CraftBook configuration
##
# Enable the ability to "read" bookshelves by right clicking on them.
bookshelf-enable=true
bookshelf-read-text=You pick out a book...
# Enable the use of cauldrons to craft.
cauldron-enable=true
# Allow gates.
gate-enable=true
gate-redstone=true
# Allow bridges. You can adjust the list of blocks that can be used
# for bridges as well as the maximum length.
bridge-enable=true
bridge-redstone=true
bridge-blocks=4,5,20,43
bridge-max-length=30
# Allow elevators.
elevators-enable=true
# Allow light switches.
light-switch-enable=true
# Allow the wiring of pumpkins in order to toggle their light state.
redstone-pumpkins=true
# Enable redstone integrated circuits which compress the functionality
# complicated or otherwise impossible circuits to very simple ones.
redstone-ics=true
# Toggle area feature.
toggle-areas-enable=true
toggle-area-max-size=5000
# Chance of dropping apples when leaves are mined. Set to -1 to disable
# entirely. This number is between 0 and 100 and it indicates the
# probability of an apple dropping.
apple-drop-chance=0.5
# Drop bookshelves when they are mined.
drop-bookshelves=true
# Enabling the setting below causes CraftBook to check permissions to see
# whether a player can *use* a feature (not create). If you enable it,
# you must give users permissions for the following virtual commands
# for the respective features that you want to allow:
# /appledrops - Apples to be dropped from trees
# /bookshelfdrops - Bookshelves drop when mined
# /readbooks - Book reading feature
# /gate - Toggle gates
# /lightswitch - Toggle light switches
# /elevator - Toggle elevators
# /togglearea - Toggle areas
# /bridge - Toggle bridges
# /cauldron - Cauldron usage
check-permissions=false
# A potentially more useful way to restrict features is to prevent
# people from setting up certain features such as bridges. Enabling the
# setting below will allow you to do that. You will have to give
# permissions to the virtual commands that are applicable:
# /makegate
# /makelightswitch
# /makeelevator
# /maketogglearea
# /makebridge
# /makeic
# Note that in the case of "restricted ICs" like the mob spawner, /makeic
# is not enough. The player must either have /allic or /mc####.
check-create-permissions=false
# You can choose either 'unlimited-black-hole' or 'nearby-chest' for the
# block bag type. The nearby-chest option will force CraftBook's features
# to get items from nearby chests instead of getting items from thin air.
# Blocks will be put back into a nearby chest if they need to be stored away.
# Note that chest support is currently a little buggy and may actually
# worsen the problem. unlimited-black-hole gets items out of nowhere and
# discards items and it is the default option.
block-bag=unlimited-black-hole
# The ammeter allows users to right click with coal in their hand in
# order to measure the current levels in redstone wires. This is handy
# because current levels decrease with distance (they start at 15). This
# tool cannot be used to modify blocks.
ammeter=true
#EOF