Re-added radium and changed server configurations.
Increased server capacity to 8. Decreased watch of flowing time bonus ticks to 2.
This commit is contained in:
@@ -1,32 +1,42 @@
|
||||
#The disk space limit for computers and turtles, in bytes
|
||||
#The disk space limit for computers and turtles, in bytes.
|
||||
computer_space_limit = 1000000
|
||||
#The disk space limit for floppy disks, in bytes
|
||||
#The disk space limit for floppy disks, in bytes.
|
||||
floppy_space_limit = 125000
|
||||
#Set how many files a computer can have open at the same time. Set to 0 for unlimited.
|
||||
#Range: > 0
|
||||
maximum_open_files = 128
|
||||
#Set this to true to disable Lua 5.1 functions that will be removed in a future update. Useful for ensuring forward compatibility of your programs now.
|
||||
#Set this to true to disable Lua 5.1 functions that will be removed in a future
|
||||
#update. Useful for ensuring forward compatibility of your programs now.
|
||||
disable_lua51_features = false
|
||||
#A comma separated list of default system settings to set on new computers. Example: "shell.autocomplete=false,lua.autocomplete=false,edit.autocomplete=false" will disable all autocompletion
|
||||
#A comma separated list of default system settings to set on new computers.
|
||||
#Example: "shell.autocomplete=false,lua.autocomplete=false,edit.autocomplete=false"
|
||||
#will disable all autocompletion.
|
||||
default_computer_settings = ""
|
||||
#Log exceptions thrown by peripherals and other Lua objects.
|
||||
#This makes it easier for mod authors to debug problems, but may result in log spam should people use buggy methods.
|
||||
#Log exceptions thrown by peripherals and other Lua objects. This makes it easier
|
||||
#for mod authors to debug problems, but may result in log spam should people use
|
||||
#buggy methods.
|
||||
log_computer_errors = true
|
||||
#Require players to be in creative mode and be opped in order to interact with command computers.This is the default behaviour for vanilla's Command blocks.
|
||||
#Require players to be in creative mode and be opped in order to interact with
|
||||
#command computers. This is the default behaviour for vanilla's Command blocks.
|
||||
command_require_creative = true
|
||||
|
||||
#Controls execution behaviour of computers. This is largely intended for fine-tuning servers, and generally shouldn't need to be touched
|
||||
#Controls execution behaviour of computers. This is largely intended for
|
||||
#fine-tuning servers, and generally shouldn't need to be touched.
|
||||
[execution]
|
||||
#Set the number of threads computers can run on. A higher number means more computers can run at once, but may induce lag.
|
||||
#Please note that some mods may not work with a thread count higher than 1. Use with caution.
|
||||
#Set the number of threads computers can run on. A higher number means more
|
||||
#computers can run at once, but may induce lag. Please note that some mods may
|
||||
#not work with a thread count higher than 1. Use with caution.
|
||||
#Range: > 1
|
||||
computer_threads = 1
|
||||
#The maximum time that can be spent executing tasks in a single tick, in milliseconds.
|
||||
#Note, we will quite possibly go over this limit, as there's no way to tell how long a will take - this aims to be the upper bound of the average time.
|
||||
#The maximum time that can be spent executing tasks in a single tick, in
|
||||
#milliseconds.
|
||||
#Note, we will quite possibly go over this limit, as there's no way to tell how
|
||||
#long a will take - this aims to be the upper bound of the average time.
|
||||
#Range: > 1
|
||||
max_main_global_time = 10
|
||||
#The ideal maximum time a computer can execute for in a tick, in milliseconds.
|
||||
#Note, we will quite possibly go over this limit, as there's no way to tell how long a will take - this aims to be the upper bound of the average time.
|
||||
#Note, we will quite possibly go over this limit, as there's no way to tell how
|
||||
#long a will take - this aims to be the upper bound of the average time.
|
||||
#Range: > 1
|
||||
max_main_computer_time = 5
|
||||
|
||||
@@ -36,25 +46,31 @@ command_require_creative = true
|
||||
enabled = true
|
||||
#Enable use of http websockets. This requires the "http_enable" option to also be true.
|
||||
websocket_enabled = true
|
||||
#The number of http requests a computer can make at one time. Additional requests will be queued, and sent when the running requests have finished. Set to 0 for unlimited.
|
||||
#The number of http requests a computer can make at one time. Additional requests
|
||||
#will be queued, and sent when the running requests have finished. Set to 0 for
|
||||
#unlimited.
|
||||
#Range: > 0
|
||||
max_requests = 16
|
||||
#The number of websockets a computer can have open at one time. Set to 0 for unlimited.
|
||||
#Range: > 1
|
||||
max_websockets = 4
|
||||
|
||||
#Limits bandwidth used by computers
|
||||
#Limits bandwidth used by computers.
|
||||
[http.bandwidth]
|
||||
#The number of bytes which can be downloaded in a second. This is shared across all computers. (bytes/s)
|
||||
#The number of bytes which can be downloaded in a second. This is shared across all computers. (bytes/s).
|
||||
#Range: > 1
|
||||
global_download = 33554432
|
||||
#The number of bytes which can be uploaded in a second. This is shared across all computers. (bytes/s)
|
||||
#The number of bytes which can be uploaded in a second. This is shared across all computers. (bytes/s).
|
||||
#Range: > 1
|
||||
global_upload = 33554432
|
||||
|
||||
#A list of rules which control behaviour of the "http" API for specific domains or IPs.
|
||||
#Each rule is an item with a 'host' to match against, and a series of properties. The host may be a domain name ("pastebin.com"),
|
||||
#wildcard ("*.pastebin.com") or CIDR notation ("127.0.0.0/8"). If no rules, the domain is blocked.
|
||||
#A list of rules which control behaviour of the "http" API for specific domains or
|
||||
#IPs. Each rule is an item with a 'host' to match against, and a series of
|
||||
#properties. Rules are evaluated in order, meaning earlier rules override later
|
||||
#ones.
|
||||
#The host may be a domain name ("pastebin.com"), wildcard ("*.pastebin.com") or
|
||||
#CIDR notation ("127.0.0.0/8").
|
||||
#If no rules, the domain is blocked.
|
||||
[[http.rules]]
|
||||
host = "$private"
|
||||
action = "deny"
|
||||
@@ -75,63 +91,68 @@ command_require_creative = true
|
||||
[peripheral]
|
||||
#Enable Command Block peripheral support
|
||||
command_block_enabled = false
|
||||
#The range of Wireless Modems at low altitude in clear weather, in meters
|
||||
#The range of Wireless Modems at low altitude in clear weather, in meters.
|
||||
#Range: 0 ~ 100000
|
||||
modem_range = 64
|
||||
#The range of Wireless Modems at maximum altitude in clear weather, in meters
|
||||
#The range of Wireless Modems at maximum altitude in clear weather, in meters.
|
||||
#Range: 0 ~ 100000
|
||||
modem_high_altitude_range = 384
|
||||
#The range of Wireless Modems at low altitude in stormy weather, in meters
|
||||
#The range of Wireless Modems at low altitude in stormy weather, in meters.
|
||||
#Range: 0 ~ 100000
|
||||
modem_range_during_storm = 64
|
||||
#The range of Wireless Modems at maximum altitude in stormy weather, in meters
|
||||
#The range of Wireless Modems at maximum altitude in stormy weather, in meters.
|
||||
#Range: 0 ~ 100000
|
||||
modem_high_altitude_range_during_storm = 384
|
||||
#Maximum amount of notes a speaker can play at once
|
||||
#Maximum amount of notes a speaker can play at once.
|
||||
#Range: > 1
|
||||
max_notes_per_tick = 8
|
||||
#The limit to how much monitor data can be sent *per tick*. Note:
|
||||
# - Bandwidth is measured before compression, so the data sent to the client is smaller.
|
||||
# - This ignores the number of players a packet is sent to. Updating a monitor for one player consumes the same bandwidth limit as sending to 20.
|
||||
# - A full sized monitor sends ~25kb of data. So the default (1MB) allows for ~40 monitors to be updated in a single tick.
|
||||
# - Bandwidth is measured before compression, so the data sent to the client is
|
||||
# smaller.
|
||||
# - This ignores the number of players a packet is sent to. Updating a monitor for
|
||||
# one player consumes the same bandwidth limit as sending to 20.
|
||||
# - A full sized monitor sends ~25kb of data. So the default (1MB) allows for ~40
|
||||
# monitors to be updated in a single tick.
|
||||
#Set to 0 to disable.
|
||||
#Range: > 0
|
||||
monitor_bandwidth = 1000000
|
||||
|
||||
#Various options relating to turtles.
|
||||
[turtle]
|
||||
#Set whether Turtles require fuel to move
|
||||
#Set whether Turtles require fuel to move.
|
||||
need_fuel = true
|
||||
#The fuel limit for Turtles
|
||||
#The fuel limit for Turtles.
|
||||
#Range: > 0
|
||||
normal_fuel_limit = 20000
|
||||
#The fuel limit for Advanced Turtles
|
||||
#The fuel limit for Advanced Turtles.
|
||||
#Range: > 0
|
||||
advanced_fuel_limit = 100000
|
||||
#If set to true, Turtles will be unable to build, dig, or enter protected areas (such as near the server spawn point)
|
||||
#If set to true, Turtles will be unable to build, dig, or enter protected areas
|
||||
#(such as near the server spawn point).
|
||||
obey_block_protection = true
|
||||
#If set to true, Turtles will push entities out of the way instead of stopping if there is space to do so
|
||||
#If set to true, Turtles will push entities out of the way instead of stopping if
|
||||
#there is space to do so.
|
||||
can_push = true
|
||||
|
||||
#Configure the size of various computer's terminals.
|
||||
#Larger terminals require more bandwidth, so use with care.
|
||||
[term_sizes]
|
||||
|
||||
#Terminal size of computers
|
||||
#Terminal size of computers.
|
||||
[term_sizes.computer]
|
||||
#Range: 1 ~ 255
|
||||
width = 51
|
||||
#Range: 1 ~ 255
|
||||
height = 19
|
||||
|
||||
#Terminal size of pocket computers
|
||||
#Terminal size of pocket computers.
|
||||
[term_sizes.pocket_computer]
|
||||
#Range: 1 ~ 255
|
||||
width = 26
|
||||
#Range: 1 ~ 255
|
||||
height = 20
|
||||
|
||||
#Maximum size of monitors (in blocks)
|
||||
#Maximum size of monitors (in blocks).
|
||||
[term_sizes.monitor]
|
||||
#Range: 1 ~ 32
|
||||
width = 8
|
||||
|
@@ -876,6 +876,9 @@
|
||||
#Black Flame Damage
|
||||
#Range: -1.0E7 ~ 1.0E7
|
||||
BLACK_FLAME_DAMAGE = 1.0
|
||||
#How long the wither lasts after stepping in black flame
|
||||
#Range: 0 ~ 100000000
|
||||
BLACK_FLAME_DEBUFF_TIME = 180
|
||||
|
||||
[eyes."fay sight"]
|
||||
#This is the cost of using the scroll
|
||||
@@ -1097,6 +1100,9 @@
|
||||
#Fallen Down Beam Growth
|
||||
#Range: 0.0 ~ 1.0E9
|
||||
FALLEN_DOWN_BEAM_GROWTH = 0.12
|
||||
#Fallen Down Beam Mana Scaled Damage
|
||||
#Range: 0.0 ~ 1.0E9
|
||||
FALLEN_DOWN_BEAM_MANA_SCALED_DAMAGE = 0.0
|
||||
|
||||
[secret.geas]
|
||||
#Geas Mana Cost
|
||||
|
@@ -90,6 +90,15 @@
|
||||
#This sets the time constant reduction (in ticks) per nearby Water source block for the Aquatic Entangler.
|
||||
#Range: 1 ~ 1000
|
||||
"Water Source Time Constant Reduction" = 20
|
||||
#If TRUE, the Aquatic Entangler will have particle effects when operating.
|
||||
Particles = true
|
||||
|
||||
[Devices.Composter]
|
||||
#This sets the base time constant (in ticks) for the Batch Composter.
|
||||
#Range: 20 ~ 72000
|
||||
"Time Constant" = 120
|
||||
#If TRUE, the Batch Composter will have particle effects when operating.
|
||||
Particles = true
|
||||
|
||||
[Dynamos]
|
||||
|
||||
@@ -208,3 +217,49 @@
|
||||
#If TRUE, Fluxtooth Mushrooms emit a redstone signal when fully grown. Disabling this may improve performance.
|
||||
"Redstone Mushroom Signal" = true
|
||||
|
||||
[Tools]
|
||||
|
||||
[Tools.Drill]
|
||||
#This sets the maximum base RF capacity for the Fluxbore.
|
||||
#Range: 1000 ~ 10000000
|
||||
"Base Capacity" = 50000
|
||||
|
||||
[Tools.Saw]
|
||||
#This sets the maximum base RF capacity for the Fluxsaw.
|
||||
#Range: 1000 ~ 10000000
|
||||
"Base Capacity" = 50000
|
||||
|
||||
[Tools.Capacitor]
|
||||
#This sets the maximum base RF capacity for the Flux Capacitor.
|
||||
#Range: 1000 ~ 10000000
|
||||
"Base Capacity" = 500000
|
||||
|
||||
[Tools.Magnet]
|
||||
#This sets the maximum base RF capacity for the Flux Magnet.
|
||||
#Range: 1000 ~ 10000000
|
||||
"Base Capacity" = 50000
|
||||
|
||||
[Tools.Reservoir]
|
||||
#This sets the maximum base fluid capacity for the Reservoir.
|
||||
#Range: 1000 ~ 10000000
|
||||
"Base Capacity" = 20000
|
||||
|
||||
[Tools."Potion Infuser"]
|
||||
#This sets the maximum base fluid capacity for the Potion Infuser.
|
||||
#Range: 1000 ~ 10000000
|
||||
"Base Capacity" = 4000
|
||||
|
||||
[Tools."Potion Quiver"]
|
||||
#This sets the maximum base fluid capacity for the Alchemical Quiver.
|
||||
#Range: 1000 ~ 10000000
|
||||
"Base Capacity" = 4000
|
||||
|
||||
[Tools."Watering Can"]
|
||||
#This sets the maximum base fluid capacity for the Watering Can.
|
||||
#Range: 1000 ~ 10000000
|
||||
"Base Capacity" = 4000
|
||||
#If TRUE, the Watering Can can be used by Fake Players.
|
||||
"Allow Fake Players" = false
|
||||
#If TRUE, the Watering Can consumes source blocks when refilling.
|
||||
"Consume Source Blocks" = true
|
||||
|
||||
|
Reference in New Issue
Block a user