Difference between revisions of "ComputerCraft.cfg"
From ComputerCraft Wiki
MKlegoman357 (Talk | contribs) m (Updated to CC 1.63) |
MKlegoman357 (Talk | contribs) (Updated to CC 1.65) |
||
Line 2: | Line 2: | ||
<pre> | <pre> | ||
# Configuration file | # Configuration file | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
general { | general { | ||
Line 48: | Line 19: | ||
B:http_enable=true | B:http_enable=true | ||
− | # | + | # A semicolon limited list of wildcards for domains that can be accessed through the "http" API on Computers. Set this to "*" to access to the entire internet. Example: "*.pastebin.com;*.github.com;*.computercraft.info" will restrict access to just those 3 domains. |
− | + | S:http_whitelist=* | |
# 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 | ||
Line 71: | Line 42: | ||
# Set whether Turtles require fuel to move | # Set whether Turtles require fuel to move | ||
B:turtlesNeedFuel=true | B:turtlesNeedFuel=true | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
</pre> | </pre> |
Revision as of 10:29, 12 October 2014
This is an example of the default ComputerCraft configuration file, as it's seen in version 1.63.
# Configuration file general { # The fuel limit for Advanced Turtles I:advancedTurtleFuelLimit=100000 # The disk space limit for computers and turtles, in bytes I:computerSpaceLimit=1000000 # Enable Command Block peripheral support B:enableCommandBlock=false # The disk space limit for floppy disks, in bytes I:floppySpaceLimit=125000 # Enable the "http" API on Computers (see "http_whitelist" for more fine grained control than this) B:http_enable=true # A semicolon limited list of wildcards for domains that can be accessed through the "http" API on Computers. Set this to "*" to access to the entire internet. Example: "*.pastebin.com;*.github.com;*.computercraft.info" will restrict access to just those 3 domains. S:http_whitelist=* # The range of Wireless Modems at maximum altitude in clear weather, in meters I:modem_highAltitudeRange=384 # The range of Wireless Modems at maximum altitude in stormy weather, in meters I:modem_highAltitudeRangeDuringStorm=96 # The range of Wireless Modems at low altitude in clear weather, in meters I:modem_range=64 # The range of Wireless Modems at low altitude in stormy weather, in meters I:modem_rangeDuringStorm=16 # The frequency that treasure disks will be found in dungeon chests, from 0 to 100. Increase this value if running a modpack with lots of mods that add dungeon loot, or you just want more treasure disks. Set to 0 to disable treasure disks. I:treasureDiskLootFrequency=1 # The fuel limit for Turtles I:turtleFuelLimit=20000 # Set whether Turtles require fuel to move B:turtlesNeedFuel=true }