Jump to content

Gomo

Members
  • Posts

    140
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Gomo

  1. Hello guys, I'm working on a small project and I got stuck.. It is about Computercraft. I know this isn't the right place to ask for help. (Hoping that somebody here knows a thing or two about Computercraft & is willing to help out) Here's what I'm working on and what I'd like to achieve: I got a computer on right side and I'd like to have constant redstone signal on top (for the red lights) -> "no go / closed air lock doors" And when I right click on it, it asks for the launch permission password, if you enter the correct password it sends a redstone signal on the bottom block for 40 seconds which then lights up the green lights and opens up the air lock frame. After 40 seconds it reboots/restarts. And this is what I wrote so far, of course it doesn't work, hence why I seek for help :/ ("edit startup") while true do rs.setOutput("top",true) print("Enter the launch password: ") password = read() if password == "blabla" then print("Launch sequence has been initiated!") rs.setOutput("top",false) rs.setOutput("bottom",true) sleep(40) rs.setOutput("bottom",false) os.shutdown() end Any help is appreciated and once again I apologize for posting here. -kind regards- Gomo EDIT: Got the problem solved. Here's the code for those who want something similar. rs.setOutput("top",true) rs.setOutput("bottom",false) while true do print("Enter the launch password: ") password = read("*") if password == "blabla" then print("nLaunch sequence has been initiated!") rs.setOutput("top",false) rs.setOutput("bottom",true) sleep(40) rs.setOutput("bottom",false) rs.setOutput("top",true) print("Launch sequence complete.") else print("nInvalid password.") end sleep(3) term.clear() term.setCursorPos(1,1) end
  2. Hello, I was wondering which cable/pipe/conduit/wire has the maximum throughput of electricity (RF, MJ, EU, etc)? My power generation is currently limited because of this problem (redstone conduit has max throughput of 10 000RF/t = ~ 200 000RF a second). I tried "transfer node" (energy) but it doesn't seem to be faster even tho it says that max throughput is 30 000 RF/t. I use biofuel generators with multiple separate redstone conduits connected to different sides of resonant energy cells to double/triple the RF/t (3 inputs on energy cell and 1 output, for faster charging). Anyways... any ideas/advices guys? Thanks in advance! -kind regards- Gomo
  3. Gomo

    Custom HUD

    Just installed this one -> http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1292294-compact-display-hud-1-0-2-first-release and it works flawlessly! Thanks ^_~
  4. Hello once again! I'm looking for a way to customize my ingame tekkit HUD (mainly the hotbar). Does anyone know some kind of editor/program that might be able to do that? Or could I simply open & edit file "X" and swap it out with w/e I want. Thanks in advance! -kind regards- Gomo
  5. It's not really about quarrys.. It's just annoying. (X amount of resonant energy cells in parallel connected via redstone conduit and when you power a hungry machine, it drains those energy cells one by one). Nothing game breaking ofc.
  6. Hey guys, Does anyone know why energy cells, dynamos etc do not charge/discharge equally (energy/liquid splitting up equally)? Example: You have 10 energy cells connected to a quarry and only one of them will be discharging till it gets empty and then the next one starts. Is there any way to fix this or is it supposed to work like this? [This is in Multiplayer] -kind regards- Gomo
  7. When you have everything going directly through ME, it drains a lot of power (which isn't really desirable at start.. endgame is something else)
  8. How do I add more then 9 items to the filter? There's way too many different types of ore and blocks go where they shouldn't.. (wanted to blacklist all the ore that is filtered for cooking) My setup in short: Tesseract on recieve items -> Buffer Chest -> 10 pulverizers & furnaces (each filtered for a different ore) -> 6 deep storage units (also filtered for different items) and then another separate itemduct that leads to the same output chest (buffer chest in which items get sucked into ME via an import bus) as the top of the furnaces do. So the problem is.. That extra itemduct pipe which is spoused to be for the rest of the items (unfiltered ones) also "steals" filtered items and stuffs them directly into the output buffer chest. EDIT: Okay.. so I figured it out. Just needed to set the ore filtering/deep storage pipe in 'vacuum' mode.
  9. Import bus which you can see on the pic is set to extract stacks (but that is for the ingots that have already been cooked). I had a problem in "incoming tesseract -> chest" area.. you can't use the bus to pump stacks of items in the BC pipes. Anyways.. I guess I'll just go with itemducts then. Thanks for help guys! I appreciate it!
  10. I use an ME system ofc, (if the gate cannot keep up with the incoming items where do you think I store em) and I use a large buffer chest.. I only have the BC pipes coz of the diamond transport pipe which I use as a filter. All my filtering/pulverizers and furnaces are crammed into a small room.. so idk if I can use different pipes w/o having to expand the room.
  11. Hello guys, I'm looking for a solution to my slow autarchic gate pumping, It simply cannot keep up with the quarry. I have a filter setup with pulverizers and furnaces and I need something other then combustion engines for fast item pumping (something that can run forever and doesn't need any maintenance). I'm not too familiar with the logistics pipes, never bothered to use em.. should I, and will it work with them? Also I read somewhere that powered wooden pipe can transfer items really really fast but can/will explode? Thanks in advance!
  12. Thanks for all the help guys, in the end.. it turns out that I just needed to change the server IP address so it's same as my new IPv4 address (when using powerline). EDIT: I had to port-forward this new address as well.
  13. When I run my server on wireless (port 25565, which I already portfowarded before) everything works fine. But, when I connect to the powerline ethernet it fails to connect to the port. (Everything else works fine, browsing, downloading etc.)
  14. Router: Speedport w 722v Powerline adapters: TP-Link TL-PA4010KIT Nano Powerline Adapter 500Mbps
  15. Hello guys, I've decided to buy 2 powerline ethernet adapters due to my weak wireless signal. Now the problem is.. my server doesn't want/cant connect to the port. Does anyone know what I need to do in order to make it work? And if it's even possible to have it working like that. (works great on wireless). Thanks in advance!
  16. Did it now.. Hopefully no more stuff gets lost. Ow and btw. what's with the storage monitors? Am I doing something wrong or are they just bugged? (right clicking doesn't drop the item)
  17. It has enough power.. And yes I'm pretty sure it destroyed/hid/stole some items. (Atm I use 6x 4K storage, and they're not full) Ow and.. taking items from first two storage monitor panels doesn't work (added the matrix)
  18. Hello guys, I noticed that my ME system is stealing/destroying/hidding items.. also, storage monitor panels aren't being refreshed if there's nothing going on in the ME network. Is this a known bug or am I doing something wrong? Also, if I didn't post in the right section, I apologize for that. :/ thanks in advance!
  19. AE (Applied Energistics) - http://ae-mod.info
  20. Thanks a lot guys for all the help. I actually figured my way out and made it work! (didn't check forums for few hours - was trying to make it work) I never did it before and that's why it was a bit confusing at start but now I understand. Once again, I appreciate all your help and I'm glad that there's always people that are willing to help out! Cheers
  21. I've signed up on that site. Can you please explain it in short how to set it up so it works. Do I need to port forward the DNS that I created for my IP address ? and do I set my tekkit server to that DNS in "server IP" options ?
  22. Not if don't have static IP.
  23. Hi there guys. At the moment I'm using hamachi to play with few friends of mine on a tekkit server. I was wondering if there's any other/better software that works the same way as hamachi ? Thanks in advance! (and I apologize if I posted this in wrong forum section)
  24. It worked, I don't know how to thank you. I really appreciate your help!
×
×
  • Create New...