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

Elektron72

Members
  • Content Count

    20
  • Joined

  • Last visited

  • Days Won

    1

Elektron72 last won the day on October 1 2018

Elektron72 had the most liked content!

About Elektron72

  • Rank
    Junior Member

Contact Methods

  • Minecraft
    Elektron72
  • GitHub
    Elektron72

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Looks like it requires this graphics library to work properly: https://github.com/IgorTimofeev/GUI Also, from reading the installation instructions, it looks like you will need to modify the code so it accesses the correct sides of the computer.
  2. There is a function called filesystem.exists(), which takes a path string and returns a boolean. You could use this to check whether the file exists.
  3. Try rebooting the computer. If that doesn't work, craft an Analyzer (if you don't already have one) and Sneak+Click on the computer case. It should show the error.
  4. Can I see a screenshot of the computer case GUI to try and figure out why it isn't booting?
  5. Could I see a screenshot of a directory listing of the root directory after the drive is reinserted? I would like to see if the directory is gone.
  6. Vanilla mob spawners activate based on player distance instead of chunkloading. You have to be within 16 blocks to get a spawner to activate.
  7. You could use filesystem.list(), use the iterator to loop over every file and sub-directory, and add to a counter if filesystem.isDirectory() returns false.
  8. Version 0.12 Released: Fixed installer Added rename
  9. Version 0.11 Released: Added copy and paste for files
  10. Cell is a graphical file manager for OpenComputers that allows you to browse files and open them in other programs, such as the editor or simply running .lua files. You can also customize what programs can be used to open files through the programs.cfg file. Tutorials: Browsing files/directories Select files/directories by clicking on them in the panel on the right side of the screen If a directory contains a large amount of files or sub-directories, use the arrow buttons to scroll through pages To go up a sub-directory, click the up arrow
  11. This operating system is already one of the best OpenComputers operating systems I have seen. When will there be a text editor/file creation?
  12. The tint setting is used on line 84 of the example.3dm file that comes with the print3d examples
  13. Flat Colored Blocks does not use different textures for every block. Instead, the same texture is recolored by the mod code. To recolor the texture in 3D models, use the tint setting.
  14. local component = require("component") local sides = require("sides") local rs = component.redstone local dbg = component.debug local computer = component.computer local x = 0 local input = sides.left local output = sides.right while true do if rs.getInput(input) > 0 then x = #dbg.getPlayers() print("Players Updated!") end if x >= 500 then rs.setOutput(output, 15) os.sleep(5) computer.beep() computer.stop() end print(x) os.sleep(0.1) end Requires a redstone card and a debug card. Feel free to change the definitions of the sides input and
  15. This means that the computer/server cannot find an operating system. Try adding a disk drive and inserting an operating system disk, such as the OpenOS floppy disk.
×
×
  • Create New...

Important Information

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