Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- -- list of commands to disallow from the connect APIs
- -- by default, the apis are "peripheral", "turtle", "redstone", and the left peripheral
- blacklist = {
- -- turtle
- equipLeft = true, -- use "equip"
- equipRight = true, -- don't lose the chatbox, we need that
- -- peripheral
- wrap = true,
- find = true,
- },
- -- List of programs to disallow from the program() command
- progBlacklist = {
- -- will cause errors
- startup = true,
- voice = true,
- equip = true, -- see equipRight above
- -- locks the controller out
- edit = true,
- exit = true,
- lua = true,
- shell = true,
- shutdown = true,
- },
- -- list of functions which should send messages to chat when in partial mute mode (the default)
- unmuted = {
- -- turtle
- compare = true,
- compareDown = true,
- compareUp = true,
- compareTo = true,
- detect = true,
- detectDown = true,
- detectUp = true,
- equip = true,
- getFuelLevel = true,
- getFuelLimit = true,
- getItemCount = true,
- getItemDetail = true,
- getItemSpace = true,
- getSelectedSlot = true,
- inspect = true,
- inspectDown = true,
- inspectUp = true,
- -- redstone
- getSides = true,
- getInput = true,
- getOutput = true,
- getAnalogInput = true,
- getAnalogOutput = true,
- getBndledInput = true,
- getBunledOutput = true,
- testBundledOutput = true,
- -- peripheral
- isPresent = true,
- getType = true,
- getMethods = true,
- getNames = true,
- -- MoarPeripherals
- getDensity = true, -- Density Scanning Turtle
- getNaturalLightLevel = true, -- Outdoorsy Turtle
- getFacing = true, -- Dizzy Turtle/Peripherals++ Navigational Turtle
- --chatbox
- getLabel = true,
- getReadRange = true,
- getMaxReadRange = true,
- getSayRange = true,
- getMaxSayRange = true,
- getTellRange = true,
- getMaxTellRange = true,
- -- Peripherals++
- getEntity = true, --Ridable Turtle
- getLiquid = true, --Thirsty Turtle
- getXP = true, --XP Turtle
- --Barrel Turtle
- getUnlocalizedName = true,
- getLocalizedName = true,
- getItemID = true,
- getAmount = true,
- getOreDictEntries = true,
- --Environment Scanner
- isRaining = true,
- getBiome = true,
- getTemperature = true,
- isSnow = true,
- --Equivalence Checking Turtle
- getEntries = true,
- doItemsMatch = true,
- --Gardening Turtle
- getGrowth = true,
- getGrowthUp = true,
- getGrowthDown = true,
- --Player Sensor
- getNearbyPlayers = true,
- getAllPlayers = true,
- --Sign Reading Turtle
- read = true,
- readUp = true,
- readDown = true,
- -- chat commands
- script = true,
- delete = true,
- program = true,
- -- error reporting
- Usage = true,
- ERROR = true
- },
- -- location of script files, to keep things neater
- -- set to a blank string to leave them in the home directory
- scriptPath = "scripts/"
- }
Add Comment
Please, Sign In to add comment