Kozar927 Posted February 11, 2014 Posted February 11, 2014 (edited) Hey guys. I have never modded minecraft before but I finally got tekkit and its alot to take in all at once. I am having a blast with computercraft and buildcraft espicially. I wanted to get familier with everything in creative mode before making a survival so I have been having a blast buildinginsane buildcraft engine blocks. I have a question. Is there some sort of display I can set at the end of conductive pipe that will show all the energy flowing through it? Even if it isnt in buildcraft do any of the other tekkit mods have something like this that works with buildcraft stuff because I am lost in the sea of new items added to the game. Also someone told me there is an engine in the thermal expansion mod that makes buildcraft obsoleate because it makes it way to easy to have insane energy with only one engine making buildcraft loose some charm.. Is this true? If so how do I remove just that one mod as I dont want anything to be unbalanced for when I go survival with this. Thanks for reading Edited February 11, 2014 by Kozar927
static1234567 Posted February 12, 2014 Posted February 12, 2014 (edited) hey man, there are engines in thermal expansion which are called dynamo's but there not that much more OP then buildcraft ones but the thermal expansion ones are easier too automate and dont blow up. there are so many mods in tekkit and most are balanced well so dont worry about that just have fun and take all of it in! Edited February 12, 2014 by static1234567
Kozar927 Posted February 12, 2014 Author Posted February 12, 2014 Thanks man. Any idea about a display to show how many minecraft jewls are flowing through a pipe. There has to be a way to test how much power your setup is producing
static1234567 Posted February 12, 2014 Posted February 12, 2014 (edited) well you can generally tell by how many engines you have since they give off a certain amount and a pipe can only send so much power as well so just check the kind of pipe your using for the maxium allowed in and what engines you have and how many Edited February 12, 2014 by static1234567
Kozar927 Posted February 12, 2014 Author Posted February 12, 2014 well you can generally tell by how many engines you have since they give off a certain amount and a pipe can only send so much power as well so just check the kind of pipe your using for the maxium allowed in and what engines you have and how many Ahh thats no fun. Im building a rediculus power grid and I really want to see how much energy its giving off. Nothing in the game would need this amount of energy it would just be for fun
Daemon_Eleuel Posted February 12, 2014 Posted February 12, 2014 I would like to point out that even with redstone energy ducts you'll have a limit to how much energy goes through, unless you edit the config files and increase it. Also, there is a tool called "multimeter", it will tell you how much of the maximum capacity of a conduit is used.
badkruka Posted February 12, 2014 Posted February 12, 2014 Ahh thats no fun. Im building a rediculus power grid and I really want to see how much energy its giving off. Nothing in the game would need this amount of energy it would just be for fun Go to the wiki and do the math since all engines have a fixed power output. Turbine seems to be the only one hard to determine how much they produce but hook up toons of rec and se how much power they store. For determine on how much stuff flows throu your pipe it should be possible using rednet cable + computer + redstone transport pipe. Since you seem going big I'm counting on that you go for a large storage using Deep Storage Unit's. Since you need to build a filter for DSU storage you can use a redstone transport pipe as a last pipe going into the DSU. Since redstone pipe will emit a redstone signal when something go throu it a computer can count how many times the pipe emit a signal hooking up a rednet cable from the computer to the pipe using the rednet api. http://computercraft.info/wiki/Redstone_%28API%29
Kozar927 Posted February 12, 2014 Author Posted February 12, 2014 Go to the wiki and do the math since all engines have a fixed power output. Turbine seems to be the only one hard to determine how much they produce but hook up toons of rec and se how much power they store. For determine on how much stuff flows throu your pipe it should be possible using rednet cable + computer + redstone transport pipe. Since you seem going big I'm counting on that you go for a large storage using Deep Storage Unit's. Since you need to build a filter for DSU storage you can use a redstone transport pipe as a last pipe going into the DSU. Since redstone pipe will emit a redstone signal when something go throu it a computer can count how many times the pipe emit a signal hooking up a rednet cable from the computer to the pipe using the rednet api. http://computercraft.info/wiki/Redstone_%28API%29 Cool thanks
badkruka Posted February 14, 2014 Posted February 14, 2014 (edited) Cool thanks I forgot to post the color api. http://computercraft.info/wiki/Colors_%28API%29 Here is an example on how you can count the redstone pipe signal. The number 1 in (rs.testBundledInput("back", 1) ) is the white colour on the rednet cable. If you use another colour then use the right number shown in the colors api page i posted. "back" are for if you have connected the rednet cable on the backside of the computer. you alost have "top", "bottom", "right" and "left" a = 0 while true do if rs.testBundledInput("back", 1) == true then a = a + 1 print(a) while rs.testBundledInput("back", 1) == true do sleep(0.01) end end sleep(0.01) end Edited February 14, 2014 by badkruka
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now