Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
#The disk space limit for computers and turtles, in bytes. computer_space_limit = 1000000 #The disk space limit for floppy disks, in bytes. floppy_space_limit = 125000 #The file upload size limit, in bytes. Must be in range of 1 KiB and 16 MiB. #Keep in mind that uploads are processed in a single tick - large files or #poor network performance can stall the networking thread. And mind the disk space! #Range: 1024 ~ 16777216 upload_max_size = 524288 #Set how many files a computer can have open at the same time. Set to 0 for unlimited. #Range: > 0 maximum_open_files = 128 #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_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. command_require_creative = true #A list of generic methods or method sources to disable. Generic methods are #methods added to a block/block entity when there is no explicit peripheral #provider. This includes inventory methods (i.e. inventory.getItemDetail, #inventory.pushItems), and (if on Forge), the fluid_storage and energy_storage #methods. #Methods in this list can either be a whole group of methods (computercraft:inventory) #or a single method (computercraft:inventory#pushItems). # disabled_generic_methods = [] http.enabled = true #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. #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. #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. #Range: > 1 max_main_computer_time = 5 #Controls the HTTP API [http] #Enable the "http" API on Computers. Disabling this also disables the "pastebin" and #"wget" programs, that many users rely on. It's recommended to leave this on and use #the "rules" config option to impose more fine-grained control. 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. #Range: > 0 max_requests = 16 #The number of websockets a computer can have open at one time. #Range: > 1 max_websockets = 4 #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). #Range: > 1 global_download = 33554432 #The number of bytes which can be uploaded in a second. This is shared across all computers. (bytes/s). #Range: > 1 global_upload = 33554432 #Tunnels HTTP and websocket requests through a proxy server. Only affects HTTP #rules with "use_proxy" set to true (off by default). #If authentication is required for the proxy, create a "computercraft-proxy.pw" #file in the same directory as "computercraft-server.toml", containing the #username and password separated by a colon, e.g. "myuser:mypassword". For #SOCKS4 proxies only the username is required. [http.proxy] #The type of proxy to use. #Allowed Values: HTTP, HTTPS, SOCKS4, SOCKS5 type = "HTTP" #The hostname or IP address of the proxy server. host = "" #The port of the proxy server. #Range: 1 ~ 65536 port = 8080 #A list of rules which control behaviour of the "http" API for specific domains or #IPs. Each rule matches against a hostname and an optional port, and then sets several #properties for the request. Rules are evaluated in order, meaning earlier rules override #later ones. # #Valid properties: # - "host" (required): The domain or IP address this rule matches. This may be a domain name # ("pastebin.com"), wildcard ("*.pastebin.com") or CIDR notation ("127.0.0.0/8"). # - "port" (optional): Only match requests for a specific port, such as 80 or 443. # # - "action" (optional): Whether to allow or deny this request. # - "max_download" (optional): The maximum size (in bytes) that a computer can download in this # request. # - "max_upload" (optional): The maximum size (in bytes) that a computer can upload in a this request. # - "max_websocket_message" (optional): The maximum size (in bytes) that a computer can send or # receive in one websocket packet. # - "use_proxy" (optional): Enable use of the HTTP/SOCKS proxy if it is configured. [[http.rules]] host = "$private" action = "deny" host = "pastebin.com" action = "allow" [[http.rules]] #The maximum size (in bytes) that a computer can send or receive in one websocket packet. max_websocket_message = 131072 host = "*" #The maximum size (in bytes) that a computer can upload in a single request. This #includes headers and POST text. max_upload = 4194304 action = "allow" #Enable use of the HTTP/SOCKS proxy if it is configured. use_proxy = false #The maximum size (in bytes) that a computer can download in a single request. #Note that responses may receive more data than allowed, but this data will not #be returned to the client. max_download = 16777216 #Various options relating to peripherals. [peripheral] #Enable Command Block peripheral support command_block_enabled = false #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. #Range: 0 ~ 100000 modem_high_altitude_range = 384 #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. #Range: 0 ~ 100000 modem_high_altitude_range_during_storm = 384 #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.s # - 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. need_fuel = false #The fuel limit for Turtles. #Range: > 0 normal_fuel_limit = 20000 #The fuel limit for Advanced Turtles. #Range: > 0 advanced_fuel_limit = 100000 #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. [term_sizes.computer] #Range: 1 ~ 255 width = 51 #Range: 1 ~ 255 height = 19 #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). [term_sizes.monitor] #Range: 1 ~ 32 width = 8 #Range: 1 ~ 32 height = 6
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Symbol Dump for Discord
8 hours ago | 0.41 KB
tes
11 hours ago | 0.02 KB
Untitled
1 day ago | 2.28 KB
GSA NS
1 day ago | 1.37 KB
WaterFul.m
MatLab | 1 day ago | 0.42 KB
WaterEmpty.m
MatLab | 1 day ago | 0.54 KB
Spinning.m
MatLab | 1 day ago | 0.53 KB
Drying.m
MatLab | 1 day ago | 0.48 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!