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


Michiyo
Moderators-
Content Count
88 -
Joined
-
Last visited
-
Days Won
31
Michiyo last won the day on August 4 2019
Michiyo had the most liked content!
About Michiyo

-
Rank
Moderator
- Birthday 12/11/1985
Contact Methods
-
Website URL
http://pc-logix.com
-
Skype
MichiyoRavencroft
-
Minecraft
MichiRavencroft
-
GitHub
MichiyoRavencroft
Profile Information
-
Gender
Female
Recent Profile Visitors
2406 profile views
-
Moved to proper category.
- 2 replies
-
- opencomputer
- sgcx
-
(and 3 more)
Tagged with:
-
Because you are a new member, without any approved posts.
-
This hasn't been supported since Minecraft 1.6.4 and OpenComputers 1.2. It was originally posted in 2014, no this isn't on curse and will not be.
-
OpenSecurity has a built in program for interfacing with the CardWriter it's *VERY* simple but shows the basic usage once you've connected a CardWriter you'll find it's been auto mounted and should be in /bin as 'cardwriter.lua' That file is: https://github.com/PC-Logix/OpenSecurity/blob/1.12.2/src/main/resources/assets/opensecurity/lua/cardwriter/bin/cardwriter.lua The Wiki on GitHub (And the manual in game) has the documentation for pretty much the entire mod https://github.com/PC-Logix/OpenSecurity/wiki As for copying code from inside MineCraft out, you can't but what you *CAN* do i
-
Password door program accepts anything as correct
Michiyo replied to Exonent's question in Programming
You either need input = io.read() or if i == pass then Also as stated, you need to put the pass in quotes pass = "tama" -
Opening your file in notepad++ with show all characters enabled shows a [NUL] at the end of line 9, might be related. You also have a ton of [NUL]'s at the end of the file.
-
Have them open that file in edit, compare with what should be there.
-
Lizzian reacted to a post in a topic: StattenOS - Base control system
-
operating system StattenOS - Base control system
Michiyo replied to Elijahlorden's topic in Programs
no primary 'modem' available. It's looking for a component that provides "modem" Likely a network card, or a linked card. -
John The Cooling Fan reacted to a post in a topic: OpenSecurity 1.7.10/1.10.2
-
os_door is the old name of the door controller component, it was renamed in the port to 1.10+ and this script hasn't been updated to match. Change all instances of `os_door` to `os_doorcontroller` to resolve.
-
When writing a script you have to require the component library with component = require("component") When running code directly from the Lua interpreter this line isn't needed.
-
The door controller has to be touching the door, but it can be camouflaged, just click the block with any solid non tile entity block. Edit:Or... it should I just noticed an issue saying this was broken in the 1.12 port as well...
-
XyFreak reacted to a post in a topic: Big Reactors Grid Control
-
Looks like your trying to run the program on an older OpenOS version or an older version of OpenComputers if the OC version is recent but you haven’t upgraded the OpenOS install you don’t have the new thread library.
- 851 replies
-
- bigreactors
- extremereactors
-
(and 2 more)
Tagged with:
-
Have you installed OpenOS or are you running it directly from the floppy? Type install and let it copy everything to the HDD the floppy is read only.
- 58 replies
-
- opencomputers
- sgcx
-
(and 2 more)
Tagged with:
-
yes, well your lamp is on the top there...
-
rs.setOutput(side: 5, 16) remove 'side:' from that. Also, it'd likely be easier to use the sides API which you've already includes so sides.left or sides.right instead of '5'