This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
NEOparmen's profile picture

Red Glasses - Open Peripheral Glasses Os V1.2

Started by NEOparmen, 10 August 2013 - 07:32 AM
NEOparmen #1
Posted 10 August 2013 - 09:32 AM
RedGlasses

Version 1.2




A new OS for OpenPeripheral
All you'll need is computer and Terminal glasses bridge from OpenPeripheral mod
Feature
  • in-game time, date
  • TimeDash (in-game time position in 1 day cycle)
Changelog
Spoiler

V1.2
Removed login system (not needed)
Now it's only 1 file
More information together, less waste of time

V1.0.1
Changed login system
Added registrations

V1.0.0
First release!


Screenshots
Spoiler



Download

http://pastebin.com/Cj3vELSM
or
pastebin get Cj3vELSM red

Created by NEOparmen
kornichen #2
Posted 10 August 2013 - 10:51 AM
Screenshots please ;D
Sxw #3
Posted 10 August 2013 - 02:14 PM
The chat_command event has a user parameter after the message, so you could have that as a login method. Otherwise, nice job
PinYin #4
Posted 06 September 2013 - 02:20 AM
cant login
frostthejack #5
Posted 23 September 2013 - 01:26 PM
i like it although there is a bug if you enter the password wrong you have to back out then retry login
NEOparmen #6
Posted 30 September 2013 - 10:00 AM
this bug will be fixed in next update
Lego Stax #7
Posted 01 October 2013 - 10:38 AM
This reminds me of 1lann's Plastic program for the Terminal Glasses.
NEOparmen #8
Posted 01 October 2013 - 04:45 PM
Desing in version 1.0.2, which will be released at the end of October

alakazard12 #9
Posted 20 October 2013 - 09:59 AM
Great job, but it's "minimize", not "minimalize." That's really bugging me. Other than that, it's great.
Csstform #10
Posted 05 November 2013 - 11:57 AM
Version 1.2 yet?
Knux14 #11
Posted 12 December 2013 - 02:56 AM
This code is ugly :/

gray = 0x555555
aqua = 0x55FFFF
red = 0xFF5555
white = 0xFFFFFF
var1 = "Monday"
var2 = "Tuesday"
var3 = "Wednesday"
var4 = "Thursday"
var5 = "Friday"
var6 = "Saturday"
var7 = "Sunday"
var8 = "January"
var9 = "February"
var10 = "March"
var11 = "April"
var12 = "May"
var13 = "June"
var14 = "July"
var15 = "August"
var16 = "September"
var17 = "October"
var18 = "November"
var19 = "December"
should be


colors = { "grey"=0x555555, "aqua"=0x55FFFF, "red"=0xFF5555, "white"=0xFFFFFF }
days = { "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"}
months = {"January", "February", ..., "December" }
theoriginalbit #12
Posted 12 December 2013 - 03:02 AM

colors = { "grey"=0x555555, "aqua"=0x55FFFF, "red"=0xFF5555, "white"=0xFFFFFF }
Invalid syntax; should be

colors = { grey=0x555555, aqua=0x55FFFF, red=0xFF5555, white=0xFFFFFF }
or

colors = { ["grey"]=0x555555, ["aqua"]=0x55FFFF, ["red"]=0xFF5555, ["white"]=0xFFFFFF }
Lyqyd #13
Posted 04 January 2014 - 02:06 PM
Locked by request.