- Sky
- Blueberry
- Slate
- Blackcurrant
- Watermelon
- Strawberry
- Orange
- Banana
- Apple
- Emerald
- Chocolate
- Charcoal


BrisingrAerowing
Members-
Content Count
155 -
Joined
-
Last visited
-
Days Won
17
BrisingrAerowing last won the day on June 7 2020
BrisingrAerowing had the most liked content!
About BrisingrAerowing
-
Rank
Leading Member
Contact Methods
-
Minecraft
BrisingrAerowing
-
GitHub
BrisingrAerowing
Recent Profile Visitors
2712 profile views
-
Mod Page Allows computers to determine the entity that is contained in a Mob Imprisonment Tool. Currently does nothing else.
-
local keyboard = require("keyboard") local keys = keyboard.keys local isEnterPressed = keyboard.isKeyDown(keys.enter) This is for OpenOS.
-
You'll need an inventory controller to analyze the chest. Though I would recommend using an addon like OpenSecurity, as it has programmable key cards (among other things). I haven't used the Inventory Controller yet, so I won't be of much help with it.
-
BrisingrAerowing reacted to an answer to a question: OpenSecurity EntityDetector + Door
-
BrisingrAerowing reacted to an answer to a question: OpenSecurity EntityDetector + Door
-
Yes.
-
@mememan @SavageNoob Your Java installs are likely out of date. You should update to the latest.
-
Suck From Slot Fails Without Robot Moving Away, Is This Intended?
BrisingrAerowing replied to Kyle's question in Programming
A bit late, but Galacticraft (and by extension Extra Planets) machines are sided, so automation can only extract from one side. That's the root of the issue here. -
TetraSource reacted to a post in a topic: Bundle - allows to use multiple filesystems as a single one
-
One quick question, what MC version are you on? If you're on 1.12.2, then your out of luck, as the integration only exists on 1.7.10.
-
operatingsystem Fuchas - An OS with focus on security
BrisingrAerowing replied to Zen1th's topic in Programs
The service is mostly used for the routing feature, AFAICT. -
This was quite an interesting read. Good work!
-
BrisingrAerowing reacted to a post in a topic: Scientific approach to Geolyzer
-
Serializing tables over network interface
BrisingrAerowing replied to Teodeoth's question in Programming
OpenOS has a serialization library that turns tables into a string that can be sent over the network. you could also use something like MessagePack, which may end up being slightly smaller.- 2 replies
-
- robot
- internet card
-
(and 2 more)
Tagged with:
-
operatingsystem Fuchas - An OS with focus on security
BrisingrAerowing replied to Zen1th's topic in Programs
Quick question: Is there a system similar to OpenOSs RC system (i.e services)? I want to port Minitel to Fuchas, but it requires a service to work. -
Middle click works for me on FF 76.0.1 on Win10, as does Ctrl click. I would presume this was a browser bug.
-
Password door program accepts anything as correct
BrisingrAerowing replied to Exonent's question in Programming
You're reading into a variable called i, but are comparing a variable called input. Also the password needs to be surrounded by quotation marks ("). -
A couple of things. You may want to allow specifying a path to create the database instead of a hard coded path, and allow multiple databases to be created per program. You can do this by having flatdb.connect return a database object that contains all the other functions (other than the createDatabase method).
-
BrisingrAerowing reacted to a post in a topic: FlatDB - An SQL implementation
-
BrisingrAerowing reacted to a post in a topic: FlatDB - An SQL implementation
-
OK. This is awesome. EDIT: Have your first (and second) reputation points. EDIT2: Also, I would recommend using Bundle to store the database file, as it can store files across multiple filesystems.