Calendar
About
Calendar is a plugin that will add a new feature to the game.. The ability to put a calendar on the wall.
In the upcoming Minecraft 1.4 Mojang will add Item Displays, these allow you to put a Map inside it
After testing the normal maps in a Dev release of 1.4 I noticed that maps do get rendered inside them
So I had the idea to put a calendar inside an item display.
Currently I am still developing the plugin, and I want to make sure it does work in 1.4 Thats why I have this server mod in Experimental mode.
Here is a sneak peak of what you will see:

I want the user to be able to create their own Calendar layouts , and use different variables such as $mmmm ->month full writen $dd -> day two decimals ,....
And place them using X,Y, coordinates
Maybe I can even add a calendar with a picture that changes every month (Actually that is easy, only problem is that I am too lazy to search for some pictures that I can use for free)
Progress
22/09: Finally got the multi map render bug fixed :)
Example of my yml:
# Add your type ID under types:
# To add content, place it under add:
callendars:
basic:
description: A basic Calendar with month day and year
interval: 30
add:
month:
string: $MMMM
position_x: $center
position_y: 30
font: Serif
font_style: REGULAR
font_size: 20
color: BLACK
day:
string: $d
position_x: $center
position_y: 75
font: Serif
font_style: REGULAR
font_size: 55
color: BLACK
year:
string: $yyyy
position_x: $center
position_y: 100
font: Serif
font_style: REGULAR
font_size: 15
color: BLACK
basic2:
description: A basic Calendar with month day and year
interval: 30
add:
month:
string: $MMMM
position_x: $center
position_y: 30
font: Verdana
font_style: REGULAR
font_size: 20
color: green
day:
string: $d
position_x: $center
position_y: 75
font: Verdana
font_style: REGULAR
font_size: 55
color: green
year:
string: $yyyy
position_x: $center
position_y: 100
font: Verdana
font_style: REGULAR
font_size: 15
color: green
Basic = the image calendar
Basic2 = the same image but with green text in verdana
working on image now
the contents are added after eachother, so a user can set a background or forground picture by placing it before something.
Release Data
ASAP when 1.4 comes out
Special thanks
Special thanks to 'Paulushi' for the great idea