I am using FTB Ultimate 1.5.2 Beta with GT v0.5 and attempted to use Direwolf's "charge" program using a gatereader turtle and ender chests/bags but as soon as i run the program it says "charge:4: java.lang.AbstractMethodError" so i'm assuming somewhere along the "data = m.get()" became obsolete and must be changed....if somebody could give me a program that does exactly what dires did, just updated enough so that 1.5.2 can use it that'd be amazing
this is the code he used for anybody who would like to edit it (also found at pastebin.com/6AcwzxSh)
Code:
m = peripheral.wrap("right")
function checkDoneCharging()
data = m.get()
return(data["Charging Fully Charged Item"])
end
function emptyMFSU()
turtle.select(16)
turtle.suckDown()
turtle.drop()
end
function fillMFSU()
turtle.select(1)
turtle.suckUp()
turtle.dropDown()
end
while true do
if checkDoneCharging() then
emptyMFSU()
fillMFSU()
end
sleep(5)
end
this is the code he used for anybody who would like to edit it (also found at pastebin.com/6AcwzxSh)