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

feldim2425

Members
  • Content Count

    31
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by feldim2425

  1. feldim2425

    Pressure-plate door

    You need a loop. Otherwise the program will return before you step on the plate. ` require("component.redstone") ` is wrong. "component" is the library with a variable called redstone. You have to write ` require("component").redstone ` local component = require("component") local sd = require("sides") local rs = require("component").redstone while true do if rs.getInput(sd.front) == 15 then print("Opening door") rs.setOutput(sd.right, 15) else print("Closing door") rs.setOutput(sd.right, 0) end end You can stop the programm with: Ctl + Alt + C (terminate)
  2. https://github.com/MightyPirates/OpenComputers/issues/422 I think it is fixed
  3. Very good tutorial. One note the setup on the last picture is not the best if you try to send a network message (network loop).
  4. No problems in the newest version of OC and EnderIO.
  5. Just a short tutorial on how to download programs from the internet. You need... *) Computer (min. tier 2 case) *) Internet Card *) Disk or a Hard Drive (to store the file) Make sure that HTTP is enabled in the config!!! (default enabled) Download from Pastebin The OC pastebin program works like the program from CC. pastebin get [-f] <pastebin code> <path to the new file + filename> -- without path it will store the file in the current work directory -f (optional) overwrites a existing file example: pastebin get G61bgv29 hello.lua --stores hello
  6. feldim2425 Age: 16 MC nick: feldim2425 IRC: feldim2425
×
×
  • Create New...

Important Information

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