Advertisement
Guest User

Untitled

a guest
Jul 12th, 2016
793
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 70.28 KB | None | 0 0
  1. # OpenComputers configuration. This file uses typesafe config's HOCON syntax.
  2. # Try setting your syntax highlighting to Ruby, to help readability. At least
  3. # in Sublime Text that works really well. Note that this file is overwritten
  4. # whenever you start the game! Changes to the comments may vanish.
  5. # Note that all mentions of 'KB' or 'kilobyte' mean 1024 bytes.
  6. opencomputers {
  7.  
  8. # Client side settings, presentation and performance related stuff.
  9. client {
  10.  
  11. # The radius in which computer beeps can be heard.
  12. beepRadius=16
  13.  
  14. # The sample rate used for generating beeps of computers' internal
  15. # speakers. Use custom values at your own responsibility here; if it
  16. # breaks OC you'll get no support. Some potentially reasonable
  17. # lower values are 16000 or even 8000 (which was the old default, but
  18. # leads to artifacting on certain frequencies).
  19. beepSampleRate=44100
  20.  
  21. # The base volume of beeps generated by computers. This may be in a
  22. # range of [0, 127], where 0 means mute (the sound will not even be
  23. # generated), and 127 means maximum amplitude / volume.
  24. beepVolume=32
  25.  
  26. # Whether to emit particle effects around players via nanomachines. This
  27. # includes the basic particles giving a rough indication of the current
  28. # power level of the nanomachines as well as particles emitted by the
  29. # particle effect behaviors.
  30. enableNanomachinePfx=true
  31.  
  32. # This is the scaling of the individual chars rendered on screens. This
  33. # is set to slightly overscale per default, to avoid gaps between fully
  34. # filled chars to appear (i.e. the block symbol that is used for cursor
  35. # blinking for example) on less accurate hardware.
  36. fontCharScale=1.01
  37.  
  38. # Which font renderer to use. Defaults to `hexfont` if invalid.
  39. # Possible values:
  40. # - hexfont: the (since 1.3.2) default font renderer. Font in .hex format
  41. # capable of rendering many unicode glyphs.
  42. # The used font data can be swapped out using resource packs,
  43. # but is harder to work with, since it involves binary data.
  44. # - texture: the old, font-texture based font renderer that was used
  45. # in OC versions prior to 1.3.2. This will allow overriding
  46. # the font texture as before. Keep in mind that this renderer
  47. # is slightly less efficient than the new one, and more
  48. # importantly, can only render code page 437 (as opposed to...
  49. # a *lot* of unicode).
  50. fontRenderer=hexfont
  51.  
  52. # The distance at which to start fading out the hologram (as with
  53. # hologramRenderDistance). This is purely cosmetic, to avoid image
  54. # disappearing instantly when moving too far away from a projector.
  55. # It does not affect performance. Holograms are transparent anyway.
  56. hologramFadeStartDistance=48
  57.  
  58. # This controls how often holograms 'flicker'. This is the chance that it
  59. # flickers for *each frame*, meaning if you're running at high FPS you
  60. # may want to lower this a bit, to avoid it flickering too much.
  61. hologramFlickerFrequency=0.025
  62.  
  63. # The maximum render distance of a hologram projected by a highest tier
  64. # hologram projector when at maximum scale. Render distance is scaled
  65. # down with the actual scale of the hologram.
  66. hologramRenderDistance=64
  67.  
  68. # The maximum distance at which to render text on screens. Rendering text
  69. # can be pretty expensive, so if you have a lot of screens you'll want to
  70. # avoid huge numbers here. Note that this setting is client-sided, and
  71. # only has an impact on render performance on clients.
  72. maxScreenTextRenderDistance=20
  73.  
  74. # The color of monochrome text (i.e. displayed when in 1-bit color depth,
  75. # e.g. tier one screens / GPUs, or higher tier set to 1-bit color depth).
  76. # Defaults to white, feel free to make it some other color, tho!
  77. monochromeColor="0xFFFFFF"
  78.  
  79. # Position of the power indicator for nanomachines, by default left to the
  80. # player's health, specified by negative values. Values in [0, 1) will be
  81. # treated as relative positions, values in [1, inf) will be treated as
  82. # absolute positions.
  83. nanomachineHudPos=[
  84. -1,
  85. -1
  86. ]
  87.  
  88. # Render robots' names as a label above them when near them
  89. robotLabels=true
  90.  
  91. # The distance at which to start fading out the text on screens. This is
  92. # purely cosmetic, to avoid text disappearing instantly when moving too
  93. # far away from a screen. This should have no measurable impact on
  94. # performance. Note that this needs OpenGL 1.4 to work, otherwise text
  95. # will always just instantly disappear when moving away from the screen
  96. # displaying it.
  97. screenTextFadeStartDistance=15
  98.  
  99. # The volume multiplier applied to sounds from this mod like the computer
  100. # running noise. Disable sounds by setting this to zero.
  101. soundVolume=1
  102.  
  103. # If you prefer the text on the screens to be aliased (you know, *not*
  104. # anti-aliased / smoothed) turn this option off.
  105. textAntiAlias=true
  106.  
  107. # Whether to apply linear filtering for text displayed on screens when the
  108. # screen has to be scaled down - i.e. the text is rendered at a resolution
  109. # lower than their native one, e.g. when the GUI scale is less than one or
  110. # when looking at a far away screen. This leads to smoother text for
  111. # scaled down text but results in characters not perfectly connecting
  112. # anymore (for example for box drawing characters. Look it up on
  113. # Wikipedia.)
  114. textLinearFiltering=false
  115. }
  116.  
  117. # Computer related settings, concerns server performance and security.
  118. computer {
  119.  
  120. # The provided call budgets by the three tiers of CPU and memory. Higher
  121. # budgets mean that more direct calls can be performed per tick. You can
  122. # raise this to increase the "speed" of computers at the cost of higher
  123. # real CPU time. Lower this to lower the load Lua executors put on your
  124. # machine / server, at the cost of slower computers. This list must
  125. # contain exactly three entries, or it will be ignored.
  126. callBudgets=[
  127. 0.5,
  128. 1,
  129. 1.5
  130. ]
  131.  
  132. # This determines whether computers can only be used by players that are
  133. # registered as users on them. Per default a newly placed computer has no
  134. # users. Whenever there are no users the computer is free for all. Users
  135. # can be managed via the Lua API (computer.addUser, computer.removeUser,
  136. # computer.users). If this is true, the following interactions are only
  137. # possible for users:
  138. # - input via the keyboard and touch screen.
  139. # - inventory management.
  140. # - breaking the computer block.
  141. # If this is set to false, all computers will always be usable by all
  142. # players, no matter the contents of the user list. Note that operators
  143. # are treated as if they were in the user list of every computer, i.e. no
  144. # restrictions apply to them.
  145. # See also: `maxUsers` and `maxUsernameLength`.
  146. canComputersBeOwned=true
  147.  
  148. # The number of components the different CPU tiers support. This list
  149. # must contain exactly three entries, or it will be ignored.
  150. cpuComponentCount=[
  151. 8,
  152. 12,
  153. 16
  154. ]
  155.  
  156. # The maximum size of the byte array that can be stored on EEPROMs as configuration data.
  157. eepromDataSize=256
  158.  
  159. # The maximum size of the byte array that can be stored on EEPROMs as executable data..
  160. eepromSize=4096
  161.  
  162. # Whether to delete all contents in the /tmp file system when performing
  163. # a 'soft' reboot (i.e. via `computer.shutdown(true)`). The tmpfs will
  164. # always be erased when the computer is completely powered off, even if
  165. # it crashed. This setting is purely for software-triggered reboots.
  166. eraseTmpOnReboot=false
  167.  
  168. # The time in milliseconds that scheduled computers are forced to wait
  169. # before executing more code. This avoids computers to "busy idle",
  170. # leading to artificially high CPU load. If you're worried about
  171. # performance on your server, increase this number a little (it should
  172. # never exceed 50, a single tick, though) to reduce CPU load even more.
  173. executionDelay=12
  174.  
  175. # Settings specific to the Lua architecture.
  176. lua {
  177.  
  178. # Whether to allow loading precompiled bytecode via Lua's `load`
  179. # function, or related functions (`loadfile`, `dofile`). Enable this
  180. # only if you absolutely trust all users on your server and all Lua
  181. # code you run. This can be a MASSIVE SECURITY RISK, since precompiled
  182. # code can easily be used for exploits, running arbitrary code on the
  183. # real server! I cannot stress this enough: only enable this is you
  184. # know what you're doing.
  185. allowBytecode=false
  186.  
  187. # Whether to allow user defined __gc callbacks, i.e. __gc callbacks
  188. # defined *inside* the sandbox. Since garbage collection callbacks
  189. # are not sandboxed (hooks are disabled while they run), this is not
  190. # recommended.
  191. allowGC=false
  192.  
  193. # Whether to make the Lua 5.3 architecture available. If enabled, you
  194. # can reconfigure any CPU to use the Lua 5.3 architecture.
  195. enableLua53=true
  196.  
  197. # The total maximum amount of memory a Lua machine may use for user
  198. # programs. The total amount made available by components cannot
  199. # exceed this. The default is 64*1024*1024. Keep in mind that this does
  200. # not include memory reserved for built-in code such as `machine.lua`.
  201. # IMPORTANT: DO NOT MESS WITH THIS UNLESS YOU KNOW WHAT YOU'RE DOING.
  202. # IN PARTICULAR, DO NOT REPORT ISSUES AFTER MESSING WITH THIS!
  203. maxTotalRam=67108864
  204.  
  205. # This setting allows you to fine-tune how RAM sizes are scaled internally
  206. # on 64 Bit machines (i.e. when the Minecraft server runs in a 64 Bit VM).
  207. # Why is this even necessary? Because objects consume more memory in a 64
  208. # Bit environment than in a 32 Bit one, due to pointers and possibly some
  209. # integer types being twice as large. It's actually impossible to break
  210. # this down to a single number, so this is really just a rough guess. If
  211. # you notice this doesn't match what some Lua program would use on 32 bit,
  212. # feel free to play with this and report your findings!
  213. # Note that the values *displayed* to Lua via `computer.totalMemory` and
  214. # `computer.freeMemory` will be scaled by the inverse, so that they always
  215. # correspond to the "apparent" sizes of the installed memory modules. For
  216. # example, when running a computer with a 64KB RAM module, even if it's
  217. # scaled up to 96KB, `computer.totalMemory` will return 64KB, and if there
  218. # are really 45KB free, `computer.freeMemory` will return 32KB.
  219. ramScaleFor64Bit=1.8
  220.  
  221. # The sizes of the six levels of RAM, in kilobytes. This list must
  222. # contain exactly six entries, or it will be ignored. Note that while
  223. # there are six levels of RAM, they still fall into the three tiers of
  224. # items (level 1, 2 = tier 1, level 3, 4 = tier 2, level 5, 6 = tier 3).
  225. ramSizes=[
  226. 192,
  227. 256,
  228. 384,
  229. 512,
  230. 768,
  231. 1024
  232. ]
  233. }
  234.  
  235. # Sanity check for username length for users registered with computers. We
  236. # store the actual user names instead of a hash to allow iterating the
  237. # list of registered users on the Lua side.
  238. # See also: `canComputersBeOwned`.
  239. maxUsernameLength=32
  240.  
  241. # The maximum number of users that can be registered with a single
  242. # computer. This is used to avoid computers allocating unchecked amounts
  243. # of memory by registering an unlimited number of users. See also:
  244. # `canComputersBeOwned`.
  245. maxUsers=16
  246.  
  247. # The time in seconds to wait after a computer has been restored before it
  248. # continues to run. This is meant to allow the world around the computer
  249. # to settle, avoiding issues such as components in neighboring chunks
  250. # being removed and then re-connected and other odd things that might
  251. # happen.
  252. startupDelay=0.25
  253.  
  254. # The overall number of threads to use to drive computers. Whenever a
  255. # computer should run, for example because a signal should be processed or
  256. # some sleep timer expired it is queued for execution by a worker thread.
  257. # The higher the number of worker threads, the less likely it will be that
  258. # computers block each other from running, but the higher the host
  259. # system's load may become.
  260. threads=4
  261.  
  262. # The time in seconds a program may run without yielding before it is
  263. # forcibly aborted. This is used to avoid stupidly written or malicious
  264. # programs blocking other computers by locking down the executor threads.
  265. # Note that changing this won't have any effect on computers that are
  266. # already running - they'll have to be rebooted for this to take effect.
  267. timeout=5
  268. }
  269.  
  270. # Settings that are intended for debugging issues, not for normal use.
  271. # You usually don't want to touch these unless asked to do so by a developer.
  272. debug {
  273.  
  274. # On some platforms the native library can crash the game, so there are
  275. # a few checks in place to avoid trying to load it in those cases. This
  276. # is Windows XP and Windows Server 2003, right. If you think it might
  277. # work nonetheless (newer builds of Server2k3 e.g.) you might want to
  278. # try setting this to `true`. Use this at your own risk. If the game
  279. # crashes as a result of setting this to `true` DO NOT REPORT IT.
  280. alwaysTryNative=false
  281.  
  282. # Prevent OC calling Lua's os.setlocale method to ensure number
  283. # formatting is the same on all systems it is run on. Use this if you
  284. # suspect this might mess with some other part of Java (this affects
  285. # the native C locale).
  286. disableLocaleChanging=false
  287.  
  288. # Disable memory limit enforcement. This means Lua states can
  289. # theoretically use as much memory as they want. Only relevant when
  290. # using the native library.
  291. disableMemoryLimit=false
  292.  
  293. # Disable computer state persistence. This means that computers will
  294. # automatically be rebooted when loaded after being unloaded, instead
  295. # of resuming with their exection (it also means the state is not even
  296. # saved). Only relevant when using the native library.
  297. disablePersistence=false
  298.  
  299. # Disable user data support. This means any otherwise supported
  300. # userdata (implementing the Value interface) will not be pushed
  301. # to the Lua state.
  302. disableUserdata=false
  303.  
  304. # Enable debug card functionality. This may also be of use for custom
  305. # maps, so it is enabled by default. If you run a server where people
  306. # may cheat in items but should not have op/admin-like rights, you may
  307. # want to set this to false. This will *not* remove the card, it will
  308. # just make all functions it provides error out.
  309. enableDebugCard=true
  310.  
  311. # Force the buffered file system to be case insensitive. This makes it
  312. # impossible to have multiple files whose names only differ in their
  313. # capitalization, which is commonly the case on Windows, for example.
  314. # This only takes effect when bufferChanges is set to true.
  315. forceCaseInsensitiveFS=false
  316.  
  317. # Forces the use of the LuaJ fallback instead of the native libraries.
  318. # Use this if you have concerns using native libraries or experience
  319. # issues with the native library.
  320. forceLuaJ=false
  321.  
  322. # Force loading one specific library, to avoid trying to load any
  323. # others. Use this if you get warnings in the log or are told to do
  324. # so for debugging purposes ;-)
  325. forceNativeLibWithName=""
  326.  
  327. # Pass along IDs of items and fluids when converting them to a table
  328. # representation for Lua.
  329. insertIdsInConverters=false
  330.  
  331. # This setting is meant for debugging errors that occur in Lua callbacks.
  332. # Per default, if an error occurs and it has a message set, only the
  333. # message is pushed back to Lua, and that's it. If you encounter weird
  334. # errors or are developing an addon you'll want the stacktrace for those
  335. # errors. Enabling this setting will log them to the game log. This is
  336. # disabled per default to avoid spamming the log with inconsequentual
  337. # exceptions such as IllegalArgumentExceptions and the like.
  338. logCallbackErrors=false
  339.  
  340. # Logs the full error when a native library fails to load. This is
  341. # disabled by default to avoid spamming the log, since libraries are
  342. # iterated until one works, so it's very likely for some to fail. Use
  343. # this in case all libraries fail to load even though you'd expect one
  344. # to work.
  345. logFullNativeLibLoadErrors=false
  346.  
  347. # Logs information about malformed glyphs (i.e. glyphs that deviate in
  348. # width from what wcwidth says).
  349. logHexFontErrors=false
  350.  
  351. # Used to suppress log spam for OpenGL errors on derpy drivers. I'm
  352. # quite certain the code in the font render is valid, display list
  353. # compatible OpenGL, but it seems to cause 'invalid operation' errors
  354. # when executed as a display list. I'd be happy to be proven wrong,
  355. # since it'd restore some of my trust into AMD drivers...
  356. logOpenGLErrors=false
  357.  
  358. # Extract the native library with Lua into the system's temporary
  359. # directory instead of the game directory (e.g. /tmp on Linux). The
  360. # default is to extract into the game directory, to avoid issues when
  361. # the temporary directory is mounted as noexec (meaning the lib cannot)
  362. # be loaded. There is also less of a chance of conflicts when running
  363. # multiple servers or server and client on the same machine.
  364. nativeInTmpDir=false
  365.  
  366. # Due to a bug in Minecraft's lighting code there's an issue where
  367. # lighting does not properly update near light emitting blocks that are
  368. # fully solid - like screens, for example. This can be annoying when
  369. # using other blocks that dynamically change their brightness (e.g. for
  370. # the addon mod OpenLights). Enable this to force light emitting blocks
  371. # in oc to periodically (every two seconds) do an update. This should
  372. # not have an overly noticeable impact on performance, but it's disabled
  373. # by default because it is unnecessary in *most* cases.
  374. periodicallyForceLightUpdate=false
  375.  
  376. # Whether to always register the LuaJ architecture - even if the native
  377. # library is available. In that case it is possible to switch between
  378. # the two like any other registered architecture.
  379. registerLuaJArchitecture=false
  380.  
  381. # This is meant for debugging errors. Enabling this has a high impact
  382. # on computers' save and load performance, so you should not enable
  383. # this unless you're asked to.
  384. verbosePersistenceErrors=false
  385. }
  386.  
  387. # File system related settings, performance and and balancing.
  388. filesystem {
  389.  
  390. # Whether persistent file systems such as disk drivers should be
  391. # 'buffered', and only written to disk when the world is saved. This
  392. # applies to all hard drives. The advantage of having this enabled is that
  393. # data will never go 'out of sync' with the computer's state if the game
  394. # crashes. The price is slightly higher memory consumption, since all
  395. # loaded files have to be kept in memory (loaded as in when the hard drive
  396. # is in a computer).
  397. bufferChanges=true
  398.  
  399. # The base 'cost' of a single file or directory on a limited file system,
  400. # such as hard drives. When computing the used space we add this cost to
  401. # the real size of each file (and folders, which are zero sized
  402. # otherwise). This is to ensure that users cannot spam the file system
  403. # with an infinite number of files and/or folders. Note that the size
  404. # returned via the API will always be the real file size, however.
  405. fileCost=512
  406.  
  407. # The size of writable floppy disks, in kilobytes.
  408. floppySize=512
  409.  
  410. # Number of physical platters to pretend a disk has in unmanaged mode. This
  411. # controls seek times, in how it emulates sectors overlapping (thus sharing
  412. # a common head position for access).
  413. hddPlatterCounts=[
  414. 2,
  415. 4,
  416. 6
  417. ]
  418.  
  419. # The sizes of the three tiers of hard drives, in kilobytes. This list
  420. # must contain exactly three entries, or it will be ignored.
  421. hddSizes=[
  422. 1024,
  423. 2048,
  424. 4096
  425. ]
  426.  
  427. # The maximum number of file handles any single computer may have open at
  428. # a time. Note that this is *per filesystem*. Also note that this is only
  429. # enforced by the filesystem node - if an add-on decides to be fancy it
  430. # may well ignore this. Since file systems are usually 'virtual' this will
  431. # usually not have any real impact on performance and won't be noticeable
  432. # on the host operating system.
  433. maxHandles=16
  434.  
  435. # The maximum block size that can be read in one 'read' call on a file
  436. # system. This is used to limit the amount of memory a call from a user
  437. # program can cause to be allocated on the host side: when 'read' is,
  438. # called a byte array with the specified size has to be allocated. So if
  439. # this weren't limited, a Lua program could trigger massive memory
  440. # allocations regardless of the amount of RAM installed in the computer it
  441. # runs on. As a side effect this pretty much determines the read
  442. # performance of file systems.
  443. maxReadBuffer=2048
  444.  
  445. # When skipping more than this number of sectors in unmanaged mode, the
  446. # pause specified in sectorSeekTime will be enforced. We use this instead
  447. # of linear scaling for movement because those values would have to be
  448. # really small, which is hard to conceptualize and configure.
  449. sectorSeekThreshold=128
  450.  
  451. # The time to pause when the head movement threshold is exceeded.
  452. sectorSeekTime=0.1
  453.  
  454. # The size of the /tmp filesystem that each computer gets for free. If
  455. # set to a non-positive value the tmp file system will not be created.
  456. tmpSize=64
  457. }
  458. hologram {
  459.  
  460. # Whether the hologram block should provide light. It'll also emit light
  461. # when off, because having state-based light in MC is... painful.
  462. emitLight=true
  463.  
  464. # This controls the maximum scales of holograms, by tier.
  465. # The size at scale 1 is 3x2x3 blocks, at scale 3 the hologram will
  466. # span up to 9x6x9 blocks. Unlike most other `client' settings, this
  467. # value is only used for validation *on the server*, with the effects
  468. # only being visible on the client.
  469. # Warning: very large values may lead to rendering and/or performance
  470. # issues due to the high view distance! Increase at your own peril.
  471. maxScale=[
  472. 3,
  473. 4
  474. ]
  475.  
  476. # This controls the maximum translation of holograms, by tier.
  477. # The scale is in "hologram sizes", i.e. scale 1 allows offsetting a
  478. # hologram once by its own size.
  479. maxTranslation=[
  480. 0.25,
  481. 0.5
  482. ]
  483.  
  484. # The delay forced on computers between calls to `hologram.setRaw`, in
  485. # seconds. Lower this if you want faster updates, raise this if you're
  486. # worried about bandwidth use; in *normal* use-cases this will never be
  487. # an issue. When abused, `setRaw` can be used to generate network traffic
  488. # due to changed data being sent to clients. With the default settings,
  489. # the *worst case* is ~30KB/s/client. Again, for normal use-cases this
  490. # is actually barely noticeable.
  491. setRawDelay=0.2
  492. }
  493.  
  494. # Settings for mod integration (the mod previously known as OpenComponents).
  495. integration {
  496. buildcraft {
  497.  
  498. # Cost to convert a loot disk to another in the BuildCraft programming table.
  499. programmingTableCost=5000
  500. }
  501.  
  502. # The name to use for the global fake player needed for some mod
  503. # interactions.
  504. fakePlayerName="[OpenComputers]"
  505.  
  506. # The UUID to use for the global fake player needed for some mod
  507. # interactions.
  508. fakePlayerUuid="7e506b5d-2ccb-4ac4-a249-5624925b0c67"
  509.  
  510. # A list of mods (by mod id) for which support should NOT be enabled. Use
  511. # this to disable support for mods you feel should not be controllable via
  512. # computers (such as magic related mods, which is why Thaumcraft is on this
  513. # list by default.)
  514. modBlacklist=[
  515. Thaumcraft,
  516. thaumicenergistics
  517. ]
  518.  
  519. # A list of tile entities by class name that should NOT be accessible via
  520. # the Adapter block. Add blocks here that can lead to crashes or deadlocks
  521. # (and report them, please!)
  522. peripheralBlacklist=[
  523. "net.minecraft.tileentity.TileEntityCommandBlock"
  524. ]
  525.  
  526. # Vanilla integration related settings.
  527. vanilla {
  528.  
  529. # Whether to allow the item stack converter to push NBT data in
  530. # compressed format (GZIP'ed). This can be useful for pushing this
  531. # data back to other callbacks. However, given a sophisticated
  532. # enough software (Lua script) it is possible to decode this data,
  533. # and get access to things that should be considered implementation
  534. # detail / private (mods may keep "secret" data in such NBT tags).
  535. # The recommended method is to use the database component instead.
  536. allowItemStackNBTTags=false
  537.  
  538. # Whether to enable the command block driver. Enabling this allows
  539. # computers to set and execute commands via command blocks next to
  540. # adapter blocks. The commands are run using OC's general fake player.
  541. enableCommandBlockDriver=false
  542.  
  543. # Whether to enable the inventory driver. This driver allows interacting
  544. # with inventories adjacent to adapters in a way similar to what the
  545. # inventory controller upgrade allows when built into a robot or placed
  546. # inside an adapter. It is therefore considered to be somewhat cheaty by
  547. # some, and disabled by default. If you don't care about that, feel free
  548. # to enable this driver.
  549. enableInventoryDriver=false
  550.  
  551. # Whether to enable the tank driver. This driver is like the inventory
  552. # driver, just for fluid tanks, and is disabled by default with the same
  553. # reasoning as the inventory driver - using a tank controller upgrade in
  554. # an adapter has pretty much the same effect.
  555. enableTankDriver=false
  556. }
  557. }
  558.  
  559. # Internet settings, security related.
  560. internet {
  561.  
  562. # This is a list of blacklisted domain names. If an HTTP request is made
  563. # or a socket connection is opened the target address will be compared
  564. # to the addresses / adress ranges in this list. It it is present in this
  565. # list, the request will be denied.
  566. # Entries are either domain names (www.example.com) or IP addresses in
  567. # string format (10.0.0.3), optionally in CIDR notation to make it easier
  568. # to define address ranges (1.0.0.0/8). Domains are resolved to their
  569. # actual IP once on startup, future requests are resolved and compared
  570. # to the resolved addresses.
  571. # By default all local addresses are blocked. This is only meant as a
  572. # thin layer of security, to avoid average users hosting a game on their
  573. # local machine having players access services in their local network.
  574. # Server hosters are expected to configure their network outside of the
  575. # mod's context in an appropriate manner, e.g. using a system firewall.
  576. blacklist=[
  577. "127.0.0.0/8",
  578. "10.0.0.0/8",
  579. "192.168.0.0/16",
  580. "172.16.0.0/12"
  581. ]
  582.  
  583. # Whether to allow HTTP requests via internet cards. When enabled,
  584. # the `request` method on internet card components becomes available.
  585. enableHttp=true
  586.  
  587. # Whether to allow adding custom headers to HTTP requests.
  588. enableHttpHeaders=true
  589.  
  590. # Whether to allow TCP connections via internet cards. When enabled,
  591. # the `connect` method on internet card components becomes available.
  592. enableTcp=true
  593.  
  594. # The maximum concurrent TCP connections *each* internet card can have
  595. # open at a time.
  596. maxTcpConnections=4
  597.  
  598. # The time in seconds to wait for a response to a request before timing
  599. # out and returning an error message. If this is zero (the default) the
  600. # request will never time out.
  601. requestTimeout=0
  602.  
  603. # The number of threads used for processing host name lookups and HTTP
  604. # requests in the background. The more there are, the more concurrent
  605. # connections can potentially be opened by computers, and the less likely
  606. # they are to delay each other.
  607. threads=4
  608.  
  609. # This is a list of whitelisted domain names. Requests may only be made
  610. # to addresses that are present in this list. If this list is empty,
  611. # requests may be made to all addresses not blacklisted. Note that the
  612. # blacklist is always applied, so if an entry is present in both the
  613. # whitelist and the blacklist, the blacklist will win.
  614. # Entries are of the same format as in the blacklist. Examples:
  615. # "gist.github.com", "www.pastebin.com"
  616. whitelist=[]
  617. }
  618.  
  619. # Other settings that you might find useful to tweak.
  620. misc {
  621.  
  622. # Allow robots to get a table representation of item stacks using the
  623. # inventory controller upgrade? (i.e. whether the getStackInSlot method
  624. # of said upgrade is enabled or not). Also applies to tank controller
  625. # upgrade and it's fluid getter method.
  626. allowItemStackInspection=true
  627.  
  628. # List of item descriptors of assembler template base items to blacklist,
  629. # i.e. for disabling the assembler template for. Entries must be of the
  630. # format 'itemid@damage', were the damage is optional.
  631. # Examples: 'OpenComputers:case3', 'minecraft:stonebrick@1'
  632. assemblerBlacklist=[]
  633.  
  634. # Hard limit for size of byte arrays passed to data card callbacks. If this
  635. # limit is exceeded, the call fails and does nothing.
  636. dataCardHardLimit=1048576
  637.  
  638. # Soft limit for size of byte arrays passed to data card callbacks. If this
  639. # limit is exceeded, a longer sleep is enforced (see dataCardTimeout).
  640. dataCardSoftLimit=8192
  641.  
  642. # Time in seconds to pause a calling machine when the soft limit for a data
  643. # card callback is exceeded.
  644. dataCardTimeout=1
  645.  
  646. # By default the disassembler can only be used to disassemble items from
  647. # OpenComputers itself (or objects whitelisted via the API). If you'd
  648. # like to allow the disassembler to work on all kinds of items, even from
  649. # other mods, set this to true.
  650. disassembleAllTheThings=false
  651.  
  652. # The probability that an item breaks when disassembled. This chance
  653. # applies *per extracted item*. For example, if an item was crafted from
  654. # three other items and gets disassembled, each of those three items has
  655. # this chance of breaking in the process.
  656. disassemblerBreakChance=0.05
  657.  
  658. # Names of items / blocks that are blacklisted. Recipes containing these
  659. # as inputs will be ignored by the disassembler.
  660. disassemblerInputBlacklist=[
  661. "minecraft:fire"
  662. ]
  663.  
  664. # Controls how noisy results from the Geolyzer are. This is the maximum
  665. # deviation from the original value at the maximum vertical distance
  666. # from the geolyzer. Noise increases linearly with the vertical distance
  667. # to the Geolyzer. So yes, on the same height, the returned value are of
  668. # equal 'quality', regardless of the real distance. This is a performance
  669. # trade-off.
  670. geolyzerNoise=2
  671.  
  672. # The range, in blocks, in which the Geolyzer can scan blocks. Note that
  673. # it uses the maximum-distance, not the euclidean one, i.e. it can scan
  674. # in a cube surrounding it with twice this value as its edge length.
  675. geolyzerRange=32
  676.  
  677. # Whether to give a new player a free copy of the manual. This will only
  678. # happen one time per game, not per world, not per death. Once. If this
  679. # is still too much for your taste, disable it here ;-)
  680. giveManualToNewPlayers=true
  681.  
  682. # Whether to not show your special thinger (if you have one you know it).
  683. hideOwnSpecial=false
  684.  
  685. # Whether to pass along the name of the user that caused an input signals
  686. # to the computer (mouse and keyboard signals). If you feel this breaks
  687. # the game's immersion, disable it.
  688. # Note: also applies to the motion sensor.
  689. inputUsername=true
  690.  
  691. # The probability (or rather, weighted chance) that a program disk is
  692. # spawned as loot in a treasure chest. For reference, iron ingots have
  693. # a value of 10, gold ingots a value of 5 and and diamonds a value of 3.
  694. # This is the chance *that* a disk is created. Which disk that will be
  695. # is decided in an extra roll of the dice.
  696. lootProbability=5
  697.  
  698. # Whether to allow loot disk cycling by crafting them with a wrench.
  699. lootRecrafting=true
  700.  
  701. # The maximum length of a string that may be pasted. This is used to limit
  702. # the size of the data sent to the server when the user tries to paste a
  703. # string from the clipboard (Shift+Ins on a screen with a keyboard).
  704. maxClipboard=1024
  705.  
  706. # The maximum number of "data parts" a network packet is allowed to have.
  707. # When sending a network message, from Lua this may look like so:
  708. # component.modem.broadcast(port, "first", true, "third", 123)
  709. # This limits how many arguments can be passed and are wrapped into a
  710. # packet. This limit mostly serves as a protection for lower-tier
  711. # computers, to avoid them getting nuked by more powerful computers.
  712. maxNetworkPacketParts=8
  713.  
  714. # The maximum size of network packets to allow sending via network cards.
  715. # This has *nothing to do* with real network traffic, it's just a limit
  716. # for the network cards, mostly to reduce the chance of computer with a
  717. # lot of RAM killing those with less by sending huge packets. This does
  718. # not apply to HTTP traffic.
  719. maxNetworkPacketSize=8192
  720.  
  721. # The maximum number of ports a single network card can have opened at
  722. # any given time.
  723. maxOpenPorts=16
  724.  
  725. # The maximum height of multi-block screens, in blocks. This is limited to
  726. # avoid excessive computations for merging screens. If you really need
  727. # bigger screens it's probably safe to bump this quite a bit before you
  728. # notice anything, since at least incremental updates should be very
  729. # efficient (i.e. when adding/removing a single screen).
  730. maxScreenHeight=6
  731.  
  732. # The maximum width of multi-block screens, in blocks.
  733. # See also: `maxScreenHeight`.
  734. maxScreenWidth=8
  735.  
  736. # The maximum distance a wireless message can be sent. In other words,
  737. # this is the maximum signal strength a wireless network card supports.
  738. # This is used to limit the search range in which to check for modems,
  739. # which may or may not lead to performance issues for ridiculous ranges -
  740. # like, you know, more than the loaded area.
  741. # See also: `wirelessCostPerRange`.
  742. maxWirelessRange=400
  743.  
  744. # Probablility that at certain celebratory times crafting an OC item will
  745. # spawn a present in the crafting player's inventory. Set to zero to
  746. # disable.
  747. presentChance=0.05
  748.  
  749. # Enforced delay when changing a redstone emitting component's output,
  750. # such as the redstone card and redstone I/O block. Lowering this can
  751. # have very negative impact on server TPS, so beware.
  752. redstoneDelay=0.1
  753.  
  754. # The general upgrade tier of the switch built into server racks, i.e. how
  755. # upgraded server racks' switching logic is. Prior to the introduction of
  756. # this setting (1.5.15) this was always none. This applies to all
  757. # properties, i.e. througput, frequency and buffer size.
  758. # Valid values are: 0 = none, 1 = tier 1, 2 = tier 2, 3 = tier 3.
  759. serverRackSwitchTier=1
  760.  
  761. # The number of remote terminals supported by each server tier.
  762. terminalsPerTier=[
  763. 2,
  764. 4,
  765. 8
  766. ]
  767.  
  768. # Override for the worker threads' thread priority. If set to a value
  769. # lower than 1 it will use the default value, which is half-way between
  770. # the system minimum and normal priority. Valid values may differ between
  771. # Java versions, but usually the minimum value (lowest priority) is 1,
  772. # the normal value is 5 and the maximum value is 10. If a manual value is
  773. # given it is automatically capped at the maximum.
  774. # USE THIS WITH GREAT CARE. Using a high priority for worker threads may
  775. # avoid issues with computers timing out, but can also lead to higher
  776. # server load. AGAIN, USE WITH CARE!
  777. threadPriority=-1
  778.  
  779. # The maximum range between the drone/robot and a villager for a trade to
  780. # be performed by the trading upgrade
  781. tradingRange=8
  782.  
  783. # Whether to perform an update check and informing local players and OPs
  784. # if a new version is available (contacts Github once the first player
  785. # joins a server / the first map in single player is opened).
  786. updateCheck=true
  787. }
  788.  
  789. # Nanomachine related values. Note that most of these are relative, as
  790. # they scale with the number of total effects controlled by nanomachines,
  791. # which may very much vary depending on other mods used together with OC.
  792. # To configure this, you'll need to know how this works a bit more in-
  793. # depth, so here goes: there are three layers, the behavior layer, the
  794. # connector layer, and the input layer. The behavior layer consists of
  795. # one node for each behavior provided by registered providers (by default
  796. # these will be potion effects and a few other things). The connector
  797. # layer merely serves to mix things up a little. The input layer is made
  798. # up from nodes that can be triggered by the nanomachines. Each connector
  799. # node has behavior nodes it outputs to, and gets signals from input nodes.
  800. # Behavior nodes get signals from both the connector and the input layers.
  801. # Reconfiguring builds up random connections. Some behaviors change what
  802. # they do based on the number of active inputs (e.g. potion effects will
  803. # increase their amplification value).
  804. nanomachines {
  805.  
  806. # Time in seconds it takes for the nanomachines to process a command
  807. # and send a response.
  808. commandDelay=1
  809.  
  810. # The distance in blocks that nanomachines can communicate within. If
  811. # a message comes from further away, it'll be ignored. When responding,
  812. # the response will only be sent this far.
  813. commandRange=2
  814.  
  815. # The relative number of connectors based on the number of available
  816. # behaviors (see triggerQuota).
  817. connectorQuota=0.2
  818.  
  819. # Radius in blocks of the disintegration behavior for each active input.
  820. disintegrationRange=1
  821.  
  822. # How much damage the hungry behavior should deal to the player when the
  823. # nanomachine controller runs out of energy.
  824. hungryDamage=5
  825.  
  826. # How much energy the hungry behavior should restore when damaging the
  827. # player.
  828. hungryEnergyRestored=50
  829.  
  830. # Range of the item magnet behavior added for each active input.
  831. magnetRange=8
  832.  
  833. # The maximum number of inputs for each node of the "neural network"
  834. # nanomachines connect to. I.e. each behavior node and connector node
  835. # may only have up to this many inputs.
  836. maxInputs=2
  837.  
  838. # Hard maximum number of active inputs. This is mainly to avoid people
  839. # bumping other nanomachines' inputs to max, killing them in a matter
  840. # of (milli)seconds.
  841. maxInputsActive=4
  842.  
  843. # The maximum number of outputs for each node (see maxInputs).
  844. maxOutputs=2
  845.  
  846. # Whitelisted potions, i.e. potions that will be used for the potion
  847. # behaviors nanomachines may trigger. This can contain strings or numbers.
  848. # In the case of strings, it has to be the internal name of the potion,
  849. # in case of a number it has to be the potion ID. Add any potion effects
  850. # to make use of here, since they will all be disabled by default.
  851. potionWhitelist=[
  852. "potion.moveSpeed",
  853. "potion.digSpeed",
  854. "potion.damageBoost",
  855. "potion.jump",
  856. "potion.resistance",
  857. "potion.fireResistance",
  858. "potion.waterBreathing",
  859. "potion.nightVision",
  860. "potion.absorption",
  861. "potion.blindness",
  862. "potion.confusion",
  863. "potion.digSlowDown",
  864. "potion.harm",
  865. "potion.hunger",
  866. "potion.moveSlowdown",
  867. "potion.poison",
  868. "potion.weakness",
  869. "potion.wither"
  870. ]
  871.  
  872. # How many input nodes may be active at the same time before negative
  873. # effects are applied to the player.
  874. safeInputsActive=2
  875.  
  876. # The relative amount of triggers available based on the number of
  877. # available behaviors (such as different potion effects). For example,
  878. # if there are a total of 10 behaviors available, 0.5 means there will
  879. # be 5 trigger inputs, triggers being the inputs that can be activated
  880. # via nanomachines.
  881. triggerQuota=0.4
  882. }
  883.  
  884. # Power settings, buffer sizes and power consumption.
  885. power {
  886.  
  887. # The amount of energy the robot assembler can apply per tick. This
  888. # controls the speed at which robots are assembled, basically.
  889. assemblerTickAmount=50
  890.  
  891. # Default "buffer" sizes, i.e. how much energy certain blocks can store.
  892. buffer {
  893.  
  894. # The amount of energy an access point can store.
  895. accessPoint=600
  896.  
  897. # The amount of energy a capacitor can store when installed as an
  898. # upgrade into a robot.
  899. batteryUpgrades=[
  900. 10000,
  901. 15000,
  902. 20000
  903. ]
  904.  
  905. # The amount of energy a single capacitor can store.
  906. capacitor=1600
  907.  
  908. # The amount of bonus energy a capacitor can store for each other
  909. # capacitor it shares a face with. This bonus applies to both of the
  910. # involved capacitors. It reaches a total of two blocks, where the
  911. # bonus is halved for the second neighbor. So three capacitors in a
  912. # row will give a total of 8.8k storage with default values:
  913. # (1.6 + 0.8 + 0.4)k + (0.8 + 1.6 + 0.8)k + (0.4 + 0.8 + 1.6)k
  914. capacitorAdjacencyBonus=800
  915.  
  916. # The amount of energy a computer can store. This allows you to get a
  917. # computer up and running without also having to build a capacitor.
  918. computer=500
  919.  
  920. # The amount of energy a converter can store. This allows directly
  921. # connecting a converter to a distributor, without having to have a
  922. # capacitor on the side of the converter.
  923. converter=1000
  924.  
  925. # The amount of energy each face of a distributor can story. This
  926. # allows connecting two power distributors directly. If the buffer
  927. # capacity between the two distributors is zero, they won't be able
  928. # to exchange energy. This basically controls the bandwidth. You can
  929. # add capacitors between two distributors to increase this bandwidth.
  930. distributor=500
  931.  
  932. # The amount of energy a drone can store in its internal buffer.
  933. drone=5000
  934.  
  935. # The internal buffer size of the hover boots.
  936. hoverBoots=15000
  937.  
  938. # The amount of energy a microcontroller can store in its internal
  939. # buffer.
  940. mcu=1000
  941.  
  942. # Amount of energy stored by nanomachines. Yeah, I also don't know
  943. # where all that energy is stored. It's quite fascinating.
  944. nanomachines=100000
  945.  
  946. # The amount of energy robots can store in their internal buffer.
  947. robot=20000
  948.  
  949. # The amount a tablet can store in its internal buffer.
  950. tablet=10000
  951. }
  952.  
  953. # The amount of energy a Charger transfers to each adjacent robot per tick
  954. # if a maximum strength redstone signal is set. Chargers load robots with
  955. # a controllable speed, based on the maximum strength of redstone signals
  956. # going into the block. So if a redstone signal of eight is set, it'll
  957. # charge robots at roughly half speed.
  958. chargerChargeRate=100
  959.  
  960. # The amount of energy a Charger transfers into a tablet, if present, per
  961. # tick. This is also based on configured charge speed, as for robots.
  962. chargerChargeRateTablet=10
  963.  
  964. # Default "costs", i.e. how much energy certain operations consume.
  965. cost {
  966.  
  967. # The cost of a single packet sent via StargateTech 2's abstract bus.
  968. abstractBusPacket=1
  969.  
  970. # The amount of energy the chunkloader upgrade draws per tick while
  971. # it is enabled, i.e. actually loading a chunk.
  972. chunkloaderCost=0.06
  973.  
  974. # The amount of energy a computer consumes per tick when running.
  975. computer=0.5
  976.  
  977. # Cost for asymmetric operations on the data card, such as ECDH and ECDSA
  978. # Per-byte cost for ECDSA operation is controlled by `complex` value,
  979. # because data is hashed with SHA256 before signing/verifying
  980. dataCardAsymmetric=10
  981.  
  982. # Cost for complex operations on the data card, such as SHA256, inflate/deflate and SecureRandom.
  983. dataCardComplex=6
  984.  
  985. # Per-byte cost for complex operations
  986. dataCardComplexByte=0.1
  987.  
  988. # Cost for simple operations on the data card, such as MD5 or AES
  989. dataCardSimple=1
  990.  
  991. # Per-byte cost for simple operations
  992. dataCardSimpleByte=0.01
  993.  
  994. # Cost for trivial operations on the data card, such as CRC32 or Base64
  995. dataCardTrivial=0.2
  996.  
  997. # Per-byte cost for trivial operations
  998. dataCardTrivialByte=0.005
  999.  
  1000. # The amount of energy it takes to extract one ingredient from an
  1001. # item that is being disassembled. For example, if an item that was
  1002. # crafted from three other items gets disassembled, a total of 15000
  1003. # energy will be required by default.
  1004. # Note that this is consumed over time, and each time this amount is
  1005. # reached *one* ingredient gets ejected (unless it breaks, see the
  1006. # disassemblerBreakChance setting).
  1007. disassemblerPerItem=2000
  1008.  
  1009. # The amount of energy a drone consumes per tick when running.
  1010. drone=0.4
  1011.  
  1012. # The base energy cost for assembling a drone.
  1013. droneAssemblyBase=25000
  1014.  
  1015. # The additional amount of energy required to assemble a
  1016. # drone for each point of complexity.
  1017. droneAssemblyComplexity=15000
  1018.  
  1019. # Energy it costs to re-program an EEPROM. This is deliberately
  1020. # expensive, to discourage frequent re-writing of EEPROMs.
  1021. eepromWrite=50
  1022.  
  1023. # How much energy is consumed when the Geolyzer scans a block.
  1024. geolyzerScan=10
  1025.  
  1026. # Energy it takes to clear a basic screen using the fill command with
  1027. # 'space' as the fill char.
  1028. # Note: internally this is adjusted to a cost per pixel, and applied
  1029. # as such, so this also implicitly defines the cost for higher tier
  1030. # screens.
  1031. gpuClear=0.1
  1032.  
  1033. # Energy it takes to copy half of a basic screen via the copy command.
  1034. # Note: internally this is adjusted to a cost per pixel, and applied
  1035. # as such, so this also implicitly defines the cost for higher tier
  1036. # screens.
  1037. gpuCopy=0.25
  1038.  
  1039. # Energy it takes to change a basic screen with the fill command.
  1040. # Note: internally this is adjusted to a cost per pixel, and applied
  1041. # as such, so this also implicitly defines the cost for higher tier
  1042. # screens.
  1043. gpuFill=1
  1044.  
  1045. # Energy it takes to change *every* 'pixel' via the set command of a
  1046. # basic screen via the `set` command.
  1047. # Note: internally this is adjusted to a cost per pixel, and applied
  1048. # as such, so this also implicitly defines the cost for higher tier
  1049. # screens.
  1050. gpuSet=2
  1051.  
  1052. # Energy it takes read one kilobyte from a file system. Note that non
  1053. # I/O operations on file systems such as `list` or `getFreeSpace` do
  1054. # *not* consume power. Note that this very much determines how much
  1055. # energy you need in store to start a computer, since you need enough
  1056. # to have the computer read all the libraries, which is around 60KB
  1057. # at the time of writing.
  1058. # Note: internally this is adjusted to a cost per byte, and applied
  1059. # as such. It's just specified per kilobyte to be more intuitive.
  1060. hddRead=0.1
  1061.  
  1062. # Energy it takes to write one kilobyte to a file system.
  1063. # Note: internally this is adjusted to a cost per byte, and applied
  1064. # as such. It's just specified per kilobyte to be more intuitive.
  1065. hddWrite=0.25
  1066.  
  1067. # The amount of energy a hologram projetor consumes per tick. This
  1068. # is the cost if every column is lit. If not a single voxel is
  1069. # displayed the hologram projector will not drain energy.
  1070. hologram=0.2
  1071.  
  1072. # The amount of energy consumed when the hover boots absorb some fall
  1073. # velocity (i.e. when falling from something higher than three blocks).
  1074. hoverBootAbsorb=10
  1075.  
  1076. # The amount of energy consumed when jumping with the hover boots. Only
  1077. # applies when the jump boost is applied, i.e. when not sneaking.
  1078. hoverBootJump=10
  1079.  
  1080. # The amount of energy consumed *per second* when moving around while
  1081. # wearing the hover boots. This is compensate for the step assist, which
  1082. # does not consume energy on a per-use basis. When standing still or
  1083. # moving very slowly this also does not trigger.
  1084. hoverBootMove=1
  1085.  
  1086. # Amount of energy a microcontroller consumes per tick while running.
  1087. microcontroller=0.1
  1088.  
  1089. # The base energy cost for assembling a microcontroller.
  1090. microcontrollerAssemblyBase=10000
  1091.  
  1092. # The additional amount of energy required to assemble a
  1093. # microcontroller for each point of complexity.
  1094. microcontrollerAssemblyComplexity=10000
  1095.  
  1096. # Energy consumed per tick per active input node by nanomachines.
  1097. nanomachineInput=0.5
  1098.  
  1099. # Energy consumed when reconfiguring nanomachines.
  1100. nanomachinesReconfigure=5000
  1101.  
  1102. # The amount of energy pushing blocks with the piston upgrade costs.
  1103. pistonPush=20
  1104.  
  1105. # How much energy is required for a single 3D print.
  1106. printerModel=100
  1107.  
  1108. # The amount of energy a robot consumes per tick when running. This is
  1109. # per default less than a normal computer uses because... well... they
  1110. # are better optimized? It balances out due to the cost for movement,
  1111. # interaction and whatnot, and the fact that robots cannot connect to
  1112. # component networks directly, so they are no replacements for normal
  1113. # computers.
  1114. robot=0.25
  1115.  
  1116. # The base energy cost for assembling a robot.
  1117. robotAssemblyBase=50000
  1118.  
  1119. # The additional amount of energy required to assemble a robot for
  1120. # each point of complexity.
  1121. robotAssemblyComplexity=10000
  1122.  
  1123. # The conversion rate of exhaustion from using items to energy
  1124. # consumed. Zero means exhaustion does not require energy, one is a
  1125. # one to one conversion. For example, breaking a block generates 0.025
  1126. # exhaustion, attacking an entity generates 0.3 exhaustion.
  1127. robotExhaustion=10
  1128.  
  1129. # The amount of energy it takes a robot to move a single block.
  1130. robotMove=15
  1131.  
  1132. # The amount of energy it takes a robot to perform a 90 degree turn.
  1133. robotTurn=2.5
  1134.  
  1135. # The amount of energy a screen consumes per tick. For each lit pixel
  1136. # (each character that is not blank) this cost increases linearly:
  1137. # for basic screens, if all pixels are lit the cost per tick will be
  1138. # this value. Higher tier screens can become even more expensive to
  1139. # run, due to their higher resolution. If a screen cannot consume the
  1140. # defined amount of energy it will stop rendering the text that
  1141. # should be displayed on it. It will *not* forget that text, however,
  1142. # so when enough power is available again it will restore the
  1143. # previously displayed text (with any changes possibly made in the
  1144. # meantime). Note that for multi-block screens *each* screen that is
  1145. # part of it will consume this amount of energy per tick.
  1146. screen=0.05
  1147.  
  1148. # The actual cost per tick for computers and robots is multiplied
  1149. # with this value if they are currently in a "sleeping" state. They
  1150. # enter this state either by calling `os.sleep()` or by pulling
  1151. # signals. Note that this does not apply in the tick they resume, so
  1152. # you can't fake sleep by calling `os.sleep(0)`.
  1153. sleepFactor=0.1
  1154.  
  1155. # The base energy cost for assembling a tablet.
  1156. tabletAssemblyBase=20000
  1157.  
  1158. # The additional amount of energy required to assemble a tablet for
  1159. # each point of complexity.
  1160. tabletAssemblyComplexity=5000
  1161.  
  1162. # Energy required for one transposer operation (regardless of the number
  1163. # of items / fluid volume moved).
  1164. transposer=1
  1165.  
  1166. # The amount of energy it costs to send a wireless message with signal
  1167. # strength one, which means the signal reaches one block. This is
  1168. # scaled up linearly, so for example to send a signal 400 blocks a
  1169. # signal strength of 400 is required, costing a total of
  1170. # 400 * `wirelessCostPerRange`. In other words, the higher this value,
  1171. # the higher the cost of wireless messages.
  1172. # See also: `maxWirelessRange`.
  1173. wirelessCostPerRange=0.05
  1174. }
  1175.  
  1176. # The amount of energy the disassembler can apply per tick. This
  1177. # controls the speed at which items are disassembled, basically.
  1178. disassemblerTickAmount=25
  1179.  
  1180. # The energy efficiency of the generator upgrade. At 1.0 this will
  1181. # generate as much energy as you'd get by burning the fuel in a BuildCraft
  1182. # Stirling Engine (1MJ per fuel value / burn ticks). To discourage fully
  1183. # autonomous robots the efficiency of generators is slighly reduced by
  1184. # default.
  1185. generatorEfficiency=0.8
  1186.  
  1187. # Whether to ignore any power requirements. Whenever something requires
  1188. # power to function, it will try to get the amount of energy it needs from
  1189. # the buffer of its connector node, and in case it fails it won't perform
  1190. # the action / trigger a shutdown / whatever. Setting this to `true` will
  1191. # simply make the check 'is there enough energy' succeed unconditionally.
  1192. # Note that buffers are still filled and emptied following the usual
  1193. # rules, there just is no failure case anymore. The converter will however
  1194. # not accept power from other mods.
  1195. ignorePower=false
  1196.  
  1197. # If you don't want OpenComputers to accept power from one or more of the
  1198. # supported power mods, for example because it doesn't suit the vision
  1199. # of your mod pack, you can disable support for them here. To stop
  1200. # OpenComputers accepting power from a mod, enter its mod id here, e.g.
  1201. # `BuildCraftAPI|power`, `IC2`, `factorization`, ...
  1202. modBlacklist=[]
  1203.  
  1204. # The amount of energy the printer can apply per tick. This controls
  1205. # the speed at which prints are completed, basically.
  1206. printerTickAmount=1
  1207.  
  1208. # The rate at which different blocks accept external power. All of these
  1209. # values are in OC energy / tick.
  1210. rate {
  1211. accessPoint=10
  1212. assembler=100
  1213. case=[
  1214. 5,
  1215. 10,
  1216. 20
  1217. ]
  1218. charger=200
  1219. disassembler=50
  1220. powerConverter=500
  1221. serverRack=50
  1222. }
  1223.  
  1224. # The energy efficiency of the solar generator upgrade. At 1.0 this will
  1225. # generate as much energy as you'd get by burning fuel in a BuildCraft
  1226. # Stirling Engine . To discourage fully autonomous robots the efficiency
  1227. # of solar generators is greatly reduced by default.
  1228. solarGeneratorEfficiency=0.2
  1229.  
  1230. # This determines how often continuous power sinks try to actually try to
  1231. # consume energy from the network. This includes computers, robots and
  1232. # screens. This also controls how frequent distributors revalidate their
  1233. # global state and secondary distributors, as well as how often the power
  1234. # converter queries sources for energy (for now: only BuildCraft). If set
  1235. # to 1, this would query every tick. The default queries every 10 ticks,
  1236. # or in other words twice per second.
  1237. # Higher values mean more responsive power consumption, but slightly more
  1238. # work per tick (shouldn't be that noticeable, though). Note that this
  1239. # has no influence on the actual amount of energy required by computers
  1240. # and screens. The power cost is directly scaled up accordingly:
  1241. # `tickFrequency * cost`.
  1242. tickFrequency=10
  1243.  
  1244. # Power values for different power systems. For reference, the value of
  1245. # OC's internal energy type is 1000. I.e. the conversion ratios are the
  1246. # values here divided by 1000. This is mainly to avoid small floating
  1247. # point numbers in the config, due to potential loss of precision.
  1248. value {
  1249. AppliedEnergistics2=200
  1250. Factorization=13
  1251. Galacticraft=48
  1252. IndustrialCraft2=400
  1253. Mekanism=1333.33
  1254. PowerAdvantage=31.25
  1255. RedstoneFlux=100
  1256.  
  1257. # / 11256, same as AE2
  1258. RotaryCraft=200
  1259. }
  1260. }
  1261.  
  1262. # 3D printer related stuff.
  1263. printer {
  1264.  
  1265. # Whether Chamelium is edible or not. When eaten, it gives a (short)
  1266. # invisibility buff, and (slightly longer) blindness debuff.
  1267. chameliumEdible=true
  1268.  
  1269. # The extra material cost involved for printing a model with a customized
  1270. # redstone output, i.e. something in [1, 14].
  1271. customRedstoneCost=300
  1272.  
  1273. # The amount by which a printers ink buffer gets filled for a single
  1274. # cartridge. Tweak this if you think printing is too cheap or expensive.
  1275. # Note: the amount a single dye adds is this divided by 10.
  1276. inkValue=50000
  1277.  
  1278. # The amount by which a printers material buffer gets filled for a single
  1279. # chamelium. Tweak this if you think printing is too cheap or expensive.
  1280. materialValue=2000
  1281.  
  1282. # The maximum light level a printed block can emit. This defaults to
  1283. # a value similar to that of a redstone torch, because by default the
  1284. # material prints are made of contains redstone, but no glowstone.
  1285. # Prints' light level can further be boosted by crafting them with
  1286. # glowstone dust. This is merely the maximum light level that can be
  1287. # achieved directly when printing them.
  1288. maxBaseLightLevel=8
  1289.  
  1290. # The maximum number of shape for a state of a 3D print allowed. This is
  1291. # for the individual states (off and on), so it is possible to have up to
  1292. # this many shapes *per state* (the reasoning being that only one state
  1293. # will ever be visible at a time).
  1294. maxShapes=24
  1295.  
  1296. # By what (linear) factor the cost of a print increases if one or both of
  1297. # its states are non-collidable (i.e. entities can move through them).
  1298. # This only influences the chamelium cost.
  1299. noclipMultiplier=2
  1300.  
  1301. # Whether to enable print opacity, i.e. make prints have shadows. If
  1302. # enabled, prints will have an opacity that is estimated from their
  1303. # sampled fill rate. This is disabled by default, because MC's lighting
  1304. # computation is apparently not very happy with multiple blocks with
  1305. # dynamic opacity sitting next to each other, and since all prints share
  1306. # the same block type, this can lead to weird shadows on prints. If you
  1307. # don't care about that and prefer them to be not totally shadowless,
  1308. # enable this.
  1309. printsHaveOpacity=false
  1310.  
  1311. # How much of the material used to print a model is refunded when using
  1312. # the model to refuel a printer. This the value the original material
  1313. # cost is multiplied with, so 1 is a full refund, 0 disables the
  1314. # functionality (won't be able to put prints into the material input).
  1315. recycleRate=0.75
  1316. }
  1317.  
  1318. # Robot related settings, what they may do and general balancing.
  1319. robot {
  1320.  
  1321. # Whether robots may 'activate' blocks in the world. This includes
  1322. # pressing buttons and flipping levers, for example. Disable this if it
  1323. # causes problems with some mod (but let me know!) or if you think this
  1324. # feature is too over-powered.
  1325. allowActivateBlocks=true
  1326.  
  1327. # Whether robots may use items for a specifiable duration. This allows
  1328. # robots to use items such as bows, for which the right mouse button has
  1329. # to be held down for a longer period of time. For robots this works
  1330. # slightly different: the item is told it was used for the specified
  1331. # duration immediately, but the robot will not resume execution until the
  1332. # time that the item was supposedly being used has elapsed. This way
  1333. # robots cannot rapidly fire critical shots with a bow, for example.
  1334. allowUseItemsWithDuration=true
  1335.  
  1336. # Whether robots may damage players if they get in their way. This
  1337. # includes all 'player' entities, which may be more than just real players
  1338. # in the game.
  1339. canAttackPlayers=false
  1340.  
  1341. # Allows fine-tuning of delays for robot actions.
  1342. delays {
  1343.  
  1344. # The time in seconds to pause execution after an item was
  1345. # successfully dropped from a robot's inventory.
  1346. drop=0.5
  1347.  
  1348. # This is the *ratio* of the time a player would require to harvest a
  1349. # block. Note that robots cannot break blocks they cannot harvest. So
  1350. # the time a robot is forced to sleep after harvesting a block is
  1351. # breakTime * harvestRatio
  1352. # Breaking a block will always at least take one tick, 0.05 seconds.
  1353. harvestRatio=1
  1354.  
  1355. # The time in seconds to pause execution after a robot issued a
  1356. # successful move command. Note that this essentially determines how
  1357. # fast robots can move around, since this also determines the length
  1358. # of the move animation.
  1359. move=0.4
  1360.  
  1361. # The time in seconds to pause execution after a robot successfully
  1362. # placed an item from its inventory.
  1363. place=0.4
  1364.  
  1365. # The time in seconds to pause execution after a robot successfully
  1366. # picked up an item after triggering a suck command.
  1367. suck=0.5
  1368.  
  1369. # The time in seconds to pause execution after a robot successfully
  1370. # swung a tool (or it's 'hands' if nothing is equipped). Successful in
  1371. # this case means that it hit something, i.e. it attacked an entity or
  1372. # extinguishing fires.
  1373. # When breaking blocks the normal harvest time scaled with the
  1374. # `harvestRatio` (see below) applies.
  1375. swing=0.4
  1376.  
  1377. # The time in seconds to pause execution after a robot turned either
  1378. # left or right. Note that this essentially determines hw fast robots
  1379. # can turn around, since this also determines the length of the turn
  1380. # animation.
  1381. turn=0.4
  1382.  
  1383. # The time in seconds to pause execution after a robot successfully
  1384. # used an equipped tool (or it's 'hands' if nothing is equipped).
  1385. # Successful in this case means that it either used the equipped item,
  1386. # for example a splash potion, or that it activated a block, for
  1387. # example by pushing a button.
  1388. # Note that if an item is used for a specific amount of time, like
  1389. # when shooting a bow, the maximum of this and the duration of the
  1390. # item use is taken.
  1391. use=0.4
  1392. }
  1393.  
  1394. # The rate at which items used as tools by robots take damage. A value of
  1395. # one means that items lose durability as quickly as when they are used by
  1396. # a real player. A value of zero means they will not lose any durability
  1397. # at all. This only applies to items that can actually be damaged (such as
  1398. # swords, pickaxes, axes and shovels).
  1399. # Note that this actually is the *chance* of an item losing durability
  1400. # when it is used. Or in other words, it's the inverse chance that the
  1401. # item will be automatically repaired for the damage it just took
  1402. # immediately after it was used.
  1403. itemDamageRate=0.1
  1404.  
  1405. # Limit robot flight height, based on the following rules:
  1406. # - Robots may only move if the start or target position is valid (e.g.
  1407. # to allow building bridges).
  1408. # - The position below a robot is always valid (can always move down).
  1409. # - Positions up to <flightHeight> above a block are valid (limited
  1410. # flight capabilities).
  1411. # - Any position that has an adjacent block with a solid face towards the
  1412. # position is valid (robots can "climb").
  1413. # Set this to 256 to allow robots to fly whereever, as was the case
  1414. # before the 1.5 update. Consider using drones for cases where you need
  1415. # unlimited flight capabilities instead!
  1416. limitFlightHeight=8
  1417.  
  1418. # The name format to use for robots. The substring '$player$' is
  1419. # replaced with the name of the player that owns the robot, so for the
  1420. # first robot placed this will be the name of the player that placed it.
  1421. # This is transitive, i.e. when a robot in turn places a robot, that
  1422. # robot's owner, too, will be the owner of the placing robot.
  1423. # The substring $random$ will be replaced with a random number in the
  1424. # interval [1, 0xFFFFFF], which may be useful if you need to differentiate
  1425. # individual robots.
  1426. # If a robot is placed by something that is not a player, e.g. by some
  1427. # block from another mod, the name will default to 'OpenComputers'.
  1428. nameFormat="$player$.robot"
  1429.  
  1430. # Determines whether robots are a pretty cool guy. Ususally cobwebs are
  1431. # the bane of anything using a tool other than a sword or shears. This is
  1432. # an utter pain in the part you sit on, because it makes robots meant to
  1433. # dig holes utterly useless: the poor things couldn't break cobwebs in
  1434. # mining shafts with their golden pick axes. So, if this setting is true,
  1435. # we check for cobwebs and allow robots to break 'em anyway, no matter
  1436. # their current tool. After all, the hardness value of cobweb can only
  1437. # rationally explained by Steve's fear of spiders, anyway.
  1438. notAfraidOfSpiders=true
  1439.  
  1440. # The 'range' of robots when swinging an equipped tool (left click). This
  1441. # is the distance to the center of block the robot swings the tool in to
  1442. # the side the tool is swung towards. I.e. for the collision check, which
  1443. # is performed via ray tracing, this determines the end point of the ray
  1444. # like so: `block_center + unit_vector_towards_side * swingRange`
  1445. # This defaults to a value just below 0.5 to ensure the robots will not
  1446. # hit anything that's actually outside said block.
  1447. swingRange=0.49
  1448.  
  1449. # The maximum flight height with upgrades, tier one and tier two of the
  1450. # hover upgrade, respectively.
  1451. upgradeFlightHeight=[
  1452. 64,
  1453. 256
  1454. ]
  1455.  
  1456. # The 'range' of robots when using an equipped tool (right click) or when
  1457. # placing items from their inventory. See `robot.swingRange`. This
  1458. # defaults to a value large enough to allow robots to detect 'farmland',
  1459. # i.e. tilled dirt, so that they can plant seeds.
  1460. useAndPlaceRange=0.65
  1461.  
  1462. # Controls the UUID robots are given. You can either specify a fixed UUID
  1463. # here or use the two provided variables:
  1464. # - $random$, which will assign each robot a random UUID.
  1465. # - $player$, which assigns to each placed robot the UUID of the player
  1466. # that placed it (note: if robots are placed by fake players, i.e.
  1467. # other mods' blocks, they will get that mods' fake player's profile!)
  1468. # Note that if no player UUID is available this will be the same as
  1469. # $random$.
  1470. uuidFormat="$player$"
  1471.  
  1472. # This controls how fast robots gain experience, and how that experience
  1473. # alters the stats.
  1474. xp {
  1475.  
  1476. # This controls how much experience a robot gains for each successful
  1477. # action it performs. "Actions" only include the following: swinging a
  1478. # tool and killing something or destroying a block and placing a block
  1479. # successfully. Note that a call to `swing` or `use` while "bare handed"
  1480. # will *not* gain a robot any experience.
  1481. actionXp=0.05
  1482.  
  1483. # The required amount per level is computed like this:
  1484. # xp(level) = baseValue + (level * constantGrowth) ^ exponentialGrowth
  1485. baseValue=50
  1486.  
  1487. # This is the amount of additional energy that fits into a robots
  1488. # internal buffer for each level it gains. So with the default values,
  1489. # at maximum level (30) a robot will have an internal buffer size of
  1490. # two hundred thousand.
  1491. bufferPerLevel=5000
  1492.  
  1493. # The required amount per level is computed like this:
  1494. # xp(level) = baseValue + (level * constantGrowth) ^ exponentialGrowth
  1495. constantGrowth=8
  1496.  
  1497. # This determines how much "exhaustion" contributes to a robots
  1498. # experience. This is additive to the "action" xp, so digging a block
  1499. # will per default give 0.05 + 0.025 [exhaustion] * 1.0 = 0.075 XP.
  1500. exhaustionXpRate=1
  1501.  
  1502. # The required amount per level is computed like this:
  1503. # xp(level) = baseValue + (level * constantGrowth) ^ exponentialGrowth
  1504. exponentialGrowth=2
  1505.  
  1506. # The increase in block harvest speed a robot gains per level. The time
  1507. # it takes to break a block is computed as actualTime * (1 - bonus).
  1508. # For example at level 20, with a bonus of 0.4 instead of taking 0.3
  1509. # seconds to break a stone block with a diamond pick axe it only takes
  1510. # 0.12 seconds.
  1511. harvestSpeedBoostPerLevel=0.02
  1512.  
  1513. # This determines how much experience a robot gets for each real XP orb
  1514. # an ore it harvested would have dropped. For example, coal is worth
  1515. # two real experience points, redstone is worth 5.
  1516. oreXpRate=4
  1517.  
  1518. # The additional "efficiency" a robot gains in using tools with each
  1519. # level. This basically increases the chances of a tool not losing
  1520. # durability when used, relative to the base rate. So for example, a
  1521. # robot with level 15 gets a 0.15 bonus, with the default damage rate
  1522. # that would lead to a damage rate of 0.1 * (1 - 0.15) = 0.085.
  1523. toolEfficiencyPerLevel=0.01
  1524. }
  1525. }
  1526.  
  1527. # Switch and access point network message forwarding logic related stuff.
  1528. switch {
  1529.  
  1530. # This is the size of the queue of a not upgraded switch. Increasing it
  1531. # avoids packets being dropped when many messages are sent in a single
  1532. # burst.
  1533. defaultMaxQueueSize=20
  1534.  
  1535. # The base number of packets that get relayed in one 'cycle'. The
  1536. # cooldown between cycles is determined by the delay.
  1537. defaultRelayAmount=1
  1538.  
  1539. # The delay a switch has by default between relaying packets (in ticks).
  1540. # WARNING: lowering this value will result in higher maximum CPU load,
  1541. # and may in extreme cases cause server lag.
  1542. defaultRelayDelay=5
  1543.  
  1544. # This is the amount by which the queue size increases per tier of the
  1545. # hard drive installed in the switch.
  1546. queueSizeUpgrade=10
  1547.  
  1548. # The number of additional packets that get relayed per cycle, based on
  1549. # the tier of RAM installed in the switch. For built-in RAM this
  1550. # increases by one per half-tier, for third-party ram this increases by
  1551. # two per item tier.
  1552. relayAmountUpgrade=1
  1553.  
  1554. # The amount of ticks the delay is *reduced* by per tier of the CPU
  1555. # inserted into a switch.
  1556. relayDelayUpgrade=1.5
  1557. }
  1558.  
  1559. # The version of OC this config was generated by. This is used to allow the
  1560. # mod to reset parts of the config when their meaning changed across
  1561. # versions, so that the user does not have to delete it.
  1562. version="1.6.0.14-dev"
  1563.  
  1564. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement