- Sky
- Blueberry
- Slate
- Blackcurrant
- Watermelon
- Strawberry
- Orange
- Banana
- Apple
- Emerald
- Chocolate
- Charcoal
BrisingrAerowing
Members-
Content Count
153 -
Joined
-
Last visited
-
Days Won
18
BrisingrAerowing last won the day on February 24 2022
BrisingrAerowing had the most liked content!
About BrisingrAerowing
-
Rank
Leading Member
Contact Methods
-
Minecraft
BrisingrAerowing
-
GitHub
BrisingrAerowing
Recent Profile Visitors
4100 profile views
-
The computer component is defined in the mod itself, not as a Lua file.
-
Large numbers - greater than 2.147.483.647
BrisingrAerowing replied to Dustmuz's question in Programming
Unless you can get a method to use 64-bit integers, there's nothing you can do. -
Kerbeeb reacted to an answer to a question: Worldwide drone navigation
-
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.
-
[WIP] NetCoin, a fully working cryptocurrency made for OpenComputers
BrisingrAerowing replied to Juanan76's topic in Programs
This is rather interesting. -
Need help on redefining an object
BrisingrAerowing replied to xX_Pokeman2003_Xx's question in Programming
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. -
Probably because referencing an unset variable results in nil, which makes the runtime think that parameter wasn't passed.
- 15 replies
-
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.
- 15 replies
-
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).
- 15 replies
-
Looks good. I'm probably going to edit this for my Black Mesa / Aperture Laboratories inspired research facility base.
- 15 replies
-
The OpenOS and MineOS Database links have identical content. I think you uploaded the MineOS one for both.
- 15 replies
-
BrisingrAerowing reacted to a post in a topic: Platformer game on OpenComputers
-
Wow! This is amazing!
-
Not possible with this library, unfortunately. Websockets are rather complicated, so a server is likely not possible.
-
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.
-
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).
- 7 replies
-
- rc
- filesystem
-
(and 1 more)
Tagged with:
-
operatingsystem Fuchas, a powerful operating system
BrisingrAerowing replied to Zen1th's topic in Programs
This is rather cool. I might mess around with it later.