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

Log

Members
  • Content Count

    41
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Log

  1. A simple and compact code lock with a password that can contain digits from 1 to 9. 0 is used as the "enter" button. The length of the password can range from 1 to 255. Steps to use: 1. Arrange the modules in a comfortable configuration (lock the sides if necessary) 2. Set the constants 3. Upload the program to the execution module 4. Set the password Right-click to open the ROM interface In cell 0 set the password length Sequentially set each digit of the password Install the ROM into a casing block 5. To activate redstone, type t
  2. To access the remaining slots you need to connect through character's head.
  3. Log

    OpenPrograms

    Hey, I would also like to have a repository in the Open Programs organization. My nickname: zgyr
  4. I own black magic. Сan determine the block hardness in one scan, at any distance. Maybe I'll write a post explaining how to do it.
  5. That is mighty easy. computer.pullSignal = nil
  6. local function compass() local sides = {2, 1, 3, 0} -- links of cardinal points, for raw data local D = nil for s = 1, #sides do if robot.detect(3) or robot.place(3) then -- check for block in front side local A = geolyzer.scan(-1, -1, 0, 3, 3, 1) -- scan blocks around the robot robot.swing(3) local B = geolyzer.scan(-1, -1, 0, 3, 3, 1) for n = 2, 8, 2 do if math.ceil(B[n])-math.ceil(A[n])<0 then -- check the difference between two scans D = sides[n/2] -- set the direction break end end else -- turn if there is
  7. Robot can determine the facing using the geolizer. And you can scan 16x16 blocks at a time, as I did.
  8. Program and library for building GPS network. https://github.com/DOOBW/OC-GPS Download: wget https://raw.githubusercontent.com/DOOBW/OC-GPS/master/usr/bin/gps.lua /bin/gps.lua wget https://raw.githubusercontent.com/DOOBW/OC-GPS/master/usr/lib/gps.lua /lib/gps.lua The functionality is the same as in the ComputerCraft. Additional command "flash" allows to upload firmware to EEPROM. When the coordinates are precisely determined, when flashing the position of the microcontroller can be omitted - at the first start it will determine its position from neighboring sate
  9. Update Added ability to work with solar panels. When the energy level falls below 30 percent, the robot climbs to the surface and charges from the built-in solar panel. There is a check of time of day and weather conditions.
  10. Log

    Transposer

    This bug has already been fixed You need update the mod to the latest version.
  11. There are quite a few games, but their do not post them on this forum. For example: simple RPG Or flappy bird
  12. I fixed it. Download the file again, please. The error was due to the computer.beep(), which is not compatible with the old versions OpenComputers. P. S. Instead of batteries, I advise you to use the experience upgrade or additional generator
  13. Such objects are just tables, they must be processed in the correct sequence. players = component.debug.getPlayers() -- get a players list for i = 1, players.n do print(players[i]) -- display the name of the next player end player = component.debug.getPlayer(players[1]) -- get player proxy by name from list world = player.getWorld() -- get the proxy of the world in which the player is located print(world.getDimensionName()) -- print the name of the world -- Or you can get everything at once players = component.debug.getPlayers() for i = 1, players.n do print(players[i], component.d
  14. There are variables in the code that can be customized chunks - how many chunks need to be processed min and max - the minimum and maximum hardness of mined blocks port - port for interaction with the robot (if a wireless card is installed)
  15. I present you a program for a robot that allows you to mine ore without going down into the caves. Robot, using a geolyzer, can find and mine ore. All features are not yet implemented, so I ask you to test and inform me about a bugs. Requirements: Computer case (tier II or III) Inventory Upgrade (more the better) Inventory Controller Upgrade Hard Disk Drive EEPROM with Lua BIOS Geolyzer RAM (tier I or higher) CPU (any) Hover Upgrade (tier I) Diamond pickaxe or equivalent tool Optional: Crafting
  16. One could use Refined Rtorage, but there is no working driver, so only vanilla chest. Your idea of this program differs only in an additional window when selling. My nick in IRC - 'Doob'
  17. It very easy. I earlier used the PIM (OpenPeripheral) for greater convenience, but because of the bugs in addon had to abandon it. I can slightly modify the program so that prices can be set by the operator. Or to write another, simpler, but I need to know what mods I can use, here I used a AE2.
  18. in this https://github.com/OpenPrograms/Sangar-Programs/blob/master/geo2holo.lua#L29
  19. you can add on line 29 'component.hologram.setScale(3) '
  20. Is a simple example. To nobody could know the password, you need to add hashing. local event = require('event') local term = require('term') local gpu = require('component').gpu local W, H = gpu.getResolution() local color1, color2 = 0x00FF00, 0xFF0000 local password = '123456789' -- needed hash function, for most security event.shouldInterrupt = function() return false end -- blocking Ctrl+Alt+C event.shouldSoftInterrupt = function() return false end -- blocking Ctrl+C gpu.setForeground(color1) while true do term.clear() term.setCursor(W/2-10, H/2) term.write('PASSWORD: ')
  21. Server setting up does not differ from the setting up of a conventional computer. https://www.youtube.com/watch?v=KDqXJzacdQQ&list=PLcZKee5-koAC2-pKrE6NOycvfX-KMm013&index=42
  22. Reactor: getHeat getMaxHeat getEUOutput isActive getInventorySize Inventory controller: getStackInSlot Redstone I/O: setOutput
  23. I make is with pseudographics pastebin get wA3Nz2YC clock.lua
×
×
  • Create New...

Important Information

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