←  Peripheral Help and Discussion

ComputerCraft | Programmable Computers for Minecraft

»

[miscPeripherals]help with the smart helmet

Jappards's Photo Jappards 01 Jun 2013

i have found the item smart helmet in the creative menu and even in NEI, but how do i use it?
Quote

crazyguymgd's Photo crazyguymgd 10 Jun 2013

Place a Smallnet Sender next to a computer then right click on the sender. This will create a link between you and it. On the computer type:

m = peripheral.wrap("side")
m.send("smartHelmet","message")
Quote

smb128's Photo smb128 24 Jun 2013

View Postcrazyguymgd, on 10 June 2013 - 08:04 PM, said:

Place a Smallnet Sender next to a computer then right click on the sender. This will create a link between you and it. On the computer type:

m = peripheral.wrap("side")
m.send("smartHelmet","message")

anyone post any programs for the smarthelmet?
Quote

BossManta's Photo BossManta 29 Jul 2013

I did it was on a server. The problem was the chat was getting over board so I made a program to listen to only me and all the people I needed to talk to this is it:

while true do
m.peripheral.wrap(" Side ") --This wraps the peripheral
e, p1, p2=os.pullEvent("chat") --This checks for event
if p1 == (" Your name ") or if p1 == (" Friends name ") then --This checks who to listen to
m.send("smartHelmet", p2) --This sends the message
end
end

Its a simple but fun program :D
NOTE: There may be some problems cuz I just quickly wrote this down. ;)
Quote