Want to use it but don't know how to?
Well.. You've come to the right topic.
I'm going to explain how to use it.
First, we need to tell the computer that the periperal is there like so;
p = peripheral.wrap("side") -- side is the side you got the peripheral on
Then get the messages like so:
while true do
event, player, message = os.pullEvent("chat") -- Now you got the event, which player, and which message.
if message == "hi" then
p.say("Hi there!") -- if the message from chat is hi , the chatbox will say "Hi there!"
end
end
Now you know some basics about the chatbox peripheral.
// Mackan90096












