128 posts
Location
Holland
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?
139 posts
Location
USA
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")
4 posts
Location
Bellingham, WA
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?
5 posts
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. ;)/>