Unknown2010-01-21 17:11:39
Thought I would share a small widget I created for Mudlet. It captures the current date, including month, year, day, and moonphase, gags the output from Lusternia, and displays a calendar instead.
It's currently set to sit in the top-right corner, but this can be adjust to just about anywhere. I'll try to make one specifically for use with the nexus-like gui posted by Vadi in the next day or so, suggestions as to where in that gui you would potentially like a calendar to be placed are welcome.
It comes with an alias, ^rc$ to recreate the calendar... this is really only useful if you're making changes to it, if you wish to install it without QQing and logging back in. In the second instance, import the xml, use the 'rc' alias, and then check the DATE.
Colors can be easily changed... search the script portions for and and change them to colors you like more, if you are so inclined.
If you need help integrating it into the gui elements you already have in place in Mudlet, let me know. I included a script to handle window resizing, if you have one in place already delete the one this adds, and add the function demonnic_resizeCalendar() to the list of things you're already doing to handle window resizes.
Screenshot.
And the goods -
version 2, now with herbalist addon
Version3 - bugfix for herbalist addon, errored in month of Tzarin as I'd accidently named it Urlachmar in the table.
It's currently set to sit in the top-right corner, but this can be adjust to just about anywhere. I'll try to make one specifically for use with the nexus-like gui posted by Vadi in the next day or so, suggestions as to where in that gui you would potentially like a calendar to be placed are welcome.
It comes with an alias, ^rc$ to recreate the calendar... this is really only useful if you're making changes to it, if you wish to install it without QQing and logging back in. In the second instance, import the xml, use the 'rc' alias, and then check the DATE.
Colors can be easily changed... search the script portions for
If you need help integrating it into the gui elements you already have in place in Mudlet, let me know. I included a script to handle window resizing, if you have one in place already delete the one this adds, and add the function demonnic_resizeCalendar() to the list of things you're already doing to handle window resizes.
Screenshot.
And the goods -
version 2, now with herbalist addon
Version3 - bugfix for herbalist addon, errored in month of Tzarin as I'd accidently named it Urlachmar in the table.
Unknown2010-01-21 21:55:31
Very spiffy.
Unknown2010-01-21 23:15:46
It is a nifty little thing. I am seeing more and more from mudlet and I am getting more happy to see it.
Unknown2010-01-22 01:34:45
Mudlet can definitely do neat things, and I hear it's very fast. (MUSHclient can do this stuff, too, just for the record.
)

Lorina2010-01-22 02:31:36
QUOTE (Zarquan @ Jan 21 2010, 08:34 PM) <{POST_SNAPBACK}>
Mudlet can definitely do neat things, and I hear it's very fast. (MUSHclient can do this stuff, too, just for the record.
)

Lol, pimping out your system, Zarquan!?

Anyways, that is a COOL addon! It def adds flavor.
Unknown2010-01-22 03:19:58
I'm slowly but surely working on a Nexus overlay for MUSHclient, since so many new folks seem to love the display. I've been using my own custom gauges and map display for a long time, though.
Unknown2010-01-22 04:55:25
QUOTE (Zarquan @ Jan 21 2010, 10:19 PM) <{POST_SNAPBACK}>
I'm slowly but surely working on a Nexus overlay for MUSHclient, since so many new folks seem to love the display. I've been using my own custom gauges and map display for a long time, though.
I keep meaning to make MUSH run in wine, but I don't have a handy windows box to do the initial installation. I'd like to be able to better port some of the MUSH utility scripts and such posted to the boards to Mudlet's lua api, and I think having a running copy of MUSH would help. The nice thing is, many of the MUSH scripts (all the ones I've looked at so far) are in lua, so it really is just a matter of changing the api and making sure there aren't any namespace collisions (well, I guess lack-of-namespace collisions would be more accurate).
I suppose I could run it in a VM, it's not like I'd be using it for combat and require it necessarily perform at top speed.
Glad to see anyone likes the widget, I wasn't sure if I was just being crazy deciding I had to have a calendar. heh.
Unknown2010-01-30 06:10:27
As a note, I've uploaded a newer version of the calendar widget.
A few things:
- added the functions demonnic_calendar_posx() and demonnic_calendar_posy() which return numeric values. Insert the calculations you need to use to adjust the calendar's position to fit with whatever your gui elements are. For instance, mine look like this (the default is still upper-right corner, like screenshot above, which has been updated):
- Added information for herbalists. It is off by default, however the alias 'herbcal' will toggle it on and off. Again, see screenshot at the top post (keeping files there so they're easy to find)
- Fixed minor annoying bug introduced with Mudlet 1.0.6 which is soon to be released. Yes, I try to fix bugs in my scripts pre-release.
Enjoy!
A few things:
- added the functions demonnic_calendar_posx() and demonnic_calendar_posy() which return numeric values. Insert the calculations you need to use to adjust the calendar's position to fit with whatever your gui elements are. For instance, mine look like this (the default is still upper-right corner, like screenshot above, which has been updated):
CODE
function demonnic_calendar_posx()
  local WindowWidth, WindowHeight = getMainWindowSize()
  return WindowWidth - (demonnic_calendar_width * 2)
end
function demonnic_calendar_posy()
  local WindowWidth, WindowHeight = getMainWindowSize()
  return global_chatTabHeight + global_chatHeight + global_map_height
end
  local WindowWidth, WindowHeight = getMainWindowSize()
  return WindowWidth - (demonnic_calendar_width * 2)
end
function demonnic_calendar_posy()
  local WindowWidth, WindowHeight = getMainWindowSize()
  return global_chatTabHeight + global_chatHeight + global_map_height
end
- Added information for herbalists. It is off by default, however the alias 'herbcal' will toggle it on and off. Again, see screenshot at the top post (keeping files there so they're easy to find)
- Fixed minor annoying bug introduced with Mudlet 1.0.6 which is soon to be released. Yes, I try to fix bugs in my scripts pre-release.
Enjoy!
Unknown2010-01-30 16:17:47
Help!
I'd like to add a 'time' component to the calendar as well... but I need help with the various trigger lines for the time of day changing so it can keep itself accurate. If you have such a thing already compiled, I'd appreciate it. if not, and someone wants to do it, great! I'll post here again when I've got them compiled myself, or if someone sends it to me.
I'd like to add a 'time' component to the calendar as well... but I need help with the various trigger lines for the time of day changing so it can keep itself accurate. If you have such a thing already compiled, I'd appreciate it. if not, and someone wants to do it, great! I'll post here again when I've got them compiled myself, or if someone sends it to me.
Unknown2010-01-31 00:03:30
Treant has a calendar component, though it's likely not 100% complete. A good start, at least.
Unknown2010-01-31 03:03:38
QUOTE (Zarquan @ Jan 30 2010, 07:03 PM) <{POST_SNAPBACK}>
Treant has a calendar component, though it's likely not 100% complete. A good start, at least.
Awesome, I was unaware of that. I'll go crack the code open for it. Thanks Zarquan. =)
Unknown2010-02-15 02:35:52
new version uploaded, fixed a bug which would case an error if you tried to use the herbalist addon in the month of Tzarin.
Sondayga2010-12-20 11:46:00
Soo when I check date i get
CODE
Lua error:
Neos2010-12-20 20:25:59
QUOTE (sondayga @ Dec 20 2010, 06:46 AM) <{POST_SNAPBACK}>
Soo when I check date i get
CODE
Lua error:

Privacy Overview
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Strictly Necessary Cookies
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.