Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

Nexarius

Members
  • Content Count

    129
  • Joined

  • Last visited

  • Days Won

    19

Posts posted by Nexarius

  1. On 25.11.2017 at 4:35 PM, TePi said:

    Hallo

     

    Ich arbeite seit kurzem sehr erfolgreich mit dem programm, habe aber eine frage, da sie nicht im tutorial beschrieben wird. 

    Wie bekomme ich ein Remote Terminal ans Laufen?

    ich habe gesehen, dass das implementiert wurde, aber ich wüsste gern, was ich machen muss um nicht überall neben dem SG auch noch OC aufbauen zu müssen fürs IDC.

    liebe Grüße und danke im voraus

    Also

    1. Das Remote Terminal funktioniert genau wie ein Bildschirm bzw es ersetzt den Bildschirm.

    2. Remote Terminal kann sich nur mit einem Server verbinden.

    13 hours ago, chezpaul said:

    Is there a way to change the colors on the main screen?

    I would like to go a little more blackish.

    Thanks. Great program.

    Technically yes.

    I used color variables over the entire program.
    They are initialized in the /stargate/check.lua file.
    If you can give me the HEX values for the "dark theme" then I can implement it as a config option (check.lua is going to be overwritten on each update).

    This might be helpful.

  2. Place an adapter next to a Capacitor bank.

    The computer needs cpu, ram, disk, openos, lua bios, redstone card. It should emit a redstone signal to the bottom if the generators have to be turned on.

  3. ----> UNTESTED <----

    I think this should work.

    Quote

    local component = require("component")
    local redstone = component.redstone

    while true do
        local energie = 0
        local maxenergie = 0
        for adresse in pairs(component.list("capacitor_bank")) do
            energie = energie + component.proxy(adresse).getEnergyStored()
            maxenergie = maxenergie + component.proxy(adresse).getMaxEnergyStored()
        end
        local prozent = energie / maxenergie
        if prozent > 0.8 then
            redstone.setOutput(0, 0)
        elseif prozent < 0.4 then
            redstone.setOutput(0, 255)
        end
        os.sleep(15)
    end

     

  4. Hi

    Is there any way to stop io.read() or term.read() once it was called without the user pressing enter? (for example automatically abort after 30sec?)
    Is there another way to get the input that allows it?

    Thanks for the help :)

  5. On 5.10.2017 at 10:14 PM, neigenoir said:

    hi 

    could industrialcraft (gregtech) crop farm automation (or even breeding) be done with opencomputers?
    is there a way to get cropname & groth level or get the message from use() of cropnalyser on crop?
    or is there a compatibility mod?

    robot.detect() only returns true (solid)
    geolyzer.analyze() only shows that it is ic2 crop

    The robots can rightclick. It is entirely possible to automate the ic2 crops.

    I have done that actually. (I made that program a long time ago to automate redwheat.)

  6. 12 hours ago, craft90 said:

    Awh that's too bad. I was playing with the thought of being able to send the IDC via a tablet. Like in the show where they send it over so HQ will open the iris. 

    You could do that with a wireless network card (that is an internal not external component) but of course the other side needs a computer who can detect the signal.

  7. I just tried it again (but I have OpenOS 1.6) and it updated normally to OpenOS 1.6.8

     

    Now that the OS is broken there isn't really a way to fix it. I suggest that you make another HDD with a fresh copy of OpenOS then update it to 1.6.8 and then insert your old HDD and copy the files to your new one.

  8. 7 hours ago, Elijahlorden said:

    I designed the tablet driver with the intention of using linked cards.  I find wireless networks in OC to be unreliable, especially where the tablet is concerned.  I can add an option to toggle the use of wireless cards in responding to a ping and accessing the gateRegistry, though.

    I've used wireless network cards and haven't noticed that they are unreliable.

    Do you know about this?

    Quote

    The higher the strength the more energy is required to send the message. The strength is equivalent to the distance the message can travel. The hardness of blocks in the path is subtracted from the strength. Some randomness is applied to the strength.

  9. local component = require("component")
    
    for k in component.list("tile_defense_machine_launcherscreen_name") do
      component.proxy(k).launch()
    end

    You can use this if you have multiple launchers and want to activate all of them.

  10. 11 hours ago, dddvddd said:

    Thanks, I know how to get all methods.
    I'm going another way, but here I also have a problem... I can't pull out items from input slots of GT5 machines. I tried transposer and adapter, tried different methods: transferItem(), pushItem(), pullItem(), swapStack(). It works fine with chests but not with machines... (I know that machines may have slots with different numbers)

    That is simple. You can't. Gregtech doesn't allow it.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.