Difference between revisions of "User:Ago"

From Wurmpedia
Jump to navigation Jump to search
m (Vanity fair - titles updated)
Line 2: Line 2:
 
== Ago ==
 
== Ago ==
 
JOAT residing in [[Insanity Hills]]
 
JOAT residing in [[Insanity Hills]]
 +
 
=== Titles ===
 
=== Titles ===
 
* [2009-03-01 02:54:19] You have just received the title 'Trollslayer'!
 
* [2009-03-01 02:54:19] You have just received the title 'Trollslayer'!
Line 28: Line 29:
 
* [2010-09-25 14:45:17] You have just received the title 'Coaler'!
 
* [2010-09-25 14:45:17] You have just received the title 'Coaler'!
 
* [2010-10-29 22:09:18] You have just received the title 'Goldsmith'!
 
* [2010-10-29 22:09:18] You have just received the title 'Goldsmith'!
 +
* [2010-12-05 03:18:17] You have just received the title 'Body Builder'!
 +
* [2011-01-02 15:01:29] You have just received the title 'Mercenary'!
  
 
== Xerus ==
 
== Xerus ==
Line 37: Line 40:
 
* [2010-03-25 19:33:03] You have just received the title 'Devout'!
 
* [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'
 
* [2010-04-12 20:27:23] You have just received the title 'Fisherman'
 +
* [2011-01-05 19:33:43] You have just received the title 'Conduit'!
  
 
== Jalina ==
 
== Jalina ==
[[Fo]] priestess with 70 faith residing in [[Insanity Hills]]. Mayor of Insanity Hill Mining Outpost
+
[[Fo]] priestess with 75+ faith residing in [[Insanity Hills]]. Mayor of Insanity Hill Mining Outpost
  
 
=== Titles ===
 
=== Titles ===

Revision as of 13:20, 5 January 2011

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'!
  • [2010-10-29 22:09:18] You have just received the title 'Goldsmith'!
  • [2010-12-05 03:18:17] You have just received the title 'Body Builder'!
  • [2011-01-02 15:01:29] You have just received the title 'Mercenary'!

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'
  • [2011-01-05 19:33:43] You have just received the title 'Conduit'!

Jalina

Fo priestess with 75+ faith residing in Insanity Hills. Mayor of Insanity Hill Mining Outpost

Titles

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

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;
    }
}