# Simple Clock


SC is a clocklabel with some customisation options but mainly created for singleplayer. (Not tested on a server.)
It uses 'os.date("string")'.

Im not a programmer so sorry for bad style. I know there are some functions they can be put together and so on.
They are no security checks and no value validation checks for commands.

The most part e.g. string-ext.lua, table-ext.lua, parse-args.lua are copied from LordFoobar's world-edit.

So big thanks to the contributors from world-edit!

* LordFoobar (Yanick Rochon)
* andyzee (Andy Zee)

THX!


## Usage

In-game, in chat, type `/cl <command>` where `<command>` is one of the following :

	*format [12|24| <custom] string > if custom, you can generate a string e.g. "%H:%M:%S" without quotation mark.
	EX: "/cl format custom Today is %A an its %I:%M:%S %p"

		%a	abbreviated weekday name (e.g., Wed)
		%A	full weekday name (e.g., Wednesday)
		%b	abbreviated month name (e.g., Sep)
		%B	full month name (e.g., September)
		%c	date and time (e.g., 09/16/98 23:48:10)
		%d	day of the month (16) [01-31]
		%H	hour, using a 24-hour clock (23) [00-23]
		%I	hour, using a 12-hour clock (11) [01-12]
		%M	minute (48) [00-59]
		%m	month (09) [01-12]
		%p	either "am" or "pm" (pm)
		%S	second (10) [00-61]
		%w	weekday (3) [0-6 = Sunday-Saturday]
		%x	date (e.g., 09/16/98)
		%X	time (e.g., 23:48:10)
		%Y	full year (1998)
		%y	two-digit year (98) [00-99]
		%%	the character `%´

	*position [topleft|topcenter|topright|bottomleft|bottomcenter|bottomright|leftcenter|rightcenter| <custom] X  Y pivot > if custom, add X, Y coords as floating point value in percentage 1.0 = 100% and the pivot point 0-4
	EX: "/cl position custom 0.98 0.135 0"

		pivot points:

		2-------3
		|   4   |
		0-------1

	*color < value >  EX: "/cl color 0x0066FFFF"

	*size < value > integer fontsize EX: "/cl size 48"