ComputerCraft Archive

save

computer utility Vexatos github

Description

My Computercraft program collection

Installation

Copy one of these commands into your ComputerCraft terminal:

wget:wget https://raw.githubusercontent.com/Vexatos/ComputerCraft-Programs/master/Main/chatFloppy/save.lua save
Archive:wget https://cc.shobie.xyz/cc/get/gh-Vexatos-ComputerCraft-Programs-main-chatfloppy-save save
Quick Install: wget https://cc.shobie.xyz/cc/get/gh-Vexatos-ComputerCraft-Programs-main-chatfloppy-save save

Usage

Run: save

Tags

none

Source

View Original Source

Code Preview

local file = fs.open("log","a")
for i=1,#chattbl do
file.writeLine(chattbl[i])
end
file.close()