getBlockData
Description
A collection of scripts for Minecraft ComputerCraft Tweaked (tweaked.cc)
Installation
Copy one of these commands into your ComputerCraft terminal:
wget:
wget https://raw.githubusercontent.com/armstrongl/cc-scripts/master/src/turtle_ops/getBlockData.lua getblockdataArchive:
wget https://cc.shobie.xyz/cc/get/gh-armstrongl-cc-scripts-src-turtle-ops-getblockdata getblockdata
Quick Install:
wget https://cc.shobie.xyz/cc/get/gh-armstrongl-cc-scripts-src-turtle-ops-getblockdata getBlockData
Usage
Run: getBlockData
Tags
Source
View Original SourceCode Preview
local coreAPILoaded = os.loadAPI("coreOps")
if coreAPILoaded == true then
local success, data = turtle.inspect()
coreOps.processTableData(data, '')
end