- ComputerCraft | Programmable Computers for Minecraft
- → iceman11a's Content
iceman11a's Content
There have been 49 items by iceman11a (Search limited from 10-February 22)
#217763 Dead Simple Railcraft Tank Monitoring
Posted by
iceman11a
on 19 May 2015 - 05:34 AM
in
Programs
#217714 Monitor 3 tanks from railcraft
Posted by
iceman11a
on 18 May 2015 - 07:19 PM
in
Ask a Pro
#217652 Monitor 3 tanks from railcraft
Posted by
iceman11a
on 18 May 2015 - 08:51 AM
in
Ask a Pro
and last, Do I have to put the pc next to the value. Is it possible to run a wired and wireless modem on the same pc.
#217504 Monitor 3 tanks from railcraft
Posted by
iceman11a
on 16 May 2015 - 10:52 PM
in
Ask a Pro
The idea is when the tank's fluid runs low if to send out a signal threw a bundled cables. and all so threw rednet. (I haven't played with rednet) I don't under stand a lot of it.
#215579 LUA Menu sample
Posted by
iceman11a
on 27 April 2015 - 02:43 AM
in
Ask a Pro
The idea is to add more lines to each button click. And last. I need to be able to add 5 buttons. How can I make the buttons smaller.
#215567 LUA Menu sample
Posted by
iceman11a
on 26 April 2015 - 09:43 PM
in
Ask a Pro
I click on the button and nothing happens. and the 2nd button doesn't show. I need these buttons to show on the big monitor. Not just the little pc.
#215560 LUA Menu sample
Posted by
iceman11a
on 26 April 2015 - 08:06 PM
in
Ask a Pro
I want so many buttons to make so many tickets using the ticket machine.
Location
-Nimrod Nimrod/pass
-Citysky Citysky/pass
-Mainbase Mainbase/pass
-City City/pass
-Station 1 Station1/pass
#215526 LUA Menu sample
Posted by
iceman11a
on 26 April 2015 - 05:24 PM
in
Ask a Pro
All I want it a menu to select tickets and have it use a ticket machine to give the user a ticket.
#215513 LUA Menu sample
Posted by
iceman11a
on 26 April 2015 - 03:57 PM
in
Ask a Pro
What I need to do is take this code I have and make a menu for it to display places to go and when a numbers is selected a tcket is created. The code below is what I wanted to use. I just don't know what the rednet is for. Can some one help with a menu for this code.
local TM = peripheral.wrap("top")
rednet.open("bottom")
function sea()
local booleanInfo = TM.createTicket("South/SeaStation")
end
function lake()
local booleanInfo = TM.createTicket("North/Lake")
end
while true do
eventType, sender, message, dist = os.pullEvent("rednet_message")
if message == "sea" then
sea()
elseif message == "lake" then
lake()
else
print("invalid message")
end
end
#204595 Simple flashing lights using bundled cables and CC
Posted by
iceman11a
on 30 January 2015 - 08:42 PM
in
Ask a Pro
-- Simple Rail road crossing signals
local mon = peripheral.wrap("monitor_7")
rs.setBundledOutput("right", 0)
while true do
local isOn = rs.getBundledInput("right", colors.brown)
if isOn == true then
mon.clear()
mon.setCursorPos(1,1)
mon.setTextColor(colors.red)
mon.write("train is coming thew")
rs.setBundledOutput("right", 0)
rs.setBundledOutput("right", colors.red)
sleep(1)
rs.setBundledOutput("right", 0)
rs.setBundledOutput("right", colors.white)
sleep(1)
else
rs.setBundledOutput("right", 0)
mon.clear()
mon.setCurorPos(1,1)
mon.setTextColor(colors.green)
mon.write("No Train yet")
end
--rs.setBundledOutput("right", 0)
end
#194026 Monitor Storage tanks lua script
Posted by
iceman11a
on 19 September 2014 - 11:00 AM
in
Ask a Pro
2) I'd sorta expect it to take vanilla squid ink? (I can't find any thing related to a vanilla squid ink)
I need to find some one that can help with some small samples. If I can monitor the pressure in a pipe. Then why can't I monitor the energy in a cable or conduit. See openp is limited on what it can do until a stable release of CC is released,
I was on irc chat last night until I2 midnight looking and no one wants to help. I been spending hours searching google for samples and only finding samples that are years old, and out dated. Let me show you some thing.
p = peripheral.wrap("back")
while true do
x = p.getPressure()
print("Current pressure " .. x)
if x < 4 then
rs.setOutput("right", true)
print("Pressure low, Starting Engines")
else
rs.setOutput("right", false)
end
sleep(5)
end
This small sample monitors the pressure in a pipe from the back. Well why can't I do the same thing with energy. I know there's a way to do it. I just haven't figured it out yet.
I want to be able to use the computer and monitor. I want to be able to use openp all so. Getting the info for the monitor is all ready online. The problem is that openp is not well documented with samples.
If you have any ideas please provide links.
#194013 Monitor Storage tanks lua script
Posted by
iceman11a
on 19 September 2014 - 04:10 AM
in
Ask a Pro
glasses bridge
peripheralproxy
pim
sensor
ticketmachine -- This one the ink is missing. So I can't even play with it.
#193978 Monitor Storage tanks lua script
Posted by
iceman11a
on 18 September 2014 - 09:31 PM
in
Ask a Pro
glassesbridge -- All ready been playing with this block
peripheralproxy
pim
sensor
ticketmachine
Can some one tell me how to use these in CC = Computercraft. using the lua code. Oh and how do I report bugs. I see that the ink is missing for the ticket machine.
#193949 Monitor Storage tanks lua script
Posted by
iceman11a
on 18 September 2014 - 06:43 PM
in
Ask a Pro
#193921 Monitor Storage tanks lua script
Posted by
iceman11a
on 18 September 2014 - 09:50 AM
in
Ask a Pro
SO I'll have to check with openP and see just what they added and so. I'll have to contact the coders and see if i can find out just what's going on. I'll have to see if I can find an OpenP IRC chat room all so.
Guys, If any of you have an idea or 2, please let me know.
#193911 Monitor Storage tanks lua script
Posted by
iceman11a
on 18 September 2014 - 02:50 AM
in
Ask a Pro
#193849 Monitor Storage tanks lua script
Posted by
iceman11a
on 17 September 2014 - 09:09 PM
in
Ask a Pro
He didn't say any thing about any requirements. So maybe you can see some thing I didn't.
- ComputerCraft | Programmable Computers for Minecraft
- → iceman11a's Content


