User:Ago

From Wurmpedia
Revision as of 07:11, 14 October 2010 by Ago (talk | contribs) (Created page with '= Characters = == Ago == JOAT residing in Insanity Hills === Titles === * [2009-03-01 02:54:19] You have just received the title 'Trollslayer'! * [2009-03-12 17:31:56] You ha…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Characters

Ago

JOAT residing in Insanity Hills

Titles

  • [2009-03-01 02:54:19] You have just received the title 'Trollslayer'!
  • [2009-03-12 17:31:56] You have just received the title 'Carpenter'!
  • [2009-05-22 22:58:24] You have just received the title 'Handyman'!
  • [2009-06-20 08:29:53] You have just received the title 'Digger'!
  • [2009-07-01 09:31:58] You have just received the title 'Miner'!
  • [2009-07-25 19:50:34] You have just received the title 'Excavator'!
  • [2009-09-11 20:08:21] You have just received the title 'Renowned Carpenter'!
  • [2009-11-25 23:31:08] You have just received the title 'Prime Minester'!
  • [2009-11-30 02:54:02] You have just received the title 'Blacksmith'!
  • [2009-12-02 14:40:43] You have just received the title 'Fine Carpenter'!
  • [2009-12-02 14:48:47] You have just received the title 'Lumberjack'!
  • [2009-12-11 15:03:36] You have just received the title 'Farmer'!
  • [2009-12-12 15:24:28] You have just received the title 'Fletcher'!
  • [2010-02-03 21:13:19] You have just received the title 'Mason'!
  • [2010-02-28 22:27:48] You have just received the title 'Repairman'!
  • [2010-04-09 22:31:58] You have just received the title 'Smith'!
  • [2010-04-10 21:08:31] You have just received the title 'Caterer'!
  • [2010-04-12 22:44:08] You have just received the title 'Tim the Toolman'!
  • [2010-04-14 23:21:31] You have just received the title 'Soldier'!
  • [2010-05-24 23:16:47] You have just received the title 'Renowned Blacksmith'!
  • [2010-07-14 21:33:32] You have just received the title 'Prospector'!
  • [2010-09-22 20:18:16] You have just received the title 'Weaponsmith'!
  • [2010-09-25 00:58:20] You have just received the title 'Timberman'!
  • [2010-09-25 14:45:17] You have just received the title 'Coaler'!

Xerus

Vynora priest with 85+ faith residing in Insanity Hills.

Titles

  • [2009-12-08 14:47:45] You have just received the title 'Padre'!
  • [2010-02-19 00:29:05] You have just received the title 'Channeler'!
  • [2010-03-25 19:33:03] You have just received the title 'Devout'!
  • [2010-04-12 20:27:23] You have just received the title 'Fisherman'

Jalina

Fo priestess with 65 faith residing in Insanity Hills. Major of Insanity Hill Mining Outpost

Titles

  • [2010-07-19 22:05:50] You have just received the title 'Norn'!

Tools

fulldate.pl

Parses Wurm log files and expands the timestamp to include the date

#!/usr/bin/perl

use Posix;

my $date;
my $lasttime;
while (<>) {

    if (/^Logging started (....-..-..)/) 
    {
        $date = $1;
        $lasttime = "";
        print;
    } 
    elsif (/^\[(\d\d:\d\d:\d\d)\] (.*)/) 
    {
        my $time = $1;
        my $message = $2;
        if ($lasttime > $time) {
            my ($yyyy, $mm, $dd) = ($date =~ /(\d+)-(\d+)-(\d+)/);
            $date = POSIX::strftime("%Y-%m-%d", 0, 0, 0, $dd + 1, $mm - 1, $yyyy - 1900);
        }
        printf "[%s %s] %s\n", $date, $time, $message;
        $lasttime = $time;
    } 
    else
    {
        print;
    }
}