[mc 1.6.x] Openperipheral
#601
Posted 02 August 2013 - 11:45 AM
#603
Posted 02 August 2013 - 03:03 PM
Mikeemoo, on 25 May 2013 - 07:30 PM, said:
If you do this can you add an option to turn it off for creative mode?
Also, this mod is freaking brilliant.
#604
Posted 02 August 2013 - 10:55 PM
KaoS, on 02 August 2013 - 02:08 PM, said:
You sir are a lifesaver, both for the advice and the link, thank you. Funny thing, I had actually found that site before, but didn't understand how it was formatted, I get it now.
#605
Posted 04 August 2013 - 09:48 PM
I've already made a topic over at ask a pro:
Am I doing something wrong or is there a bug with those tanks?
When I write the table to a monitor all I get is 1,0.
Thanks
#606
Posted 04 August 2013 - 11:37 PM
monitor.write(k, v)should be
monitor.write(k.." - "..v)because write does not accept multiple params
#607
Posted 05 August 2013 - 08:46 AM
Heavens, on 04 August 2013 - 09:48 PM, said:
I've already made a topic over at ask a pro:
Am I doing something wrong or is there a bug with those tanks?
When I write the table to a monitor all I get is 1,0.
Thanks
Hover over parameters in the documentation.
"side" should be a global side ("north", "south", "east", "west", "up" or "down")
#608
Posted 05 August 2013 - 09:11 AM
With your line I get:
watertank:6 attempt to concatenate string and table
So basically it's a table inside a table? Which puts me back to the problem of not understanding how to handle tables -.-
Note to self: read a book on tables
#609
Posted 05 August 2013 - 01:31 PM
#610
Posted 05 August 2013 - 05:02 PM
#611
Posted 05 August 2013 - 09:48 PM
local ironTankValve = peripheral.wrap("back")
local monitor = peripheral.wrap("top")
local tableInfo = ironTankValve.getTanks("back")
for k, v in pairs(tableInfo) do
monitor.write(k, v)
end
Try this
local ironTankValve = peripheral.wrap("back")
local monitor = peripheral.wrap("top")
local tableInfo = ironTankValve.getTanks("unknown")
for k, v in pairs(tableInfo) do
for x, y in pairs(v) do
monitor.write(k .. ":" .. x .. ":" .. y)
end
end
use unknown for getTanks so it doesn't matter, it will just get the tanks no matter what.
#612
Posted 06 August 2013 - 05:10 AM
#613
Posted 06 August 2013 - 05:11 AM
I couldn't get it to work
Also nothing relatet to Forestry will work...
#614
Posted 06 August 2013 - 10:45 AM
http://pastebin.com/uDsqDnNf ?
#615
Posted 06 August 2013 - 08:00 PM
Is there a way to measure the "Network Saturation" of a Thermal Expansion Redstone Energy Conduit?
http://thermalexpans....com/Multimeter
#616
Posted 07 August 2013 - 11:43 AM
btbenedi, on 01 August 2013 - 05:26 PM, said:
The next release, 0.2.0, after you mentioned this, went from minecraft version 1.5 to 1.6.
Since FTB is using OP and will be 1.5 for a little bit, is it possible to get a release that is 1.5.2 compatible that contains this fix? It would be greatly appreciated since the server I am an Admin on is switching from FTB Ultimate to FTB Unleashed, we would love to include OP obviously (I mean Glass?! seriously, that's epic) and we would hate to exclude OP just for this little bug.
We are planning on using command blocks as proximity sensors on the server using a dynamic /testfor command.
Could I get an answer to this please?
#617
Posted 07 August 2013 - 01:20 PM
btbenedi, on 07 August 2013 - 11:43 AM, said:
btbenedi, on 01 August 2013 - 05:26 PM, said:
The next release, 0.2.0, after you mentioned this, went from minecraft version 1.5 to 1.6.
Since FTB is using OP and will be 1.5 for a little bit, is it possible to get a release that is 1.5.2 compatible that contains this fix? It would be greatly appreciated since the server I am an Admin on is switching from FTB Ultimate to FTB Unleashed, we would love to include OP obviously (I mean Glass?! seriously, that's epic) and we would hate to exclude OP just for this little bug.
We are planning on using command blocks as proximity sensors on the server using a dynamic /testfor command.
Could I get an answer to this please?
Is/will be fixed in 1.6.2. I wont be backporting the fix to 1.5.2 though.
#618
Posted 07 August 2013 - 04:45 PM
Mikeemoo, on 07 August 2013 - 01:20 PM, said:
#619
Posted 08 August 2013 - 07:27 AM
terminalGlassesBridge.addText(0, 0, "Hello World", 1)
The text color is black, where '1' would normally stand for white. If I would be to use 32768 instead of 1 I would get green text, where 32768 is black.
Also every time I clear the glasses to rewrite a line I get a flicking effect, is there any way to avoid that? I'm using code similar to this;
glasses = peripheral.wrap("left")
while true do
glasses.clear()
glasses.addText(0, 0, "Hello World", 1)
os.sleep(0.5)
end
#620
Posted 08 August 2013 - 07:32 AM
Frederikam, on 08 August 2013 - 07:27 AM, said:
local function rgbToHex( _r, _g, _b ) return bit.bor(bit.blshift(bit.bor(bit.blshift(_r, 8), _g), 8), _B)/>/>/> end
Frederikam, on 08 August 2013 - 07:27 AM, said:
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


This topic is locked









