Posted 11 September 2016 - 07:18 PM
For starters, the information present at: http://rs485.network...mputerCraft_API is highly outdated and therefore I'd kindly ask you not to redirect me there.
I've read multiple threads on multiple different websites, scanned other peoples programs and have tried multiple attempts at prompting a logistics request pipe to send me an item based upon both the id and the metadata. With multiple mods implementing id's with metadata iterations, single id's really don't cut it.
I found this thread: http://www.computerc...ogistics-pipes/
It helped get me on the right track and simplify my current request situation, but this still doesn't help with the meta data issue.
So, working with the bit of code KingofGamesYami supplied to help the OP in that thread, how would I go about adding metadata to the request ID? The whole Item Identifier thing confuses me.
I've read multiple threads on multiple different websites, scanned other peoples programs and have tried multiple attempts at prompting a logistics request pipe to send me an item based upon both the id and the metadata. With multiple mods implementing id's with metadata iterations, single id's really don't cut it.
I found this thread: http://www.computerc...ogistics-pipes/
It helped get me on the right track and simplify my current request situation, but this still doesn't help with the meta data issue.
So, working with the bit of code KingofGamesYami supplied to help the OP in that thread, how would I go about adding metadata to the request ID? The whole Item Identifier thing confuses me.
local function easyRequest( itemID, amount )
local result = lp.getLP().getItemIdentifierBuilder()
result.setItemID( itemID )
lp.makeRequest( result.build(), amount )
end
easyRequest( "minecraft:stone", 1 )