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

BrisingrAerowing

Members
  • Content Count

    153
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by BrisingrAerowing

  1. The computer component is defined in the mod itself, not as a Lua file.
  2. Unless you can get a method to use 64-bit integers, there's nothing you can do.
  3. A relay system with multiple nodes (like Factorio Roboports) would probably work well. They could take in packages and sort them to send to other nodes.
  4. Is 'special' defined before or after this function? Lua functions / variables / etc must be defined before they are used, similar to C / C++. You can define local variables for functions and assign them later in the file as well.
  5. Probably because referencing an unset variable results in nil, which makes the runtime think that parameter wasn't passed.
  6. I'm not talking about that. You have io.open with the second parameter not being in quotes, which breaks things as Lua thinks you're passing a variable. local fill = io.open("doorSettings.txt", r) The r needs quotes. Both door controller scripts have this issue.
  7. Loading these files in VS Code shows a large number of syntax errors. I'm using the Lua Language server from sumneko. Some of these errors can be ignored (e.g. os.sleep isn't in base Lua), but a few break the code (e.g. line 129 of the multi door controller is missing quotes around the second io.open parameter).
  8. Looks good. I'm probably going to edit this for my Black Mesa / Aperture Laboratories inspired research facility base.
  9. The OpenOS and MineOS Database links have identical content. I think you uploaded the MineOS one for both.
  10. Not possible with this library, unfortunately. Websockets are rather complicated, so a server is likely not possible.
  11. That issue is because you have your CPU set to Lua 5.2. Take the CPU out of the computer and sneak-right-click with it in your hand to change it to Lua 5.3.
  12. I've modified this to be able to remove either a specific filesystem or the last added filesystem by either passing an address or '.' (for the last added) as the first parameter to the remove command. The second parameter is the forcefully option. so 'rc bundle remove ad432df3 true' (yes, short addresses are allowed).
  13. $(MAKE) -C $subdir$ Where $subdir$ is the directory you want to build. GNU Make Recursion Docs has more info.
  14. You can have the top level makefile call the makefile in the kernel directory.
  15. lua-lockbox should work. There's also Pure Lua Crypto, which I use (it's a bit smaller).
  16. No. Use Optional in 1.12.2 and before. OC needs a major rework for 1.14+.
  17. A list of mods that aren't hosted on CF that are allowed to be used in CF packs.
  18. Are you going to put this on CurseForge? If not, could you get it added to the accepted 3rd party mods list?
  19. I really need to create some more documentation for my mods.
  20. FYI: OC 1.7.5 is out on CF, and it contains the fix for timers getting starved. @XyFreak
×
×
  • Create New...

Important Information

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