You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Embedded Computer" mod is an addon for CC: Tweaked that adds the Embedded Computer, a secure headless computer, and other goodies to the game.
3
5
4
-
# License
6
+
## Features
7
+
- The Embedded Computer, it is a secure headless computer that can only be modified by booting it off of a disk drive. It can be wiped via peripheral API (`embeddedPeriph.format()`) and can be "locked" via `embedded.setPassword("superSecurePassword")`, preventing formatting until unlocked with `embeddedPeriph.unlock("superSecurePassword")`
8
+
- Higher capacity storage items, the Zip Drive and Flash Card. They can help store large programs for a much higher cost than a normal floppy
9
+
- Hard drive block, they allow you to mount a 25mb storage device to ANY directory. You can mount them to `/a` or even a `/mnt/hdd1` at the cost of needing to manually call `hddPeriph.mount("/directory/goes/here")` every boot and `hddPeriph.unmount("/directory/goes/here")` when you want to unmount them.
5
10
6
-
All versions prior to [v2.2 (82b367be5ee7d6888882f9b947e964fa6b011fbc)](https://github.com/WindClan/EmbeddedComputerMod/commit/82b367be5ee7d6888882f9b947e964fa6b011fbc) are under the MIT license
11
+
## Versioning
12
+
13
+
(game version).(big update).(small update)
14
+
15
+
16
+
- 1.20.1 is 0.X.X (you are here)
17
+
- 1.21.1 is 1.X.X (latest, no dedicated branch atm)
18
+
19
+
## Disclaimer
20
+
21
+
PLEASE DO NOT USE ACTUAL PASSWORDS TO LOCK EMBEDDED COMPUTERS!!! They aren't hashed since setPassword is implemented in Lua and I didn't want to add a random hash lib to rom!!! If you want a secure lock code thats secure you should write a 2kb arbitrary string to `/.LOCKED`
22
+
23
+
If you use an actual password (even if it was hashed) the server owner could add something to intercept and steal your password! Don't use an actual password you use for other things!!!!
24
+
25
+
## License
26
+
27
+
All versions prior to [v0.2.2 (82b367be5ee7d6888882f9b947e964fa6b011fbc)](https://github.com/WindClan/EmbeddedComputerMod/commit/82b367be5ee7d6888882f9b947e964fa6b011fbc) are under the MIT license
7
28
8
29
With permission from the other contributor Herr Katze, all versions past that are licensed as MPL 2.0
privatefinalEmbeddedComputerBrainbrain = newEmbeddedComputerBrain(this); // This does nothing. it's just there to make the Computer Component happy lmao
0 commit comments