ComputerCraft Archive

chat

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/chat.lua chat
Archive:wget https://cc.shobie.xyz/cc/get/gh-Vexatos-ComputerCraft-Programs-main-chatfloppy-chat chat
Quick Install: wget https://cc.shobie.xyz/cc/get/gh-Vexatos-ComputerCraft-Programs-main-chatfloppy-chat chat

Usage

Run: chat

Tags

none

Source

View Original Source

Code Preview

os.loadAPI("rom/apis/miscperipheralsutil")

chat, chatSide = miscperipheralsutil.getPeripheral("chat")
if chat == nil then
  print("No Chat peripheral found")
  return
end

print("Using Chat peripheral on "..chatSide)
print("Press ENTER (empty line) to exit")
print("")

while true do
  line = io.read()
  if line == "" then break end
  chat.say(line)
end