This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Jappards's profile picture

[miscPeripherals]help with the smart helmet

Started by Jappards, 01 June 2013 - 08:40 AM
Jappards #1
Posted 01 June 2013 - 10:40 AM
i have found the item smart helmet in the creative menu and even in NEI, but how do i use it?
crazyguymgd #2
Posted 10 June 2013 - 09:04 PM
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")
smb128 #3
Posted 24 June 2013 - 08:47 PM
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?
BossManta #4
Posted 29 July 2013 - 03:16 PM
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. ;)/>