QUOTE (Mado @ Jul 30 2009, 06:44 AM)

anyone have a zmud script to set that style of autologging to start when you login ?
Autologging is pretty easy.
CODE
#ALIAS atconnect {#LOG C:\<Full Path Here>\AchaeaLog~ %time( yyyy-mm-dd).txt}
#ALIAS atdisconnect {#LOG}
That will name the logs something like "AchaeaLog 2009-07-30.txt". That's what I use, and I have folders to separate the logs by year.
If you want to do what Trevize does (It sounds like the logs are named for the time when he connects?) you would need to create the folders for the month manually I think, since zMUD doesn't seem to be able to create folders, and then either log directly to the folder by including %time(yy-mm) in the file path, or log to a main folder and move them to the folder for the proper month when the log finishes. Then change the format of %time in the log's name to include the time, or whatever format you'd prefer. An example would be:
CODE
#ALIAS atconnect {#LOG C:\<Full Path Here>\%time(yy-mm)\%time("yy-mm-dd, hh:nn AM/PM").txt}
#ALIAS atdisconnect {#LOG}
That would create a log named "09-07-30, 10:37 AM.txt" in the folder "09-07". It would also start a new log for every time you connect to Achaea.