changeset 80:c7983aa2a708 misc

Added tasks.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 20 Apr 2010 15:02:35 +0000
parents 0bf731949cb8
children cd8f94f4f33d
files nun/tasks/NOTES nun/tasks/desc.txt nun/tasks/findreqs.pl nun/tasks/findundone.sh nun/tasks/taskdata.txt nun/tasks/taskreqs.txt nun/tasks/taskreqs_raw.txt nun/tasks/updatereqs.sh
diffstat 8 files changed, 4300 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nun/tasks/NOTES	Tue Apr 20 15:02:35 2010 +0000
@@ -0,0 +1,9 @@
+NOTES & THINGS about task requirements to be checked
+====================================================
+- Remove scar?
+
+- Someone said something about some task having some requirement.
+  Unfortunately I already forgot about it. :(
+
+- grep -A6 "^New holy task " ~/tiny.log >> taskdata.txt
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nun/tasks/desc.txt	Tue Apr 20 15:02:35 2010 +0000
@@ -0,0 +1,41 @@
+==========================================================================
+
+What is this?
+-------------
+The table below has a list of tasks in BatMUD's Nun guild,
+Sisters of Las. It also describes what spells and/or skills
+(and at what percentage) are required for that task to become
+available. This information may be useful, for example, if you
+are planning to reinc into a Nun.
+
+In the table, the first column is the name of the task, followed
+by the requirement(s) for that task to open. If there are multiple
+requirements, they are listed inside the same "cell".
+
+
+How was this done?
+------------------
+With a rather simple Perl-script, which is fed with logfiles
+containing the training/studying in nun guild. The script tries
+to find the minimum values of skills/spells required for the
+task to become available. Data has been combined from multiple
+reincs, to increase reliability.
+
+
+READ WITH CAUTION!
+------------------
+However, this information is NOT, of course, the whole truth!
+Several tasks also depend on things that cannot be easily
+taken into account, for example participation in prayers,
+purity, etc. I have NOT added these requirements into this
+table (because this table is otherwise automatically generated),
+so you should ONLY treat this information as a rough guideline.
+
+Also, some of the skill/spell percentages are too high (due to
+sometimes using 'train xxx to:max'), and most likely some of the
+requirement combinations have not yet been found...
+
+- Ggr Pupunen
+
+==========================================================================
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nun/tasks/findreqs.pl	Tue Apr 20 15:02:35 2010 +0000
@@ -0,0 +1,98 @@
+#!/usr/bin/perl -w
+use strict;
+my %taskList;
+my @tmpList = ();
+my $wasFound = 0;
+my $n;
+
+### Process and parse input logfile
+while (<STDIN>) {
+  chomp;
+  if (/^New holy task '(.+)' is now available to you\.$/) {
+    push(@tmpList, $1);
+    $wasFound = 1;
+    $n = 0;
+  } elsif ($wasFound) {
+    if (/^You now have '(.+)' at ([0-9]+)\% without special bonuses\.$/) {
+      my $tmpName = $1;
+      my $tmpPercentage = $2;
+      $n = 10;
+      
+      for my $taskName (@tmpList) {
+        if (defined($taskList{$taskName}{$tmpName})) {
+          if ($tmpPercentage < $taskList{$taskName}{$tmpName}) {
+            $taskList{$taskName}{$tmpName} = $tmpPercentage;
+          }
+        } else {
+          $taskList{$taskName}{$tmpName} = $tmpPercentage;
+        }
+      }
+    }
+  }
+  
+  if ($n++ >= 6) {
+    $wasFound = 0;
+    for my $taskName (@tmpList) {
+      if (!defined($taskList{$taskName})) {
+        $taskList{$taskName} = ();
+      }
+    }
+    @tmpList = ();
+  }
+}
+
+
+### Print out the results
+$n = 0;
+if ($#ARGV >= 0) {
+  if ($ARGV[0] eq "-tasks") {
+    for my $taskName (sort keys %taskList) {
+      print $taskName."\n";
+    }
+  } elsif ($ARGV[0] eq "-dump") {
+    for my $taskName (sort keys %taskList) {
+      print $taskName."|";
+      for my $skillName (sort keys %{$taskList{$taskName}}) {
+        print $skillName."=".$taskList{$taskName}{$skillName}."|";
+      }
+      print "\n";
+    }
+  }
+} else {
+my $sepLine = 0;
+print  ",--------------------------------------------------------------------.\n";
+print  "| Task name                        | Skill/spell               | Min |\n";
+print  "+----------------------------------+---------------------------+-----+\n";
+for my $taskName (sort keys %taskList) {
+  my $i = keys(%{$taskList{$taskName}});
+  
+  if ($i == 0) {
+    if (!$sepLine) {
+    print "|--------------------------------------------------------------------|\n";
+    }
+    printf "| %-32s                                   |\n", $taskName;
+    print "|--------------------------------------------------------------------|\n";
+    $sepLine = 1;
+  } elsif ($i == 1) {
+    for my $skillName (sort keys %{$taskList{$taskName}}) {
+    printf "| %-32s | %-25s | %3d |\n", $taskName, $skillName, $taskList{$taskName}{$skillName};
+    }
+    $sepLine = 0;
+  } else {
+    if (!$sepLine) {
+    print "|--------------------------------------------------------------------|\n";
+    }
+    printf "| %-66s |\n", $taskName;
+    for my $skillName (sort keys %{$taskList{$taskName}}) {
+    printf "| %-32s | %-25s | %3d |\n", "", $skillName, $taskList{$taskName}{$skillName};
+    }
+    print "|--------------------------------------------------------------------|\n";
+    $sepLine = 1;
+  }
+
+  $n++;
+}
+print  "|-----------------+----------------+---------------------------+-----'\n";
+printf "| %3d tasks total |\n", $n;
+print  "`-----------------'\n";
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nun/tasks/findundone.sh	Tue Apr 20 15:02:35 2010 +0000
@@ -0,0 +1,15 @@
+#!/bin/sh
+TMPFILE=`mktemp -t findundone-$USER.XXXXXXXXXX` || exit 1
+LOGFILE="$HOME/tiny.log"
+
+echo "Searching logfile '$LOGFILE' for finished tasks ... "
+tail -500 "$LOGFILE" | perl -e 'my @tmp; while (<STDIN>) { if(/^  \| ([A-Z][^|]+)\| \[ \:. \]/) { $s = $1; $s =~ s/ *$//; push(@tmp,$s); }} print "$_\n" foreach (sort { $a cmp $b} @tmp); print STDERR "Found ".(scalar @tmp)." tasks.\n";' > "$TMPFILE"
+
+echo "Checking for missing (unopened) tasks ..."
+perl -w findreqs.pl -tasks < taskdata.txt | while read i; do
+	if ! grep "^$i" "$TMPFILE" > /dev/null; then
+		echo "* $i"
+	fi
+done
+
+rm -f "$TMPFILE"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nun/tasks/taskdata.txt	Tue Apr 20 15:02:35 2010 +0000
@@ -0,0 +1,3966 @@
+You now have 'Cure serious wounds' at 36% without special bonuses.
+With current bonuses it is at 56%. Current maximum without bonuses is 40%.
+This costs you 2293 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 37% without special bonuses.
+With current bonuses it is at 57%. Current maximum without bonuses is 40%.
+This costs you 2486 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 38% without special bonuses.
+With current bonuses it is at 58%. Current maximum without bonuses is 40%.
+New holy task 'Convent's life' is now available to you.
+This costs you 2694 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 39% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 40%.
+This costs you 2915 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 40% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 40%.
+You have 'Cure serious wounds' at 40% and you may only train it up to 40%.
+You have 'Cure serious wounds' at 40% and you may only train it up to 40%.
+--
+
+Training bless...
+Starting to train to 30%. Next 5%.
+This costs you 5588 experience points.
+Trained total 5% of the skill.
+You now have 'Bless' at 30% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 70%.
+
+
+Studying cure_serious_wounds...
+New holy task 'Heal and nourish' is now available to you.
+Starting to study to 50%. Next 10%.
+This costs you 45157 experience points.
+Studied total 10% of the spell.
+You now have 'Cure serious wounds' at 50% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+
+
+
+Name: Ggr Pupunen the Duck
+--------------------------------------------------------------------------
+--
+Int: Mediocre (77)        Wis: Nice (122+)          
+Cha: Gorgeous (100)       Siz: Short (39)           
+
+You have a meager ability for avoiding hits.
+You are an angel in disguise.
+You have completed 20 active quests. (13 lq, 0 gq, 6 aq, 0 pq, 1 aw)
+You are refreshed, satiated, very young and brave.
+Pirutar leads the duck race.
+Attempting to train skills and spells for next guild level...
+Studying dispel_evil...
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+Starting to study to 5%. Next 5%.
+This costs you 578 experience points.
+Studied total 5% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+0
+
+Training discipline...
+Starting to train to 15%. Next 6%.
+This costs you 3554 experience points.
+--
+| Holy hand                     |  50 |  98 |  66 |     5840 |
+| Saintly touch                 |  74 |  98 |  74 |    (n/a) |
+| Cure player                   |  55 |  98 |  37 |    (n/a) |
+| Soul shield                   |  30 |  98 |  35 |     1373 |
+| Bless vial                    |  25 |  98 |  30 |     1167 |
+| Dispel evil                   |  40 |  98 |  50 |     5902 |
+| Mana shield                   |  30 |  98 |  35 |     2420 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+`------------------------------------------------------------'
+
+New holy task 'Might of Holy Lore' is now available to you.
+Starting to study to Max. Next 16%.
+This costs you 161048 experience points.
+Studied total 16% of the spell.
+You now have 'Holy hand' at 66% without special bonuses.
+With current bonuses it is at 66%. Current maximum without bonuses is 66%.
+
+Antikiller [wanted]: 2x tank still
+,------------.
+| Lvl | Name |
+|=====|========================================================================
+--
+| Cast special                  |  95 |  81 | 100 |   226089 |
+| Cast teleportation            |   0 |  81 | 100 |       74 |
+| Attack                        |   0 |  81 |  30 |       87 |
+| Ceremony                      |  50 |  81 | 100 |    12548 |
+| Mastery of assistance         |  50 |  81 |  50 |    (n/a) |
+| Mastery of medicine           |  50 |  81 |  50 |    (n/a) |
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   |  25 |  81 |  60 |     2281 |
+`------------------------------------------------------------'
+Calada [wanted]: exp for tiger
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to Max. Next 35%.
+This costs you 501826 experience points.
+Trained total 35% of the skill.
+You now have 'Quick chant' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+| Skills available at level 22  | Cur | Rac | Max | Exp      |
+|===============================|=====|=====|=====|==========|
+--
+| Mastery of assistance         |  50 |  81 |  50 |    (n/a) |
+| Mastery of medicine           |  50 |  81 |  50 |    (n/a) |
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   |  60 |  81 |  60 |    (n/a) |
+`------------------------------------------------------------'
+Ramona smiles and says 'I hope I will get to Tarmalen's Realm one day.'
+Walciz [party]: näkemisiin! ja illan jatkoja :)
+H:436/436 [] S:600/739 [+76] E:137/235 [+8] $:0 [] exp:242766 []
+[party]: Ggr waves happily.
+Walciz left the party.
+New holy task 'True Devotee of Las' is now available to you.
+Starting to train to 80%. Next 80%.
+This costs you 626046 experience points.
+Trained total 80% of the skill.
+You now have 'Mana control' at 80% without special bonuses.
+With current bonuses it is at 95%. Current maximum without bonuses is 100%.
+Jeskko [party]: no 730k summaryt kuitenki
+This costs you 39877 experience points.
+Trained total 1% of the skill.
+You now have 'Mana control' at 81% without special bonuses.
+With current bonuses it is at 96%. Current maximum without bonuses is 100%.
+--
+With current bonuses it is at 99%. Current maximum without bonuses is 100%.
+This costs you 91761 experience points.
+Studied total 1% of the spell.
+You now have 'Cure critical wounds' at 85% without special bonuses.
+With current bonuses it is at 100%. Current maximum without bonuses is 100%.
+This costs you 97525 experience points.
+Studied total 1% of the spell.
+You now have 'Cure critical wounds' at 86% without special bonuses.
+With current bonuses it is at 101%. Current maximum without bonuses is 100%.
+Info: Rutaliator recovers from link death.
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to 80%. Next 80%.
+This costs you 544590 experience points.
+Studied total 80% of the spell.
+You now have 'Summon' at 80% without special bonuses.
+With current bonuses it is at 80%. Current maximum without bonuses is 80%.
+H:436/436 [] S:739/739 [] E:170/235 [+9] $:0 [] exp:242766 []
+Name: Ggr Pupunen the Duck < pupu++ >
+--------------------------------------------------------------------------
+Player level: 55 (3 free)               Experience: 242766
+Money: 0.00                             Bank: 17685.53
+--
+| Ceremony                      |  80 |  81 |  95 |    89510 |
+| Vial throwing                 |  23 |  81 |  57 |     1344 |
+| Turn undead                   |  75 |  81 |  96 |    78778 |
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   |  75 |  81 |  30 |    (n/a) |
+| Discipline                    |  20 | 100 |  63 |     1698 |
+`------------------------------------------------------------'
+
+Mudax (saato+): ois kiva nähä niitä pelastettavia kun tonne ei sse pääse autolla tai mitään
+H:436/436 [] S:769/769 [] E:161/235 [+9] $:0 [] exp:242766 []
+New holy task 'Happy bees' is now available to you.
+Starting to train to Max. Next 22%.
+This costs you 149771 experience points.
+Trained total 22% of the skill.
+You now have 'Candlestick making' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+Info: Myshkin goes link dead.
+Name: Ggr Pupunen the Duck < pupu++ >
+--------------------------------------------------------------------------
+Player level: 65                        Experience: 242766
+--
+|--------------------------------+--------------------------------------------'
+| Total: 2                       |
+`--------------------------------'
+You may train it only to 75%.
+Starting to train to 80%. Next 75%.
+This costs you 592243 experience points.
+Trained total 75% of the skill.
+You now have 'Cast information' at 75% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 75%.
+
+New holy task 'Pilgrimation' is now available to you.
+This costs you 6609 experience points.
+Trained total 1% of the skill.
+You now have 'Exorcize' at 47% without special bonuses.
+With current bonuses it is at 47%. Current maximum without bonuses is 53%.
+
+This costs you 7098 experience points.
+Trained total 1% of the skill.
+You now have 'Exorcize' at 48% without special bonuses.
+With current bonuses it is at 48%. Current maximum without bonuses is 53%.
+
+--
+0
+
+
+
+You pay 32490 gold and advance a level.
+You feel more familiar with holy lore.
+H:439/439 [] S:888/892 [] E:236/237 [] $:407720 [-32490] exp:221109 []
+The convent bells chime.
+Attempting to train skills and spells for next guild level...
+Studying banish_demons...
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to 17%. Next 12%.
+This costs you 3681 experience points.
+Studied total 12% of the spell.
+You now have 'Banish demons' at 17% without special bonuses.
+With current bonuses it is at 17%. Current maximum without bonuses is 35%.
+0
+
+Studying flames_of_righteousness...
+Starting to study to 3%. Next 2%.
+This costs you 239 experience points.
+--
+
+Training vial_throwing...
+Starting to train to 41%. Next 3%.
+This costs you 17590 experience points.
+Trained total 3% of the skill.
+You now have 'Vial throwing' at 41% without special bonuses.
+With current bonuses it is at 41%. Current maximum without bonuses is 64%.
+0
+
+Studying bless_vial...
+New holy task 'Aid the Underdogs' is now available to you.
+Starting to study to 50%. Next 10%.
+This costs you 65853 experience points.
+Studied total 10% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 67%.
+0
+
+Training cast_protection...
+Starting to train to 75%. Next 15%.
+This costs you 380755 experience points.
+--
+
+Training might_of_the_saints...
+Starting to train to 30%. Next 10%.
+This costs you 21215 experience points.
+Trained total 10% of the skill.
+You now have 'Might of the saints' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 40%.
+0
+
+Training knowledge_of_dispelling...
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to 40%. Next 40%.
+This costs you 85397 experience points.
+Trained total 40% of the skill.
+You now have 'Knowledge of dispelling' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 42%.
+0
+
+Training power_of_faith...
+Starting to train to 10%. Next 10%.
+This costs you 32450 experience points.
+--
+| Power of faith                |  10 |  81 |  27 |     5120 |
+
+`------------------------------------------------------------'
+Starting to train to Max. Next 17%.
+This costs you 282726 experience points.
+Trained total 17% of the skill.
+You now have 'Power of faith' at 27% without special bonuses.
+With current bonuses it is at 27%. Current maximum without bonuses is 27%.
+
+[saato+]: Kahmuli huggles Ggr secretly.
+New holy task 'Might of Holy Vials' is now available to you.
+Starting to train to Max. Next 45%.
+This costs you 312604 experience points.
+Trained total 45% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+Lurppa [wanted]: suggest a good movie
+Shaman shouts 'My HAMSTER fights better than you do, Vejelis!'
+Ggr [saato+]: no, mie tykkään teistä kaikista!
+H:439/439 [] S:908/908 [] E:237/237 [+2] $:20 [] exp:221109 []
+Freld [wanted]: V for Vendetta
+Acidia [wanted]: fear and loathing in las vegas
+Malicat [wanted]: Hostel
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+Superior of Holy Lore.'
+
+[saato+]: Kahmuli blinks his eyes.
+New holy task 'Demons of the soul' is now available to you.
+Starting to train to Max. Next 52%.
+This costs you 252431 experience points.
+Trained total 52% of the skill.
+You now have 'Mastery of shielding' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+Walciz [wanted]: the core
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+
+| Flames of righteousness       |  10 |  98 |  58 |      250 |
+| Holy wind                     |  10 |  98 |  71 |      250 |
+| Banish demons                 |  30 |  98 |  69 |     2660 |
+| Holy bolt                     |  30 |  98 |  61 |     2980 |
+| Guardian                      |   0 |  98 |  -  |    (n/a) |
+`------------------------------------------------------------'
+Crusifer [wanted]: joulubileet is best suomimovie ever
+Jutomlol [saato+]: sellane o kiva ku sellane palaa
+New holy task 'Undead Lords' is now available to you.
+Starting to study to Max. Next 13%.
+This costs you 243618 experience points.
+Studied total 13% of the spell.
+You now have 'Dispel undead' at 63% without special bonuses.
+With current bonuses it is at 63%. Current maximum without bonuses is 63%.
+
+Jutomlol [saato+]: kaveri ja sen kaverit harrasti joskus aktiivisesti
+You have 'Dispel evil' at 55% and you may only train it up to 55%.
+Mudax (saato+): kattelin sitä puuhaa tossa jokunen aika sitten jossain tapahtumassa
+Info: Melemkor is unidle.
+--
+You now have 'Soul shield' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 80%.
+
+This costs you 31119 experience points.
+Studied total 1% of the spell.
+You now have 'Soul shield' at 75% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 80%.
+
+Kiilgore [wanted]: dont see fear and loathing - read the book. the movie is a bit weak
+Sudden enlightment takes over you.
+New holy task 'Blood of the Innocent' is now available to you.
+Starting to study to Max. Next 39%.
+This costs you 262865 experience points.
+Studied total 39% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+Tails [wanted]: tiger for points
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+| Guardian                      |   0 |  98 |  -  |    (n/a) |
+`------------------------------------------------------------'
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+Superior of Holy Lore.'
+
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+Superior of Holy Lore.'
+
+Mudax (saato+): eli tällä kanavalla diabolol
+Tails [wanted]: ok..off then
+New holy task 'Battle Against Evil' is now available to you.
+Starting to study to 54%. Next 44%.
+This costs you 216054 experience points.
+Studied total 44% of the spell.
+You now have 'Holy wind' at 54% without special bonuses.
+With current bonuses it is at 54%. Current maximum without bonuses is 71%.
+
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+Superior of Holy Lore.'
+
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+--
+| Mastery of shielding          |  52 |  81 |  52 |    (n/a) |
+| Might of the saints           |  30 |  81 |  40 |     3556 |
+| Bludgeons                     |  30 |  81 |  30 |    (n/a) |
+| Quick chant                   |  95 |  81 |  60 |    (n/a) |
+| Discipline                    |  60 | 100 |  68 |    62030 |
+| Mastery of holy vials         |  50 |  81 |  50 |    (n/a) |
+| Power of faith                |  27 |  81 |  27 |    (n/a) |
+
+H:439/439 [] S:988/988 [] E:232/232 [] $:770 [] exp:115523 [-9399]
+`------------------------------------------------------------'
+New holy task 'Set of White Rose' is now available to you.
+Starting to train to Max. Next 10%.
+This costs you 55390 experience points.
+Trained total 10% of the skill.
+You now have 'Might of the saints' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+H:439/439 [] S:988/988 [] E:232/232 [] $:770 [] exp:60133 [-55390]
+Valentina says 'Las is your redemption.'
+Help available on topic:
+Skill duration: random.
+--
+| Mastery of shielding          |  52 |  81 |  52 |    (n/a) |
+| Might of the saints           |  40 |  81 |  40 |    (n/a) |
+| Bludgeons                     |  30 |  81 |  30 |    (n/a) |
+| Quick chant                   |  95 |  81 |  60 |    (n/a) |
+| Discipline                    |  62 | 100 |  68 |    71723 |
+| Mastery of holy vials         |  50 |  81 |  50 |    (n/a) |
+| Power of faith                |  27 |  81 |  27 |    (n/a) |
+`------------------------------------------------------------'
+
+Valentina mutters to herself.
+New holy task 'Slaad hunt' is now available to you.
+Starting to train to Max. Next 2%.
+This costs you 173656 experience points.
+Trained total 2% of the skill.
+You now have 'Cast holy' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+
+H:439/439 [] S:845/926 [] E:109/231 [] $:2634 [] exp:38496 [-173656]
+You sizzle with magical energy.
+H:439/439 [] S:926/926 [+81] E:118/231 [+9] $:2634 [] exp:38496 []
+Attempting to train all the skills to 100..
+--
+
+[ BatMUD convention picture archive at http://guildhouse.net/batmud/ ]
+
++---- - - - -                                                    +
+|      HC BatMUD is up at hcbat.bat.org 23 (213.157.69.20 23)
+                        http://www.bat.org/                      |
++                                                  - - - - ------+
+
+What is your name: ggr
+
+New holy task 'Forces of Evil' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+Read: help topics, help multiple characters
+
+
+You have new news in group bs.
+--
+
+[ BatMUD convention picture archive at http://guildhouse.net/batmud/ ]
+
++---- - - - -                                                    +
+|      HC BatMUD is up at hcbat.bat.org 23 (213.157.69.20 23)
+                        http://www.bat.org/                      |
++                                                  - - - - ------+
+
+What is your name: ggr
+
+New holy task 'Holy deeds' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+Read: help topics, help multiple characters
+
+
+You have new news in group bs.
+--
+| Mana shield                   |  87 |  98 | 100 |   158559 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  58 |  98 |  58 |    (n/a) |
+| Holy wind                     |  71 |  98 |  71 |    (n/a) |
+| Banish demons                 |  74 |  98 |  74 |    (n/a) |
+| Holy bolt                     |  61 |  98 |  61 |    (n/a) |
+| Guardian                      |   0 |  98 |  -  |    (n/a) |
+`------------------------------------------------------------'
+Attempting to study all the spells to 100..
+Studying dispel_evil...
+New holy task 'Vindicator of justice' is now available to you.
+Starting to study to Max. Next 13%.
+This costs you 396138 experience points.
+Studied total 4% of the spell.
+You now have 'Dispel evil' at 82% without special bonuses.
+With current bonuses it is at 86%. Current maximum without bonuses is 91%.
+You need 89266 more experience to reach the total cost of 115825 experience.0
+
+Studying mana_shield...
+Starting to study to Max. Next 13%.
+You need 132000 more experience to reach the total cost of 158559 experience.0
+--
+
+Studying satiate_person...
+Starting to study to Max. Next 15%.
+You need 11487 more experience to reach the total cost of 15058 experience.0
+
+Studying water_walking...
+Starting to study to Max. Next 20%.
+You need 8067 more experience to reach the total cost of 11638 experience.0
+
+Studying word_of_recall...
+New holy task 'Cry for help' is now available to you.
+Starting to study to Max. Next 12%.
+This costs you 2707 experience points.
+Studied total 1% of the spell.
+You now have 'Word of recall' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 70%.
+You need 1999 more experience to reach the total cost of 2863 experience.0
+
+
+
+H:675/675 [] S:1002/1002 [] E:157/234 [+9] $:5141 [] exp:864 [-57986]
+You now have 'Protection from evil' at 76% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 77%.
+
+H:439/439 [] S:931/931 [] E:218/231 [] $:5606 [] exp:122368 [-15583]
+This costs you 15583 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 76% without special bonuses.
+With current bonuses it is at 76%. Current maximum without bonuses is 77%.
+
+H:439/439 [] S:931/931 [] E:218/231 [] $:5606 [] exp:106785 [-15583]
+New holy task 'Tears of nun' is now available to you.
+This costs you 16481 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+H:439/439 [] S:931/931 [] E:218/231 [] $:5606 [] exp:90304 [-16481]
+You have 'Protection from evil' at 77% and you may only train it up to 77%.
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+
+Studying remove_scar...
+Starting to study to Max. Next 9%.
+You need 6806 more experience to reach the total cost of 26585 experience.0
+
+Studying restore...
+Starting to study to Max. Next 19%.
+You need 6806 more experience to reach the total cost of 26585 experience.0
+
+Studying identify_relic...
+New holy task 'Nun's daily work' is now available to you.
+Starting to study to Max. Next 1%.
+This costs you 13921 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+0
+
+Studying light...
+Starting to study to Max. Next 10%.
+You need 8748 more experience to reach the total cost of 14606 experience.0
+--
+
+Training bless...
+Starting to train to 30%. Next 30%.
+This costs you 13082 experience points.
+Trained total 30% of the skill.
+You now have 'Bless' at 30% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 70%.
+
+
+Studying cure_serious_wounds...
+New holy task 'Convent's life' is now available to you.
+New holy task 'Heal and nourish' is now available to you.
+Starting to study to 50%. Next 30%.
+This costs you 74334 experience points.
+Studied total 30% of the spell.
+You now have 'Cure serious wounds' at 50% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+
+
+
+You pay 1440 gold and advance a level.
+You have a sense of harmony as you become more aware
+--
+| Attack                        |   0 |  81 |  30 |       87 |
+| Ceremony                      |  80 |  81 | 100 |    89510 |
+| Mastery of assistance         |  95 |  81 | 100 |   642456 |
+| Mastery of medicine           | 100 |  81 | 100 |    (n/a) |
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   |  40 |  81 | 100 |     9250 |
+`------------------------------------------------------------'
+Ramona stares to the sky and smiles happily.
+Ramona sits down and takes a bite of a biscuit.
+Ghost of Elghinn [ghost]: got
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to 90%. Next 50%.
+This costs you 4366005 experience points.
+Trained total 50% of the skill.
+You now have 'Quick chant' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 100%.
+Name: Ggr Pupunen the Duck
+--------------------------------------------------------------------------
+Player level: 90 (39 free)              Experience: 16960
+Money: 0.00                             Bank: 1424.18
+Safe experience left: 45983804
+--
+| Minor heal                    |  80 |  98 | 100 |    71768 |
+| Major heal                    | 100 |  98 | 100 |    (n/a) |
+| Holy way                      |  44 |  98 | 100 |     7011 |
+| Lessen poison                 |  50 |  98 | 100 |    11402 |
+| True heal                     |  95 |  98 | 100 |   374864 |
+| Unpain                        |  95 |  98 | 100 |   374864 |
+| Enhanced vitality             |   0 |  98 |  -  |    (n/a) |
+| New body                      |  95 |  98 | 100 |   468499 |
+`------------------------------------------------------------'
+Ramona sits down and takes a bite of a biscuit.
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to 90%. Next 50%.
+This costs you 983404 experience points.
+Studied total 50% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 100%.
+Ramona sits down and takes a bite of a biscuit.
+Starting to study to 90%. Next 40%.
+This costs you 1180578 experience points.
+Studied total 40% of the spell.
+You now have 'Remove poison' at 90% without special bonuses.
+--
+| Create food                   |  90 |  98 |  76 |    (n/a) |
+| Holy hand                     |  20 |  98 |  30 |      467 |
+| Saintly touch                 |  74 |  98 |  74 |    (n/a) |
+| Cure player                   |  90 |  98 |  10 |    (n/a) |
+| Soul shield                   |  10 |  98 |  15 |      147 |
+| Dispel evil                   |   0 |  98 |  10 |      108 |
+`------------------------------------------------------------'
+
+H:465/465 [] S:608/1016 [] E:108/237 [] $:0 [] exp:1109 []
+H:465/465 [] S:690/1016 [+82] E:116/237 [+8] $:0 [] exp:1109 []
+New holy task 'Find valentina' is now available to you.
+New holy task 'Feed the Poor' is now available to you.
+Starting to study to Max. Next 10%.
+This costs you 1031 experience points.
+Studied total 8% of the spell.
+You now have 'Dispel evil' at 8% without special bonuses.
+With current bonuses it is at 12%. Current maximum without bonuses is 10%.
+You need 108 more experience to reach the total cost of 186 experience.
+H:465/465 [] S:690/1016 [] E:116/237 [] $:0 [] exp:78 [-1031]
+You do not meet the requirements for level 11:
+ Has studied spell Dispel evil to at least 5% (passed)
+ Has studied spell Protection from evil to at least 11% (passed)
+--
+
+Studying bless_vial...
+Starting to study to 30%. Next 3%.
+This costs you 4731 experience points.
+Studied total 3% of the spell.
+You now have 'Bless vial' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 59%.
+0
+
+Training candlestick_making...
+New holy task 'Happy bees' is now available to you.
+Starting to train to 43%. Next 13%.
+This costs you 57585 experience points.
+Trained total 13% of the skill.
+You now have 'Candlestick making' at 43% without special bonuses.
+With current bonuses it is at 43%. Current maximum without bonuses is 52%.
+0
+
+
+
+H:710/710 [] S:328/1031 [] E:237/237 [] $:0 [] exp:127086 [-63098]
+--
+| Dispel evil                   |  70 |  98 |  70 |    (n/a) |
+| Mana shield                   |  10 |  98 |  80 |      238 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  20 |  98 |  20 |    (n/a) |
+`------------------------------------------------------------'
+
+Sister Clemente utters the magic words (satiate person)
+You can't possibly eat more. You discard rest of the food.
+You are so full of liquid you feel like you might burst.
+You feel refreshed.
+New holy task 'True Devotee of Las' is now available to you.
+Starting to study to Max. Next 60%.
+This costs you 178458 experience points.
+Studied total 41% of the spell.
+You now have 'Soul shield' at 61% without special bonuses.
+With current bonuses it is at 61%. Current maximum without bonuses is 80%.
+You need 9178 more experience to reach the total cost of 13790 experience.
+Some nuns walk past you.
+H:465/465 [] S:877/1057 [] E:237/237 [] $:5786 [] exp:4612 [-178458]
+H:465/465 [] S:877/1057 [] E:237/237 [] $:5786 [] exp:4612 []
+H:465/465 [] S:974/1057 [+97] E:237/237 [] $:5786 [] exp:4612 []
+--
+Obvious exit is: south.
+Diamond vitrine with equipment set 'White Rose' inside
+Aquamarine orb floats beside great altar
+Sister Alma the Master Exorcist
+You cannot go that way.
+You pay 33640 gold and advance a level.
+Warmth of Las settles inside you.
+H:465/465 [] S:972/975 [] E:166/238 [] $:0 [-21351] exp:5165 []
+Attempting to train skills and spells for next guild level...
+Studying banish_demons...
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to 17%. Next 12%.
+This costs you 3681 experience points.
+Studied total 12% of the spell.
+You now have 'Banish demons' at 17% without special bonuses.
+With current bonuses it is at 17%. Current maximum without bonuses is 35%.
+0
+
+Studying dispel_undead...
+Starting to study to 40%. Next 5%.
+You need 2019 more experience to reach the total cost of 3503 experience.0
+--
+
+Training exorcize...
+Starting to train to 30%. Next 4%.
+This costs you 5977 experience points.
+Trained total 4% of the skill.
+You now have 'Exorcize' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 75%.
+0
+
+Studying holy_hand...
+New holy task 'Might of Holy Lore' is now available to you.
+Starting to study to 55%. Next 7%.
+This costs you 44160 experience points.
+Studied total 7% of the spell.
+You now have 'Holy hand' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 66%.
+0
+
+
+
+H:695/695 [] S:637/1061 [] E:236/237 [] $:5111 [] exp:243825 [-86083]
+--
+
+Training vial_throwing...
+Starting to train to 41%. Next 3%.
+This costs you 17590 experience points.
+Trained total 3% of the skill.
+You now have 'Vial throwing' at 41% without special bonuses.
+With current bonuses it is at 41%. Current maximum without bonuses is 64%.
+0
+
+Studying bless_vial...
+New holy task 'Aid the Underdogs' is now available to you.
+Starting to study to 50%. Next 10%.
+This costs you 65853 experience points.
+Studied total 10% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 67%.
+0
+
+Training cast_protection...
+Starting to train to 75%. Next 2%.
+This costs you 72861 experience points.
+--
+H:652/652 [] S:990/990 [+11] E:172/241 [+8] $:1000 [] exp:525644 []
+Holy bolt is not available.
+A sound of heavenly choir echoes from the chapel.
+Starting to study to 30%. Next 20%.
+This costs you 23008 experience points.
+Studied total 20% of the spell.
+You now have 'Holy bolt' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 60%.
+
+H:652/652 [] S:990/990 [] E:172/241 [] $:1000 [] exp:502636 [-23008]
+New holy task 'Blood of the Innocent' is now available to you.
+Starting to study to Max. Next 48%.
+This costs you 266782 experience points.
+Studied total 48% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+H:652/652 [] S:990/990 [] E:172/241 [] $:1000 [] exp:235854 [-266782]
+H:652/652 [] S:990/990 [] E:181/241 [+9] $:1000 [] exp:235854 []
+Knowledge of dispelling is not available.
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to Max. Next 18%.
+This costs you 88727 experience points.
+Trained total 18% of the skill.
+You now have 'Knowledge of dispelling' at 42% without special bonuses.
+With current bonuses it is at 42%. Current maximum without bonuses is 42%.
+
+H:652/652 [] S:990/990 [] E:181/241 [] $:1000 [] exp:147127 [-88727]
+H:652/652 [] S:990/990 [] E:190/241 [+9] $:1000 [] exp:147127 []
+Starting to train to 60%. Next 8%.
+This costs you 126073 experience points.
+--
+| Quick chant                   |  95 |  81 |  85 |    (n/a) |
+| Discipline                    |  60 | 100 |  68 |    62030 |
+| Mastery of holy vials         |  24 |  81 |  50 |     2693 |
+| Power of faith                |  24 |  81 |  39 |    29051 |
+`------------------------------------------------------------'
+Thundrax [wanted]: tiger,blaster for exp
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+Superior of Holy Lore.'
+
+Venomwwa [party]: yeah, that's what he was doing apparently
+New holy task 'Demons of the soul' is now available to you.
+Starting to train to Max. Next 23%.
+This costs you 136893 experience points.
+Trained total 18% of the skill.
+You now have 'Mastery of shielding' at 47% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 52%.
+You need 9814 more experience to reach the total cost of 15154 experience.
+H:481/481 [] S:1079/1079 [] E:240/240 [] $:2652 [] exp:5340 [-136893]
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+| Might of the saints           |  37 |  81 |  40 |     6712 |
+
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   |  95 |  81 |  85 |    (n/a) |
+| Discipline                    |  60 | 100 |  68 |    62030 |
+| Mastery of holy vials         |  41 |  81 |  50 |    13937 |
+| Power of faith                |  24 |  81 |  39 |    29051 |
+`------------------------------------------------------------'
+The wicked peasant coughs loudly
+Sister Valentina smiles at you.
+New holy task 'Set of White Rose' is now available to you.
+Starting to train to Max. Next 3%.
+This costs you 21984 experience points.
+Trained total 3% of the skill.
+You now have 'Might of the saints' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+H:465/465 [] S:1088/1088 [] E:131/235 [] $:1929 [] exp:141389 [-21984]
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+| Flames of righteousness       |  36 |  98 |  58 |     4463 |
+| Holy wind                     |  29 |  98 |  62 |     2327 |
+| Banish demons                 |  30 |  98 |  74 |     2660 |
+| Holy bolt                     |  47 |  98 |  68 |    13221 |
+`------------------------------------------------------------'
+Unicorn shouts 'Lozlo barely scratched me before dying!'
+Drakhan [wanted]: doings for tank...
+Ghost of Lozlo [ghost]: rais
+H:465/465 [] S:847/990 [+129] E:189/238 [+9] $:1181 [] exp:329787 []
+Info: Rutaliator goes link dead.
+New holy task 'Undead Lords' is now available to you.
+Starting to study to Max. Next 26%.
+This costs you 312141 experience points.
+Studied total 18% of the spell.
+You now have 'Dispel undead' at 64% without special bonuses.
+With current bonuses it is at 64%. Current maximum without bonuses is 72%.
+You need 13991 more experience to reach the total cost of 31637 experience.
+H:465/465 [] S:847/990 [] E:189/238 [] $:1181 [] exp:17646 [-312141]
+H:465/465 [] S:847/990 [] E:189/238 [] $:1181 [] exp:17646 []
+Starting to study to Max. Next 44%.
+This costs you 16218 experience points.
+--
+Juo (report): Camping..
+Ramjett {nightlife+}: blah +camo apparatus i think
+H:465/465 [] S:980/990 [+127] E:175/238 [+9] $:1181 [] exp:285503 []
+
+[Thu Sep 28 00:33:08 2006 Nun inform ]
+Entor successfully recites scroll of St. Adwoiwen, recovered by Entor.
+
+Elwyk [wanted]: something for sac
+Ramjett {nightlife+}: The prism shoots a beam of light at you! You feel hidden!
+H:465/465 [] S:980/990 [] E:175/238 [] $:1181 [] exp:285919 [+416]
+New holy task 'Patron of the Righteous' is now available to you.
+Starting to study to Max. Next 22%.
+This costs you 260662 experience points.
+Studied total 22% of the spell.
+You now have 'Flames of righteousness' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 58%.
+
+H:465/465 [] S:980/990 [] E:175/238 [] $:1181 [] exp:25257 [-260662]
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+| Mastery of shielding          |  52 |  81 |  52 |    (n/a) |
+| Might of the saints           |  40 |  81 |  40 |    (n/a) |
+
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   |  95 |  81 |  90 |    (n/a) |
+| Discipline                    |  60 | 100 |  68 |    62030 |
+| Mastery of holy vials         |  42 |  81 |  50 |    15177 |
+| Power of faith                |  31 |  81 |  39 |    60885 |
+`------------------------------------------------------------'
+H:465/465 [] S:1090/1090 [] E:235/235 [+1] $:900 [] exp:600414 []
+New holy task 'Slaad hunt' is now available to you.
+This costs you 89279 experience points.
+Trained total 1% of the skill.
+You now have 'Cast holy' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+
+Tixe [nightlife+]: make me boxes
+H:465/465 [] S:1090/1090 [] E:235/235 [] $:900 [] exp:511135 [-89279]
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  75 |  98 |  90 |    80327 |
+| Holy wind                     |  46 |  98 |  71 |    10252 |
+| Banish demons                 |  55 |  98 |  74 |    21205 |
+| Holy bolt                     |  54 |  98 |  68 |    22680 |
+`------------------------------------------------------------'
+Valentina mutters to herself.
+You feel almost fully recovered.
+H:465/465 [] S:999/999 [] E:195/238 [+9] $:30 [] exp:216776 []
+[party]: Demicore sizzles.
+New holy task 'Sacred Water' is now available to you.
+Starting to study to Max. Next 12%.
+This costs you 193775 experience points.
+Studied total 10% of the spell.
+You now have 'Bless vial' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 67%.
+You need 4551 more experience to reach the total cost of 27552 experience.
+H:465/465 [] S:999/999 [] E:195/238 [] $:30 [] exp:23001 [-193775]
+This costs you 22680 experience points.
+Studied total 1% of the spell.
+You now have 'Holy bolt' at 55% without special bonuses.
+--
+| Mana shield                   |  49 |  98 | 100 |    12068 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  75 |  98 |  90 |    80327 |
+| Holy wind                     |  46 |  98 |  71 |    10252 |
+| Banish demons                 |  59 |  98 |  74 |    28325 |
+| Holy bolt                     |  55 |  98 |  68 |    24438 |
+`------------------------------------------------------------'
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+Superior of Holy Lore.'
+
+New holy task 'Forces of Evil' is now available to you.
+Starting to study to Max. Next 15%.
+This costs you 163969 experience points.
+Studied total 5% of the spell.
+You now have 'Banish demons' at 64% without special bonuses.
+With current bonuses it is at 64%. Current maximum without bonuses is 74%.
+You need 36754 more experience to reach the total cost of 40264 experience.
+H:465/465 [] S:999/999 [] E:258/238 [] $:616 [] exp:3510 [-163969]
+H:465/465 [] S:999/999 [] E:258/238 [] $:616 [] exp:3510 []
+You are walking on a long aisle in a small chapel of the sisterhood. There are
+long wooden benches on the both side of the aisle. The walls and ceiling are
+--
+| Heavenly protection           |  68 |  98 |  90 |    40083 |
+| Dispel undead                 |  65 |  98 |  91 |    33850 |
+| Dispel evil                   |  70 |  98 |  91 |    53222 |
+| Mana shield                   |  49 |  98 | 100 |    12068 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  75 |  98 |  90 |    80327 |
+| Holy wind                     |  50 |  98 |  71 |    13968 |
+| Banish demons                 |  64 |  98 |  74 |    40264 |
+| Holy bolt                     |  66 |  98 |  68 |    53846 |
+`------------------------------------------------------------'
+New holy task 'Battle Against Evil' is now available to you.
+Starting to study to Max. Next 21%.
+This costs you 29033 experience points.
+Studied total 2% of the spell.
+You now have 'Holy wind' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 71%.
+You need 11941 more experience to reach the total cost of 16239 experience.
+H:465/465 [] S:657/999 [] E:232/238 [] $:616 [] exp:4298 [-29033]
+Miss Kitty (mossad+): ja demoni banishiki onnas
+Full [sales]: huge silver-headed hammer <red glow> (invokes minor party heal and deaths door) as fast as templar and more damage 500k
+H:465/465 [] S:782/999 [+125] E:238/238 [+6] $:616 [] exp:4298 []
+--
+This costs you 22941 experience points.
+Trained total 1% of the skill.
+You now have 'Mastery of holy vials' at 48% without special bonuses.
+With current bonuses it is at 48%. Current maximum without bonuses is 50%.
+
+This costs you 24858 experience points.
+Trained total 1% of the skill.
+You now have 'Mastery of holy vials' at 49% without special bonuses.
+With current bonuses it is at 49%. Current maximum without bonuses is 50%.
+
+New holy task 'Might of Holy Vials' is now available to you.
+This costs you 26916 experience points.
+Trained total 1% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+Flab has moved to a new environment.
+H:465/465 [] S:450/999 [] E:224/238 [] $:259 [] exp:738447 [-74715]
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+This costs you 14730 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 75% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 77%.
+
+This costs you 15583 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 76% without special bonuses.
+With current bonuses it is at 76%. Current maximum without bonuses is 77%.
+
+New holy task 'Tears of nun' is now available to you.
+This costs you 16481 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+H:465/465 [] S:1095/1095 [] E:235/235 [] $:1000 [] exp:266611 [-60715]
+You have 'Protection from evil' at 77% and you may only train it up to 77%.
+Bippo {sales}: sold...
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+--
+| Mana shield                   |  54 |  98 | 100 |    17517 |
+| Detect vial                   |   0 |  98 | 100 |      115 |
+| Flames of righteousness       |  75 |  98 |  90 |    80327 |
+| Holy wind                     |  60 |  98 |  71 |    29026 |
+| Banish demons                 |  64 |  98 |  74 |    40264 |
+| Holy bolt                     |  71 |  98 |  78 |    75907 |
+| Guardian                      |   0 |  98 |  -  |    (n/a) |
+`------------------------------------------------------------'
+You sizzle with magical energy.
+H:465/465 [] S:1095/1095 [+93] E:130/235 [+8] $:3211 [] exp:54328 []
+New holy task 'Holy deeds' is now available to you.
+Starting to study to Max. Next 24%.
+This costs you 51581 experience points.
+Studied total 11% of the spell.
+You now have 'Cleanse heathen' at 45% without special bonuses.
+With current bonuses it is at 45%. Current maximum without bonuses is 62%.
+You need 4384 more experience to reach the total cost of 7131 experience.
+H:465/465 [] S:1095/1095 [] E:130/235 [] $:3211 [] exp:2747 [-51581]
+H:465/465 [] S:1095/1095 [] E:130/235 [] $:3211 [] exp:2747 []
+You are walking on a long aisle in a small chapel of the sisterhood. There are
+long wooden benches on the both side of the aisle. The walls and ceiling are
+--
+`------------------------------------------------------------'
+Hisk [saato+]: thriller
+Sister Clemente utters the magic words (satiate person)
+You can't possibly eat more. You discard rest of the food.
+You are so full of liquid you feel like you might burst.
+You feel refreshed.
+Sun shines softly through the glass windows.
+Hisk [saato+]: ..
+H:444/444 [] S:664/934 [+97] E:233/233 [+2] $:2544 [] exp:54560 []
+Kahmuli [saato+]: camp firellä pystyi näköjään kanssa liteemään ruudun
+New holy task 'Vials and Stamina' is now available to you.
+This costs you 27341 experience points.
+Trained total 1% of the skill.
+You now have 'Vial throwing' at 61% without special bonuses.
+With current bonuses it is at 61%. Current maximum without bonuses is 64%.
+
+H:444/444 [] S:664/934 [] E:233/233 [] $:2544 [] exp:27219 [-27341]
+Sister Bernadette throws a dazzling vial in the air and to your amazement it
+turns into a white dove.
+You need 2026 more experience to reach the total cost of 29245 experience.
+H:444/444 [] S:664/934 [] E:233/233 [] $:2544 [] exp:27219 []
+| Dispel evil                   |  79 |  98 |  91 |    95688 |
+| Mana shield                   |  55 |  98 | 100 |    18840 |
+| Detect vial                   |  62 |  98 | 100 |    33403 |
+| Flames of righteousness       |  75 |  98 |  90 |    80327 |
+| Holy wind                     |  62 |  98 |  71 |    33403 |
+| Banish demons                 |  74 |  98 |  74 |    (n/a) |
+| Holy bolt                     |  71 |  98 |  78 |    75907 |
+| Guardian                      |   0 |  98 |  -  |    (n/a) |
+`------------------------------------------------------------'
+H:736/736 [] S:716/1094 [+109] E:203/235 [] $:22592 [] exp:191959 []
+New holy task 'Vindicator of justice' is now available to you.
+This costs you 95688 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel evil' at 80% without special bonuses.
+With current bonuses it is at 85%. Current maximum without bonuses is 91%.
+
+Cost for 'study dispel evil': utime:3 stime:0 ticks:4791
+H:736/736 [] S:716/1094 [] E:203/235 [] $:22592 [] exp:96271 [-95688]
+Starting to study to Max. Next 9%.
+This costs you 69214 experience points.
+Studied total 2% of the spell.
+--
+| Discipline                    |  60 | 100 |  90 |    62030 |
+| Mastery of holy vials         |  50 |  81 |  50 |    (n/a) |
+| Power of faith                |  36 |  81 |  54 |    98382 |
+`------------------------------------------------------------'
+Ghost of Jutom tells you '750k niskassa :D'
+Vial throwing is not available.
+The atmosphere feels very warm.
+You need 567 more experience to reach the total cost of 29245 experience.
+You sizzle with magical energy.
+H:465/465 [] S:1090/1090 [+86] E:219/235 [+9] $:5172 [] exp:28678 []
+New holy task 'Pilgrimation' is now available to you.
+Starting to train to Max. Next 30%.
+This costs you 27474 experience points.
+Trained total 4% of the skill.
+You now have 'Exorcize' at 49% without special bonuses.
+With current bonuses it is at 49%. Current maximum without bonuses is 75%.
+You need 6968 more experience to reach the total cost of 8172 experience.
+You are at the entrance hall of the convent's chapel. There are bookshelves
+full of hymnal books beside the walls. A small basket filled with white
+candles and roses lies on a small wooden table. The divine hymn to the glory
+of Las echoes from the chapel. The stony floor is covered with an old carpet
+--
+
+[ BatMUD convention picture archive at http://guildhouse.net/batmud/ ]
+
++---- - - - -                                                    +
+|      HC BatMUD is up at hcbat.bat.org 23 (213.157.69.20 23)
+                        http://www.bat.org/                      |
++                                                  - - - - ------+
+
+What is your name: ggr
+
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+Read: help topics, help multiple characters
+
+
+You have new news in groups general, bs and ideas-wanted.
+--
+| Banish demons                 |  74 |  98 |  74 |    (n/a) |
+| Holy bolt                     |  74 |  98 |  78 |    92921 |
+| Guardian                      |   0 |  98 |  -  |    (n/a) |
+`------------------------------------------------------------'
+H:465/465 [] S:1106/1106 [] E:212/235 [+8] $:2626 [] exp:326559 []
+Valentina says 'Las is your redemption.'
+H:465/465 [] S:1106/1106 [] E:221/235 [+9] $:2626 [] exp:326559 []
+Celeastial haven is not available.
+Cost for 'study celeastial haven to:max': utime:13 stime:0 ticks:160359
+Jeskko [pupu+]: jospa menis tyynyä tönimään
+New holy task 'Seed of evil' is now available to you.
+Starting to study to Max. Next 10%.
+This costs you 209866 experience points.
+Studied total 10% of the spell.
+You now have 'Celestial haven' at 65% without special bonuses.
+With current bonuses it is at 65%. Current maximum without bonuses is 68%.
+
+Cost for 'study celestial haven to:max': utime:7 stime:0 ticks:20584
+[pupu+]: Jeskko smacks himself playfully on the head with a fluffy pillow.
+H:465/465 [] S:1106/1106 [] E:221/235 [] $:2626 [] exp:116693 [-209866]
+[pupu+]: Ggr waves Jeskko goodbye.
+--
+`------------------------------------------------------------'
+H:690/690 [] S:949/1103 [+114] E:235/235 [] $:586 [] exp:531149 []
+This costs you 65349 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel undead' at 76% without special bonuses.
+With current bonuses it is at 76%. Current maximum without bonuses is 91%.
+
+Cost for 'study dispel undead': utime:1 stime:0 ticks:3938
+Valentina mutters to herself.
+H:690/690 [] S:949/1103 [] E:235/235 [] $:586 [] exp:465800 [-65349]
+New holy task 'Torment and Agony' is now available to you.
+This costs you 69681 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel undead' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 91%.
+
+Cost for 'study dispel undead': utime:2 stime:0 ticks:4426
+This costs you 74281 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel undead' at 78% without special bonuses.
+With current bonuses it is at 78%. Current maximum without bonuses is 91%.
+--
+Studied total 1% of the spell.
+You now have 'Identify relic' at 72% without special bonuses.
+With current bonuses it is at 72%. Current maximum without bonuses is 74%.
+
+This costs you 13153 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 73% without special bonuses.
+With current bonuses it is at 73%. Current maximum without bonuses is 74%.
+
+Xunisiih tells you 'kuin iso tuo great white shark o ?'
+New holy task 'Nun's daily work' is now available to you.
+This costs you 13921 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+H:465/465 [] S:615/1014 [] E:236/241 [] $:360 [] exp:404581 [-100705]
+H:465/465 [] S:751/1014 [+136] E:241/241 [+5] $:360 [] exp:404581 []
+(party): Dralith yawns tiredly.
+There are no light sources here, but you can still see.
+You are standing on a hot yellow sand at the base of a huge pyramid. The
+--
+| Mastery of shielding          |  80 |  81 | 100 |   148460 |
+| Might of the saints           |  67 |  81 |  67 |    (n/a) |
+
+| Bludgeons                     |  30 |  81 |  30 |    (n/a) |
+| Quick chant                   |  95 |  81 | 100 |   702749 |
+| Discipline                    |  61 | 100 |  90 |    66715 |
+| Mastery of holy vials         |  50 |  81 |  50 |    (n/a) |
+| Power of faith                |  49 |  81 |  71 |   300789 |
+`------------------------------------------------------------'
+H:683/683 [] S:658/1108 [] E:233/235 [] $:12249 [] exp:340747 []
+New holy task 'Abigail's Nightmare' is now available to you.
+This costs you 300789 experience points.
+Trained total 1% of the skill.
+You now have 'Power of faith' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 71%.
+
+H:683/683 [] S:658/1108 [] E:233/235 [] $:12249 [] exp:39958 [-300789]
+H:683/683 [] S:658/1108 [] E:233/235 [] $:12249 [] exp:39958 []
+Gandil [wanted]: party for ranger
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+--
+
+Studying satiate_person...
+Starting to study to Max. Next 10%.
+You need 8339 more experience to reach the total cost of 20870 experience.0
+
+Studying water_walking...
+Starting to study to Max. Next 10%.
+You need 8339 more experience to reach the total cost of 20870 experience.0
+
+Studying word_of_recall...
+New holy task 'Cry for help' is now available to you.
+Starting to study to Max. Next 16%.
+This costs you 12121 experience points.
+Studied total 5% of the spell.
+You now have 'Word of recall' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 70%.
+You need 2453 more experience to reach the total cost of 2863 experience.0
+
+
+
+Sundown [party]: mulla mitää raha oo ja oon 500k + 9m broelle velkaa mut jotai
+You now have 'Holy hand' at 15% without special bonuses.
+With current bonuses it is at 15%. Current maximum without bonuses is 20%.
+0
+
+
+
+You pay 19360 gold and advance a level.
+Wisdom of holy teachings seems much clearer now.
+Attempting to train skills and spells for next guild level...
+Studying dispel_evil...
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+Starting to study to 5%. Next 5%.
+This costs you 578 experience points.
+Studied total 5% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+0
+
+Studying protection_from_evil...
+Starting to study to 11%. Next 4%.
+This costs you 316 experience points.
+--
+
+Studying bless_vial...
+Starting to study to 30%. Next 3%.
+This costs you 4731 experience points.
+Studied total 3% of the spell.
+You now have 'Bless vial' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 59%.
+0
+
+Training candlestick_making...
+New holy task 'Happy bees' is now available to you.
+Starting to train to 43%. Next 13%.
+This costs you 57585 experience points.
+Trained total 13% of the skill.
+You now have 'Candlestick making' at 43% without special bonuses.
+With current bonuses it is at 43%. Current maximum without bonuses is 52%.
+0
+
+
+
+You pay 30250 gold and advance a level.
+--
+
+Training cast_dispel...
+Starting to train to 75%. Next 15%.
+This costs you 380755 experience points.
+Trained total 15% of the skill.
+You now have 'Cast dispel' at 75% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 90%.
+0
+
+Studying soul_shield...
+New holy task 'True Devotee of Las' is now available to you.
+Starting to study to 30%. Next 10%.
+This costs you 8437 experience points.
+Studied total 10% of the spell.
+You now have 'Soul shield' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 80%.
+0
+
+
+
+You pay 34810 gold and advance a level.
+--
+
+Training exorcize...
+Starting to train to 30%. Next 4%.
+This costs you 5977 experience points.
+Trained total 4% of the skill.
+You now have 'Exorcize' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 75%.
+0
+
+Studying holy_hand...
+New holy task 'Might of Holy Lore' is now available to you.
+Starting to study to 55%. Next 7%.
+This costs you 44160 experience points.
+Studied total 7% of the spell.
+You now have 'Holy hand' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 66%.
+0
+
+
+
+H:425/425 [] S:668/699 [] E:36/232 [] $:9758 [-100940] exp:13128 []
+--
+| Turn undead                   |  90 |  81 |  96 |   815675 |
+| Knowledge of dispelling       |  20 |  81 |  20 |    (n/a) |
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   | 100 |  81 |  55 |    (n/a) |
+
+| Discipline                    |  55 | 100 |  68 |    42795 |
+| Power of faith                |  25 |  81 |  25 |    (n/a) |
+`------------------------------------------------------------'
+H:439/439 [] S:699/699 [] E:79/235 [+8] $:9758 [] exp:13128 []
+Info: Kitania goes link dead.
+New holy task 'Slaad hunt' is now available to you.
+Starting to train to Max. Next 35%.
+This costs you 1371374 experience points.
+Trained total 35% of the skill.
+You now have 'Cast holy' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+| Skills available at level 25  | Cur | Rac | Max | Exp      |
+--
+| Turn undead                   |  90 |  81 |  96 |   815675 |
+| Knowledge of dispelling       |  20 |  81 |  20 |    (n/a) |
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   | 100 |  81 |  55 |    (n/a) |
+
+| Discipline                    |  55 | 100 |  68 |    42795 |
+| Power of faith                |  25 |  81 |  25 |    (n/a) |
+`------------------------------------------------------------'
+The wind stills.
+Sister Valentina smiles at you.
+New holy task 'Pilgrimation' is now available to you.
+Starting to train to 60%. Next 30%.
+This costs you 209334 experience points.
+Trained total 30% of the skill.
+You now have 'Exorcize' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 75%.
+
+Starting to train to Max. Next 15%.
+This costs you 410902 experience points.
+Trained total 15% of the skill.
+You now have 'Exorcize' at 75% without special bonuses.
+--
+
+Training vial_throwing...
+Starting to train to 41%. Next 3%.
+This costs you 17590 experience points.
+Trained total 3% of the skill.
+You now have 'Vial throwing' at 41% without special bonuses.
+With current bonuses it is at 41%. Current maximum without bonuses is 64%.
+0
+
+Studying bless_vial...
+New holy task 'Aid the Underdogs' is now available to you.
+Starting to study to 50%. Next 10%.
+This costs you 65853 experience points.
+Studied total 10% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 67%.
+0
+
+Training cast_protection...
+Starting to train to 75%. Next 15%.
+This costs you 380755 experience points.
+--
+| Mastery of shielding          |   0 |  81 |  25 |      158 |
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+
+| Quick chant                   | 100 |  81 |  60 |    (n/a) |
+| Discipline                    |  60 | 100 |  68 |    62030 |
+| Mastery of holy vials         |   0 |  81 |  20 |      233 |
+| Power of faith                |  25 |  81 |  27 |    32480 |
+`------------------------------------------------------------'
+Hellvasara [wanted]: reinc cast
+Beanos [wanted]: other players cast reincarnation at you, costs $10k
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to Max. Next 22%.
+This costs you 94657 experience points.
+Trained total 22% of the skill.
+You now have 'Knowledge of dispelling' at 42% without special bonuses.
+With current bonuses it is at 42%. Current maximum without bonuses is 42%.
+
+H:437/439 [+12] S:627/702 [+95] E:235/235 [+1] $:105859 [] exp:13128 []
+Starting to train to Max. Next 2%.
+This costs you 68713 experience points.
+Trained total 2% of the skill.
+--
+| Heavenly protection           |   2 |  98 |  45 |      101 |
+| Dispel undead                 |  40 |  98 |  63 |     5361 |
+| Dispel evil                   |  40 |  98 |  55 |     5902 |
+| Mana shield                   |  20 |  98 | 100 |      842 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  10 |  98 |  58 |      250 |
+| Holy wind                     |   1 |  98 |  41 |      118 |
+| Banish demons                 |  26 |  98 |  65 |     1779 |
+| Holy bolt                     |   3 |  98 |  40 |      149 |
+`------------------------------------------------------------'
+New holy task 'Undead Lords' is now available to you.
+Starting to study to Max. Next 23%.
+This costs you 322317 experience points.
+Studied total 23% of the spell.
+You now have 'Dispel undead' at 63% without special bonuses.
+With current bonuses it is at 63%. Current maximum without bonuses is 63%.
+
+You feel fully healed.
+You sizzle with magical energy.
+H:439/439 [+2] S:702/702 [+75] E:235/235 [] $:105859 [] exp:13128 []
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to Max. Next 15%.
+This costs you 162990 experience points.
+Studied total 15% of the spell.
+You now have 'Dispel evil' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+
+New holy task 'Patron of the Righteous' is now available to you.
+Starting to study to Max. Next 48%.
+This costs you 300392 experience points.
+Studied total 48% of the spell.
+You now have 'Flames of righteousness' at 58% without special bonuses.
+With current bonuses it is at 58%. Current maximum without bonuses is 58%.
+
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+| Spells available at level 29  | Cur | Rac | Max | Exp      |
+--
+| Heavenly protection           |   2 |  98 |  45 |      101 |
+| Dispel undead                 |  63 |  98 |  63 |    (n/a) |
+| Dispel evil                   |  55 |  98 |  55 |    (n/a) |
+| Mana shield                   |  20 |  98 | 100 |      842 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  58 |  98 |  58 |    (n/a) |
+| Holy wind                     |  41 |  98 |  41 |    (n/a) |
+| Banish demons                 |  26 |  98 |  65 |     1779 |
+| Holy bolt                     |  40 |  98 |  40 |    (n/a) |
+`------------------------------------------------------------'
+New holy task 'Forces of Evil' is now available to you.
+Starting to study to Max. Next 39%.
+This costs you 531599 experience points.
+Studied total 39% of the spell.
+You now have 'Banish demons' at 65% without special bonuses.
+With current bonuses it is at 65%. Current maximum without bonuses is 65%.
+
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+| Spells available at level 29  | Cur | Rac | Max | Exp      |
+--
+| Heavenly protection           |  45 |  98 |  45 |    (n/a) |
+| Dispel undead                 |  63 |  98 |  63 |    (n/a) |
+| Dispel evil                   |  55 |  98 |  55 |    (n/a) |
+| Mana shield                   |  60 |  98 | 100 |    26910 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  58 |  98 |  58 |    (n/a) |
+| Holy wind                     |  41 |  98 |  41 |    (n/a) |
+| Banish demons                 |  65 |  98 |  65 |    (n/a) |
+| Holy bolt                     |  40 |  98 |  40 |    (n/a) |
+`------------------------------------------------------------'
+New holy task 'Holy deeds' is now available to you.
+Starting to study to Max. Next 52%.
+This costs you 105414 experience points.
+Studied total 52% of the spell.
+You now have 'Cleanse heathen' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+This costs you 6579 experience points.
+Studied total 1% of the spell.
+You now have 'Soul shield' at 51% without special bonuses.
+With current bonuses it is at 51%. Current maximum without bonuses is 80%.
+--
+| Heavenly protection           |  45 |  98 |  45 |    (n/a) |
+| Dispel undead                 |  63 |  98 |  63 |    (n/a) |
+| Dispel evil                   |  55 |  98 |  55 |    (n/a) |
+| Mana shield                   |  60 |  98 | 100 |    26910 |
+| Detect vial                   |   0 |  98 |  -  |    (n/a) |
+| Flames of righteousness       |  58 |  98 |  58 |    (n/a) |
+| Holy wind                     |  41 |  98 |  41 |    (n/a) |
+| Banish demons                 |  65 |  98 |  65 |    (n/a) |
+| Holy bolt                     |  40 |  98 |  40 |    (n/a) |
+`------------------------------------------------------------'
+New holy task 'Sacred Water' is now available to you.
+Starting to study to Max. Next 17%.
+This costs you 307329 experience points.
+Studied total 17% of the spell.
+You now have 'Bless vial' at 67% without special bonuses.
+With current bonuses it is at 67%. Current maximum without bonuses is 67%.
+
+This costs you 17472 experience points.
+Studied total 1% of the spell.
+You now have 'Heavy weight' at 61% without special bonuses.
+With current bonuses it is at 61%. Current maximum without bonuses is 61%.
+--
+| Knowledge of dispelling       |  42 |  81 |  42 |    (n/a) |
+| Mastery of shielding          |  25 |  81 |  25 |    (n/a) |
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+
+| Quick chant                   | 100 |  81 |  60 |    (n/a) |
+| Discipline                    |  60 | 100 |  68 |    62030 |
+| Mastery of holy vials         |  20 |  81 |  20 |    (n/a) |
+| Power of faith                |  27 |  81 |  27 |    (n/a) |
+`------------------------------------------------------------'
+Smash (wanted): party for psichanconj
+New holy task 'Vials and Stamina' is now available to you.
+Starting to train to Max. Next 14%.
+This costs you 311998 experience points.
+Trained total 14% of the skill.
+You now have 'Vial throwing' at 64% without special bonuses.
+With current bonuses it is at 64%. Current maximum without bonuses is 64%.
+
+Name: Ggr Pupunen the Duck < ? >
+--------------------------------------------------------------------------
+Player level: 90 (12 free)              Experience: 13128
+Money: 105859.00                        Bank: 350.00
+--
+| Knowledge of dispelling       |  42 |  81 |  42 |    (n/a) |
+| Mastery of shielding          |  25 |  81 |  52 |     2155 |
+| Might of the saints           |   0 |  81 |  40 |      158 |
+
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   | 100 |  81 |  60 |    (n/a) |
+| Discipline                    |  60 | 100 |  68 |    62030 |
+| Mastery of holy vials         |  20 |  81 |  50 |     1698 |
+| Power of faith                |  27 |  81 |  27 |    (n/a) |
+`------------------------------------------------------------'
+New holy task 'Might of Holy Vials' is now available to you.
+Starting to train to Max. Next 30%.
+This costs you 301784 experience points.
+Trained total 30% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+| Skills available at level 31  | Cur | Rac | Max | Exp      |
+--
+| Knowledge of dispelling       |  42 |  81 |  42 |    (n/a) |
+| Mastery of shielding          |  25 |  81 |  52 |     2155 |
+| Might of the saints           |   0 |  81 |  40 |      158 |
+
+| Bludgeons                     |   0 |  81 |  30 |      166 |
+| Quick chant                   | 100 |  81 |  60 |    (n/a) |
+| Discipline                    |  60 | 100 |  68 |    62030 |
+| Mastery of holy vials         |  50 |  81 |  50 |    (n/a) |
+| Power of faith                |  27 |  81 |  27 |    (n/a) |
+`------------------------------------------------------------'
+New holy task 'Set of White Rose' is now available to you.
+Starting to train to Max. Next 40%.
+This costs you 85397 experience points.
+Trained total 40% of the skill.
+You now have 'Might of the saints' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+Trench tells you 'nod'
+New holy task 'Demons of the soul' is now available to you.
+Starting to train to Max. Next 27%.
+This costs you 235771 experience points.
+Trained total 27% of the skill.
+You now have 'Mastery of shielding' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+H:437/439 [+12] S:707/707 [] E:235/235 [] $:22649 [] exp:13128 []
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+Studied total 20% of the spell.
+You now have 'Holy bolt' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+Superior of Holy Lore.'
+
+Sister Alma says, 'I can't train you more. Thy must seek Sister Valentina, the
+Superior of Holy Lore.'
+
+New holy task 'Blood of the Innocent' is now available to you.
+Starting to study to Max. Next 14%.
+This costs you 185369 experience points.
+Studied total 14% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+H:439/439 [] S:707/707 [] E:235/235 [] $:22649 [] exp:13128 []
+Name: Ggr Pupunen the Duck < ? >
+--------------------------------------------------------------------------
+Player level: 90 (10 free)              Experience: 13128
+--
+             ________________________________________
+            | ^o^                                ^o^ | 
+            |  .  The DONATIONS are now [ OPEN ]  .  |
+            |- . -------------------------------- . -|
+            |  .       Read "help donate"         .  |
+            |________________________________________|
+
+
+What is your name: ggr
+
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+New holy task 'Hammer of Las' is now available to you.
+New holy task 'Convent's life' is now available to you.
+New holy task 'Save the Orphans' is now available to you.
+New holy task 'Memento mei' is now available to you.
+New holy task 'Heal and nourish' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+Read: help topics, help multiple characters
+
+Read news inform!
+
+--
+| Heavenly protection           |  59 |  98 |  59 |    (n/a) |
+| Dispel undead                 |  63 |  98 |  91 |    29559 |
+| Dispel evil                   |  55 |  98 |  91 |    18840 |
+| Mana shield                   |  75 |  98 | 100 |    73927 |
+| Detect vial                   |   0 |  98 | 100 |      115 |
+| Flames of righteousness       |  58 |  98 |  90 |    25178 |
+| Holy wind                     |  41 |  98 |  59 |     6845 |
+| Banish demons                 |  65 |  98 |  74 |    43146 |
+| Holy bolt                     |  60 |  98 |  60 |    (n/a) |
+`------------------------------------------------------------'
+New holy task 'Battle Against Evil' is now available to you.
+Starting to study to Max. Next 18%.
+This costs you 259108 experience points.
+Studied total 18% of the spell.
+You now have 'Holy wind' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+Name: Ggr Pupunen the Duck
+--------------------------------------------------------------------------
+Player level: 90 (10 free)              Experience: 8435
+Money: 19490.00                         Bank: 350.00
+--
+
+Str: Low (32)             Dex: Low (48)             Con: Adequate (61+)       
+Int: Average (94+)        Wis: Great (134+)         
+Cha: Good-looking (98)    Siz: Short (39)           
+
+You have a meager ability for avoiding hits.
+You are irreproachably kind.
+You have completed 24 active quests. (16 lq, 0 gq, 7 aq, 0 pq, 1 aw)
+You are refreshed, satiated, very young and brave.
+Thanril leads the duck race.
+New holy task 'Vindicator of justice' is now available to you.
+Starting to study to Max. Next 36%.
+This costs you 2782037 experience points.
+Studied total 36% of the spell.
+You now have 'Dispel evil' at 91% without special bonuses.
+With current bonuses it is at 91%. Current maximum without bonuses is 91%.
+
+Starting to study to Max. Next 28%.
+This costs you 2107427 experience points.
+Studied total 27% of the spell.
+You now have 'Dispel undead' at 90% without special bonuses.
+--
+| Dispel evil                   |  91 |  98 |  91 |    (n/a) |
+| Mana shield                   |  75 |  98 | 100 |    73927 |
+| Detect vial                   |   0 |  98 | 100 |      115 |
+| Flames of righteousness       |  58 |  98 |  90 |    25178 |
+| Holy wind                     |  59 |  98 |  59 |    (n/a) |
+| Banish demons                 |  65 |  98 |  74 |    43146 |
+| Holy bolt                     |  60 |  98 |  60 |    (n/a) |
+`------------------------------------------------------------'
+Orome (wanted): bah and where is beer?
+The guard keeps an eye on you constantly.
+New holy task 'Tears of nun' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 73868 experience points.
+Studied total 5% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+H:650/650 [] S:665/739 [] E:235/235 [] $:19490 [] exp:1980 [-6455]
+H:650/650 [] S:665/739 [] E:235/235 [] $:19490 [] exp:1980 []
+This place is kinda claustrophobic.
+                                ,----------------------------.
+--
+This costs you 27063 experience points.
+Studied total 1% of the spell.
+You now have 'Saintly touch' at 75% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 100%.
+
+This costs you 28730 experience points.
+Studied total 1% of the spell.
+You now have 'Saintly touch' at 76% without special bonuses.
+With current bonuses it is at 76%. Current maximum without bonuses is 100%.
+
+New holy task 'Torment and Agony' is now available to you.
+This costs you 30492 experience points.
+Studied total 1% of the spell.
+You now have 'Saintly touch' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 100%.
+
+This costs you 32354 experience points.
+Studied total 1% of the spell.
+You now have 'Saintly touch' at 78% without special bonuses.
+With current bonuses it is at 78%. Current maximum without bonuses is 100%.
+
+--
+You now have 'Identify relic' at 72% without special bonuses.
+With current bonuses it is at 73%. Current maximum without bonuses is 74%.
+
+Valentina recites a prayer to the glory of Las.
+H:654/654 [] S:1030/1030 [] E:128/228 [] $:29372 [] exp:267648 [-55552]
+This costs you 13153 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 73% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+New holy task 'Nun's daily work' is now available to you.
+This costs you 13921 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 74%.
+
+You have 'Identify relic' at 74% and you may only train it up to 74%.
+H:654/654 [] S:1030/1030 [] E:128/228 [] $:29372 [] exp:240574 [-27074]
+                                ,----------------------------.
+                                |Percentiles      | Adv. cost|
+,-------------------------------+-----------------+----------|
+--
+New holy task 'Aid the Underdogs' is now available to you.
+You now have 'Sewing' at 50% without special bonuses.
+--
+New holy task 'True Devotee of Las' is now available to you.
+You now have 'Essence eye' at 60% without special bonuses.
+--
+New holy task 'Angelique's cross' is now available to you.
+You now have 'Purity of thy heart' at 50% without special bonuses.
+--
+New holy task 'Cry for help' is now available to you.
+This costs you 2707 experience points.
+Studied total 1% of the spell.
+You now have 'Word of recall' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 70%.
+
+--
+New holy task 'Torment and Agony' is now available to you.
+This costs you 30492 experience points.
+Studied total 1% of the spell.
+You now have 'Saintly touch' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 100%.
+
+--
+New holy task 'Nun's daily work' is now available to you.
+Starting to study to 74%. Next 14%.
+This costs you 137539 experience points.
+Studied total 14% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 90%.
+This costs you 1011480 experience points.
+Studied total 90% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+--
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to 70%. Next 14%.
+This costs you 734148 experience points.
+Trained total 14% of the skill.
+You now have 'Quick chant' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 100%.
+--
+New holy task 'Nun's daily work' is now available to you.
+This costs you 15662 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+This costs you 143 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 90%.
+This costs you 1011480 experience points.
+Studied total 90% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+--
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to 70%. Next 14%.
+This costs you 734148 experience points.
+Trained total 14% of the skill.
+You now have 'Quick chant' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 100%.
+--
+New holy task 'Nun's daily work' is now available to you.
+This costs you 15662 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+This costs you 143 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+
+--
+New holy task 'True Devotee of Las' is now available to you.
+This costs you 1411 experience points.
+Studied total 1% of the spell.
+You now have 'Soul shield' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 40%.
+
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 90%.
+This costs you 1011480 experience points.
+Studied total 90% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+--
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to 70%. Next 14%.
+This costs you 734148 experience points.
+Trained total 14% of the skill.
+You now have 'Quick chant' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 100%.
+--
+New holy task 'Nun's daily work' is now available to you.
+This costs you 15662 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+This costs you 143 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+
+--
+New holy task 'True Devotee of Las' is now available to you.
+This costs you 1411 experience points.
+Studied total 1% of the spell.
+You now have 'Soul shield' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Might of Holy Lore' is now available to you.
+This costs you 6570 experience points.
+Studied total 1% of the spell.
+You now have 'Holy hand' at 51% without special bonuses.
+With current bonuses it is at 51%. Current maximum without bonuses is 66%.
+
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 90%.
+This costs you 1011480 experience points.
+Studied total 90% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+--
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to 70%. Next 14%.
+This costs you 734148 experience points.
+Trained total 14% of the skill.
+You now have 'Quick chant' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 100%.
+--
+New holy task 'Nun's daily work' is now available to you.
+This costs you 15662 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+This costs you 143 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+
+--
+New holy task 'True Devotee of Las' is now available to you.
+This costs you 1411 experience points.
+Studied total 1% of the spell.
+You now have 'Soul shield' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Might of Holy Lore' is now available to you.
+This costs you 6570 experience points.
+Studied total 1% of the spell.
+You now have 'Holy hand' at 51% without special bonuses.
+With current bonuses it is at 51%. Current maximum without bonuses is 66%.
+
+--
+New holy task 'Happy bees' is now available to you.
+This costs you 5896 experience points.
+Trained total 1% of the skill.
+You now have 'Candlestick making' at 41% without special bonuses.
+With current bonuses it is at 41%. Current maximum without bonuses is 48%.
+
+--
+New holy task 'Aid the Underdogs' is now available to you.
+This costs you 10182 experience points.
+Studied total 1% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+H:436/436 [] S:642/642 [] E:112/234 [+9] $:0 [] exp:325009 []
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 90%.
+This costs you 1011480 experience points.
+Studied total 90% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+--
+
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+Ramona falters and loses her spell.
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to 70%. Next 14%.
+This costs you 734148 experience points.
+Trained total 14% of the skill.
+You now have 'Quick chant' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 100%.
+--
+
+New holy task 'Nun's daily work' is now available to you.
+This costs you 15662 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+This costs you 143 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+
+--
+
+New holy task 'True Devotee of Las' is now available to you.
+This costs you 1411 experience points.
+Studied total 1% of the spell.
+You now have 'Soul shield' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 40%.
+
+--
+
+New holy task 'Might of Holy Lore' is now available to you.
+This costs you 6570 experience points.
+Studied total 1% of the spell.
+You now have 'Holy hand' at 51% without special bonuses.
+With current bonuses it is at 51%. Current maximum without bonuses is 66%.
+
+--
+
+New holy task 'Happy bees' is now available to you.
+This costs you 5896 experience points.
+Trained total 1% of the skill.
+You now have 'Candlestick making' at 41% without special bonuses.
+With current bonuses it is at 41%. Current maximum without bonuses is 48%.
+
+--
+
+New holy task 'Aid the Underdogs' is now available to you.
+This costs you 10182 experience points.
+Studied total 1% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+Elero is caught by sudden enlightment.
+New holy task 'Vials and Stamina' is now available to you.
+This costs you 27341 experience points.
+Trained total 1% of the skill.
+You now have 'Vial throwing' at 61% without special bonuses.
+With current bonuses it is at 61%. Current maximum without bonuses is 64%.
+
+--
+
+New holy task 'Tears of nun' is now available to you.
+This costs you 18542 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+--
+Studying banish_demons...
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to 17%. Next 12%.
+This costs you 4143 experience points.
+Studied total 12% of the spell.
+You now have 'Banish demons' at 17% without special bonuses.
+With current bonuses it is at 17%. Current maximum without bonuses is 35%.
+--
+
+New holy task 'Holy deeds' is now available to you.
+This costs you 5552 experience points.
+Studied total 1% of the spell.
+You now have 'Cleanse heathen' at 45% without special bonuses.
+With current bonuses it is at 45%. Current maximum without bonuses is 52%.
+
+H:436/436 [] S:642/642 [] E:112/234 [+9] $:0 [] exp:325009 []
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 90%.
+This costs you 1011480 experience points.
+Studied total 90% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+--
+
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+Ramona falters and loses her spell.
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to 70%. Next 14%.
+This costs you 734148 experience points.
+Trained total 14% of the skill.
+You now have 'Quick chant' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 100%.
+--
+
+New holy task 'Nun's daily work' is now available to you.
+This costs you 15662 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+This costs you 143 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+
+--
+
+New holy task 'True Devotee of Las' is now available to you.
+This costs you 1411 experience points.
+Studied total 1% of the spell.
+You now have 'Soul shield' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 40%.
+
+--
+
+New holy task 'Might of Holy Lore' is now available to you.
+This costs you 6570 experience points.
+Studied total 1% of the spell.
+You now have 'Holy hand' at 51% without special bonuses.
+With current bonuses it is at 51%. Current maximum without bonuses is 66%.
+
+--
+
+New holy task 'Happy bees' is now available to you.
+This costs you 5896 experience points.
+Trained total 1% of the skill.
+You now have 'Candlestick making' at 41% without special bonuses.
+With current bonuses it is at 41%. Current maximum without bonuses is 48%.
+
+--
+
+New holy task 'Aid the Underdogs' is now available to you.
+This costs you 10182 experience points.
+Studied total 1% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+Elero is caught by sudden enlightment.
+New holy task 'Vials and Stamina' is now available to you.
+This costs you 27341 experience points.
+Trained total 1% of the skill.
+You now have 'Vial throwing' at 61% without special bonuses.
+With current bonuses it is at 61%. Current maximum without bonuses is 64%.
+
+--
+
+New holy task 'Tears of nun' is now available to you.
+This costs you 18542 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+--
+Studying banish_demons...
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to 17%. Next 12%.
+This costs you 4143 experience points.
+Studied total 12% of the spell.
+You now have 'Banish demons' at 17% without special bonuses.
+With current bonuses it is at 17%. Current maximum without bonuses is 35%.
+--
+
+New holy task 'Holy deeds' is now available to you.
+This costs you 5552 experience points.
+Studied total 1% of the spell.
+You now have 'Cleanse heathen' at 45% without special bonuses.
+With current bonuses it is at 45%. Current maximum without bonuses is 52%.
+
+--
+
+New holy task 'Sacred Water' is now available to you.
+This costs you 20704 experience points.
+Studied total 1% of the spell.
+You now have 'Bless vial' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 67%.
+
+--
+
+New holy task 'Undead Lords' is now available to you.
+This costs you 19014 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel undead' at 56% without special bonuses.
+With current bonuses it is at 56%. Current maximum without bonuses is 81%.
+
+H:436/436 [] S:642/642 [] E:112/234 [+9] $:0 [] exp:325009 []
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 90%.
+This costs you 1011480 experience points.
+Studied total 90% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+--
+
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+Ramona falters and loses her spell.
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to 70%. Next 14%.
+This costs you 734148 experience points.
+Trained total 14% of the skill.
+You now have 'Quick chant' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 100%.
+--
+
+New holy task 'Nun's daily work' is now available to you.
+This costs you 15662 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+This costs you 143 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+
+--
+
+New holy task 'True Devotee of Las' is now available to you.
+This costs you 1411 experience points.
+Studied total 1% of the spell.
+You now have 'Soul shield' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 40%.
+
+--
+
+New holy task 'Might of Holy Lore' is now available to you.
+This costs you 6570 experience points.
+Studied total 1% of the spell.
+You now have 'Holy hand' at 51% without special bonuses.
+With current bonuses it is at 51%. Current maximum without bonuses is 66%.
+
+--
+
+New holy task 'Happy bees' is now available to you.
+This costs you 5896 experience points.
+Trained total 1% of the skill.
+You now have 'Candlestick making' at 41% without special bonuses.
+With current bonuses it is at 41%. Current maximum without bonuses is 48%.
+
+--
+
+New holy task 'Aid the Underdogs' is now available to you.
+This costs you 10182 experience points.
+Studied total 1% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+Elero is caught by sudden enlightment.
+New holy task 'Vials and Stamina' is now available to you.
+This costs you 27341 experience points.
+Trained total 1% of the skill.
+You now have 'Vial throwing' at 61% without special bonuses.
+With current bonuses it is at 61%. Current maximum without bonuses is 64%.
+
+--
+
+New holy task 'Tears of nun' is now available to you.
+This costs you 18542 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+--
+Studying banish_demons...
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to 17%. Next 12%.
+This costs you 4143 experience points.
+Studied total 12% of the spell.
+You now have 'Banish demons' at 17% without special bonuses.
+With current bonuses it is at 17%. Current maximum without bonuses is 35%.
+--
+
+New holy task 'Holy deeds' is now available to you.
+This costs you 5552 experience points.
+Studied total 1% of the spell.
+You now have 'Cleanse heathen' at 45% without special bonuses.
+With current bonuses it is at 45%. Current maximum without bonuses is 52%.
+
+--
+
+New holy task 'Sacred Water' is now available to you.
+This costs you 20704 experience points.
+Studied total 1% of the spell.
+You now have 'Bless vial' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 67%.
+
+--
+
+New holy task 'Undead Lords' is now available to you.
+This costs you 19014 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel undead' at 56% without special bonuses.
+With current bonuses it is at 56%. Current maximum without bonuses is 81%.
+
+--
+
+New holy task 'Pilgrimation' is now available to you.
+This costs you 6609 experience points.
+Trained total 1% of the skill.
+You now have 'Exorcize' at 47% without special bonuses.
+With current bonuses it is at 47%. Current maximum without bonuses is 75%.
+
+--
+Tonto (newbie): even better is "command ba use 'bash' $*"
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to Max. Next 42%.
+This costs you 103449 experience points.
+Trained total 42% of the skill.
+You now have 'Knowledge of dispelling' at 42% without special bonuses.
+With current bonuses it is at 42%. Current maximum without bonuses is 42%.
+
+--
+
+New holy task 'Slaad hunt' is now available to you.
+You now have 'Cast heal' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+H:444/444 [] S:1080/1080 [] E:244/245 [] $:290 [] exp:207240 [-307728]
+New holy task 'Good shepherd' is now available to you.
+Starting to study to Max. Next 1%.
+This costs you 27406 experience points.
+Studied total 1% of the spell.
+You now have 'Holy lance' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+--
+With current bonuses it is at 58%. Current maximum without bonuses is 70%.
+New holy task 'Convent's life' is now available to you.
+This costs you 3030 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 39% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 70%.
+This costs you 3280 experience points.
+--
+With current bonuses it is at 62%. Current maximum without bonuses is 70%.
+New holy task 'Heal and nourish' is now available to you.
+This costs you 4133 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 43% without special bonuses.
+With current bonuses it is at 63%. Current maximum without bonuses is 70%.
+This costs you 4457 experience points.
+--
+
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+`------------------------------------------------------------'
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 10%.
+This costs you 42472 experience points.
+Studied total 10% of the spell.
+You now have 'Summon' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+`------------------------------------------------------------'
+
+H:444/444 [] S:1080/1080 [] E:244/245 [] $:290 [] exp:207240 [-307728]
+New holy task 'Good shepherd' is now available to you.
+Starting to study to Max. Next 1%.
+This costs you 27406 experience points.
+Studied total 1% of the spell.
+You now have 'Holy lance' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+--
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 38% without special bonuses.
+With current bonuses it is at 58%. Current maximum without bonuses is 70%.
+New holy task 'Convent's life' is now available to you.
+This costs you 3030 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 39% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 70%.
+This costs you 3280 experience points.
+--
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 42% without special bonuses.
+With current bonuses it is at 62%. Current maximum without bonuses is 70%.
+New holy task 'Heal and nourish' is now available to you.
+This costs you 4133 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 43% without special bonuses.
+With current bonuses it is at 63%. Current maximum without bonuses is 70%.
+This costs you 4457 experience points.
+--
+
+What is your name: ggr
+
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+--
+| Unpain                        |  20 |  98 |  20 |    (n/a) |
+| Enhanced vitality             |   0 |  98 |  60 |      121 |
+`------------------------------------------------------------'
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 10%.
+This costs you 42472 experience points.
+Studied total 10% of the spell.
+You now have 'Summon' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+--
+| Quick chant                   |  45 |  81 |  60 |    13900 |
+| Way of the tarmalen           |  53 |  81 |  53 |    (n/a) |
+`------------------------------------------------------------'
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to Max. Next 15%.
+This costs you 373757 experience points.
+Trained total 15% of the skill.
+You now have 'Quick chant' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+--
+| Enhanced vitality             |   0 |  98 |  90 |      121 |
+| New body                      |   0 |  98 |  20 |      127 |
+`------------------------------------------------------------'
+New holy task 'Nun's daily work' is now available to you.
+Starting to study to 95%. Next 95%.
+This costs you 1250201 experience points.
+Studied total 95% of the spell.
+You now have 'Remove scar' at 89% without special bonuses.
+With current bonuses it is at 89%. Current maximum without bonuses is 100%.
+New holy task 'Good shepherd' is now available to you.
+Starting to study to Max. Next 1%.
+This costs you 27406 experience points.
+Studied total 1% of the spell.
+You now have 'Holy lance' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+
+--
+New holy task 'Convent's life' is now available to you.
+This costs you 3030 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 39% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 70%.
+This costs you 3280 experience points.
+Studied total 1% of the spell.
+--
+New holy task 'Heal and nourish' is now available to you.
+This costs you 4133 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 43% without special bonuses.
+With current bonuses it is at 63%. Current maximum without bonuses is 70%.
+This costs you 4457 experience points.
+Studied total 1% of the spell.
+--
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+--
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 10%.
+This costs you 42472 experience points.
+Studied total 10% of the spell.
+You now have 'Summon' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+Rodolf Routaamp (fall+): ramonaki hakkaa: kivast
+--
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to Max. Next 15%.
+This costs you 373757 experience points.
+Trained total 15% of the skill.
+You now have 'Quick chant' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+Ramona smiles and says 'Isn't the view magnificent?'
+--
+New holy task 'Nun's daily work' is now available to you.
+Starting to study to 95%. Next 95%.
+This costs you 1250201 experience points.
+Studied total 95% of the spell.
+You now have 'Remove scar' at 95% without special bonuses.
+With current bonuses it is at 95%. Current maximum without bonuses is 100%.
+Name: Ggr Pupunen the Duck
+--
+New holy task 'Cry for help' is now available to you.
+This costs you 3045 experience points.
+Studied total 1% of the spell.
+You now have 'Word of recall' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 100%.
+This costs you 3221 experience points.
+Studied total 1% of the spell.
+--
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+Starting to study to 5%. Next 5%.
+This costs you 650 experience points.
+Studied total 5% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+0
+--
+New holy task 'True Devotee of Las' is now available to you.
+Starting to study to Max. Next 25%.
+This costs you 80035 experience points.
+Studied total 25% of the spell.
+You now have 'Soul shield' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Might of Holy Lore' is now available to you.
+This costs you 6570 experience points.
+Studied total 1% of the spell.
+You now have 'Holy hand' at 51% without special bonuses.
+With current bonuses it is at 51%. Current maximum without bonuses is 66%.
+
+This costs you 7039 experience points.
+--
+New holy task 'Happy bees' is now available to you.
+Starting to train to Max. Next 18%.
+This costs you 79363 experience points.
+Trained total 18% of the skill.
+You now have 'Candlestick making' at 45% without special bonuses.
+With current bonuses it is at 45%. Current maximum without bonuses is 45%.
+
+--
+New holy task 'Aid the Underdogs' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 44082 experience points.
+Studied total 5% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Slaad hunt' is now available to you.
+This costs you 89279 experience points.
+Trained total 1% of the skill.
+You now have 'Cast holy' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+
+You have 'Cast holy' at 90% and you may only train it up to 90%.
+--
+New holy task 'Pilgrimation' is now available to you.
+Starting to train to Max. Next 27%.
+This costs you 122611 experience points.
+Trained total 27% of the skill.
+You now have 'Exorcize' at 53% without special bonuses.
+With current bonuses it is at 53%. Current maximum without bonuses is 53%.
+
+--
+New holy task 'Vials and Stamina' is now available to you.
+Starting to train to Max. Next 15%.
+This costs you 324632 experience points.
+Trained total 15% of the skill.
+You now have 'Vial throwing' at 64% without special bonuses.
+With current bonuses it is at 64%. Current maximum without bonuses is 64%.
+
+--
+New holy task 'Memento mei' is now available to you.
+Starting to study to Max. Next 30%.
+This costs you 58418 experience points.
+Studied total 30% of the spell.
+You now have 'Dispel undead' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Sacred Water' is now available to you.
+Starting to study to Max. Next 8%.
+This costs you 212223 experience points.
+Studied total 8% of the spell.
+You now have 'Bless vial' at 67% without special bonuses.
+With current bonuses it is at 67%. Current maximum without bonuses is 67%.
+
+--
+New holy task 'Undead Lords' is now available to you.
+Starting to study to Max. Next 10%.
+This costs you 186968 experience points.
+Studied total 10% of the spell.
+You now have 'Dispel undead' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+
+--
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to Max. Next 20%.
+This costs you 7306 experience points.
+Studied total 20% of the spell.
+You now have 'Banish demons' at 20% without special bonuses.
+With current bonuses it is at 20%. Current maximum without bonuses is 20%.
+
+--
+New holy task 'Vindicator of justice' is now available to you.
+Starting to study to 95%. Next 16%.
+This costs you 1656833 experience points.
+Studied total 11% of the spell.
+You now have 'Dispel evil' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 100%.
+You need 94210 more experience to reach the total cost of 218626 experience.
+--
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to Max. Next 42%.
+This costs you 103449 experience points.
+Trained total 42% of the skill.
+You now have 'Knowledge of dispelling' at 42% without special bonuses.
+With current bonuses it is at 42%. Current maximum without bonuses is 42%.
+
+--
+New holy task 'Good shepherd' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 118317 experience points.
+Studied total 5% of the spell.
+You now have 'Holy lance' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+
+--
+New holy task 'Patron of the Righteous' is now available to you.
+Starting to study to Max. Next 23%.
+This costs you 297837 experience points.
+Studied total 23% of the spell.
+You now have 'Flames of righteousness' at 58% without special bonuses.
+With current bonuses it is at 58%. Current maximum without bonuses is 58%.
+
+New holy task 'Forces of Evil' is now available to you.
+Starting to study to Max. Next 43%.
+This costs you 604219 experience points.
+Studied total 43% of the spell.
+You now have 'Banish demons' at 65% without special bonuses.
+With current bonuses it is at 65%. Current maximum without bonuses is 65%.
+
+--
+New holy task 'Holy deeds' is now available to you.
+Starting to study to Max. Next 22%.
+This costs you 103341 experience points.
+Studied total 22% of the spell.
+You now have 'Cleanse heathen' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+--
+New holy task 'Tears of nun' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 83104 experience points.
+Studied total 5% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+--
+New holy task 'Torment and Agony' is now available to you.
+Starting to study to 80%. Next 20%.
+This costs you 1097924 experience points.
+Studied total 20% of the spell.
+You now have 'Dispel undead' at 80% without special bonuses.
+With current bonuses it is at 80%. Current maximum without bonuses is 100%.
+
+--
+New holy task 'Battle Against Evil' is now available to you.
+Starting to study to Max. Next 49%.
+This costs you 206416 experience points.
+Studied total 49% of the spell.
+You now have 'Holy wind' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+--
+New holy task 'Demons of the soul' is now available to you.
+Starting to train to Max. Next 12%.
+This costs you 167034 experience points.
+Trained total 12% of the skill.
+You now have 'Mastery of shielding' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+--
+New holy task 'Set of White Rose' is now available to you.
+Starting to train to Max. Next 20%.
+This costs you 76605 experience points.
+Trained total 20% of the skill.
+You now have 'Might of the saints' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Might of Holy Vials' is now available to you.
+Starting to train to Max. Next 14%.
+This costs you 232941 experience points.
+Trained total 14% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Abigail's Nightmare' is now available to you.
+Starting to study to Max. Next 13%.
+This costs you 571835 experience points.
+Studied total 13% of the spell.
+You now have 'Holy bolt' at 68% without special bonuses.
+With current bonuses it is at 68%. Current maximum without bonuses is 68%.
+
+--
+New holy task 'Blood of the Innocent' is now available to you.
+Starting to study to Max. Next 14%.
+This costs you 208540 experience points.
+Studied total 14% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+--
+New holy task 'Seed of evil' is now available to you.
+This costs you 25640 experience points.
+Studied total 1% of the spell.
+You now have 'Celestial haven' at 65% without special bonuses.
+With current bonuses it is at 65%. Current maximum without bonuses is 74%.
+
+You need 18137 more experience to reach the total cost of 27376 experience.
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+New holy task 'Hammer of Las' is now available to you.
+New holy task 'Convent's life' is now available to you.
+New holy task 'Heal and nourish' is now available to you.
+Channel nun is now on.
+[23:00]:Abigail, the abbess [nun]: A new nun has joined our sisterhood. She is known as Sister Nuane
+Abbess Abigail tells you, 'Oh, I recognize your soul once belonging to an
+elder nun. Your tasks, purity and age are all restored from your previous
+life.'
+Abbess Abigail hands you the Fat Ruler as a token of your elderhood.
+--
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+Starting to study to 5%. Next 5%.
+This costs you 665 experience points.
+Studied total 5% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+0
+--
+New holy task 'Might of Holy Lore' is now available to you.
+Starting to study to Max. Next 41%.
+This costs you 258495 experience points.
+Studied total 41% of the spell.
+You now have 'Holy hand' at 66% without special bonuses.
+With current bonuses it is at 66%. Current maximum without bonuses is 66%.
+
+--
+New holy task 'True Devotee of Las' is now available to you.
+Starting to study to Max. Next 30%.
+This costs you 22987 experience points.
+Studied total 30% of the spell.
+You now have 'Soul shield' at 35% without special bonuses.
+With current bonuses it is at 35%. Current maximum without bonuses is 35%.
+
+--
+New holy task 'Happy bees' is now available to you.
+Starting to train to 43%. Next 13%.
+This costs you 42708 experience points.
+Trained total 13% of the skill.
+You now have 'Candlestick making' at 43% without special bonuses.
+With current bonuses it is at 43%. Current maximum without bonuses is 52%.
+0
+--
+New holy task 'Memento mei' is now available to you.
+Starting to study to 30%. Next 9%.
+This costs you 14379 experience points.
+Studied total 9% of the spell.
+You now have 'Dispel undead' at 30% without special bonuses.
+With current bonuses it is at 30%. Current maximum without bonuses is 60%.
+0
+--
+New holy task 'Aid the Underdogs' is now available to you.
+Starting to study to 50%. Next 10%.
+This costs you 75731 experience points.
+Studied total 10% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 67%.
+0
+--
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to 70%. Next 20%.
+This costs you 643130 experience points.
+Studied total 20% of the spell.
+You now have 'Dispel evil' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+
+--
+New holy task 'Undead Lords' is now available to you.
+Starting to study to 72%. Next 32%.
+This costs you 776806 experience points.
+Studied total 32% of the spell.
+You now have 'Dispel undead' at 72% without special bonuses.
+With current bonuses it is at 72%. Current maximum without bonuses is 72%.
+
+--
+New holy task 'Patron of the Righteous' is now available to you.
+Starting to study to 58%. Next 51%.
+This costs you 346134 experience points.
+Studied total 51% of the spell.
+You now have 'Flames of righteousness' at 58% without special bonuses.
+With current bonuses it is at 58%. Current maximum without bonuses is 58%.
+
+--
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to 42%. Next 42%.
+This costs you 76722 experience points.
+Trained total 42% of the skill.
+You now have 'Knowledge of dispelling' at 42% without special bonuses.
+With current bonuses it is at 42%. Current maximum without bonuses is 42%.
+
+--
+New holy task 'Pilgrimation' is now available to you.
+Starting to train to 75%. Next 45%.
+This costs you 460003 experience points.
+Trained total 45% of the skill.
+You now have 'Exorcize' at 75% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 75%.
+
+--
+New holy task 'Slaad hunt' is now available to you.
+Starting to train to 90%. Next 25%.
+This costs you 901398 experience points.
+Trained total 25% of the skill.
+You now have 'Cast holy' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+
+--
+New holy task 'Sacred Water' is now available to you.
+Starting to study to 67%. Next 17%.
+This costs you 353431 experience points.
+Studied total 17% of the spell.
+You now have 'Bless vial' at 67% without special bonuses.
+With current bonuses it is at 67%. Current maximum without bonuses is 67%.
+
+--
+New holy task 'Holy deeds' is now available to you.
+Starting to study to Max. Next 52%.
+This costs you 121232 experience points.
+Studied total 52% of the spell.
+You now have 'Cleanse heathen' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+--
+New holy task 'Nun's daily work' is now available to you.
+Starting to study to 74%. Next 24%.
+This costs you 212256 experience points.
+Studied total 24% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+New holy task 'Forces of Evil' is now available to you.
+Starting to study to 65%. Next 39%.
+This costs you 611341 experience points.
+Studied total 39% of the spell.
+You now have 'Banish demons' at 65% without special bonuses.
+With current bonuses it is at 65%. Current maximum without bonuses is 65%.
+
+--
+New holy task 'Tears of nun' is now available to you.
+This costs you 18954 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+[23:41:30] hp 396/525  sp 1140/1159  ep 124/259  xp 391420  $ 0/769515  wimpy off
+--
+New holy task 'Seed of evil' is now available to you.
+Starting to study to Max. Next 44%.
+This costs you 485447 experience points.
+Studied total 44% of the spell.
+You now have 'Celestial haven' at 69% without special bonuses.
+With current bonuses it is at 69%. Current maximum without bonuses is 69%.
+
+--
+New holy task 'Blood of the Innocent' is now available to you.
+Starting to study to Max. Next 39%.
+This costs you 302297 experience points.
+Studied total 39% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+--
+New holy task 'Vindicator of justice' is now available to you.
+Starting to study to 91%. Next 21%.
+This costs you 2643578 experience points.
+Studied total 21% of the spell.
+You now have 'Dispel evil' at 91% without special bonuses.
+With current bonuses it is at 91%. Current maximum without bonuses is 91%.
+
+--
+New holy task 'Torment and Agony' is now available to you.
+Starting to study to 91%. Next 19%.
+This costs you 2213568 experience points.
+Studied total 19% of the spell.
+You now have 'Dispel undead' at 91% without special bonuses.
+With current bonuses it is at 91%. Current maximum without bonuses is 91%.
+
+--
+New holy task 'Set of White Rose' is now available to you.
+Starting to train to Max. Next 35%.
+This costs you 504687 experience points.
+Trained total 35% of the skill.
+You now have 'Might of the saints' at 65% without special bonuses.
+With current bonuses it is at 65%. Current maximum without bonuses is 65%.
+
+--
+New holy task 'Demons of the soul' is now available to you.
+Starting to train to Max. Next 42%.
+This costs you 185662 experience points.
+Trained total 42% of the skill.
+You now have 'Mastery of shielding' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+--
+New holy task 'Abigail's Nightmare' is now available to you.
+Starting to train to Max. Next 25%.
+This costs you 5359885 experience points.
+Trained total 23% of the skill.
+You now have 'Power of faith' at 60% without special bonuses.
+With current bonuses it is at 62%. Current maximum without bonuses is 62%.
+You need 126613 more experience to reach the total cost of 521094 experience.
+--
+New holy task 'Battle Against Evil' is now available to you.
+Starting to study to 71%. Next 38%.
+This costs you 904127 experience points.
+Studied total 38% of the spell.
+You now have 'Holy wind' at 71% without special bonuses.
+With current bonuses it is at 71%. Current maximum without bonuses is 71%.
+
+--
+New holy task 'Might of Holy Vials' is now available to you.
+Starting to train to Max. Next 45%.
+This costs you 231845 experience points.
+Trained total 45% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Cry for help' is now available to you.
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+--
+New holy task 'Vials and Stamina' is now available to you.
+This costs you 20278 experience points.
+Trained total 1% of the skill.
+You now have 'Vial throwing' at 61% without special bonuses.
+With current bonuses it is at 61%. Current maximum without bonuses is 64%.
+
+[14:13:49] hp 284/525  sp 1101/1352  ep 46/247  xp 246025  $ 0/736878  wimpy off
+--
+New holy task 'Angelique's cross' is now available to you.
+This costs you 27173 experience points.
+Trained total 1% of the skill.
+You now have 'Mastery of shielding' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 100%.
+
+[14:14:25] hp 313/525  sp 1331/1352  ep 61/247  xp 246025  $ 0/736878  wimpy off
+--
+New holy task 'Good shepherd' is now available to you.
+Starting to study to 55%. Next 54%.
+This costs you 344450 experience points.
+Studied total 54% of the spell.
+You now have 'Holy lance' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+This costs you 612 experience points.
+Studied total 5% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+Starting to study to 11%. Next 4%.
+This costs you 138 experience points.
+--
+New holy task 'Happy bees' is now available to you.
+This costs you 17991 experience points.
+Trained total 13% of the skill.
+You now have 'Candlestick making' at 43% without special bonuses.
+With current bonuses it is at 43%. Current maximum without bonuses is 52%.
+Starting to study to 15%. Next 7%.
+This costs you 616 experience points.
+--
+New holy task 'Convent's life' is now available to you.
+This costs you 4154 experience points.
+Studied total 5% of the spell.
+You now have 'Cure serious wounds' at 40% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+Starting to study to 20%. Next 5%.
+This costs you 2249 experience points.
+--
+New holy task 'Might of Holy Lore' is now available to you.
+This costs you 17346 experience points.
+Studied total 7% of the spell.
+You now have 'Holy hand' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 66%.
+You pay 6760 gold and advance a level.
+Wisdom of holy teachings seems much clearer now.
+--
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+This costs you 40641 experience points.
+Trained total 40% of the skill.
+You now have 'Knowledge of dispelling' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 42%.
+Starting to train to 10%. Next 10%.
+This costs you 115422 experience points.
+--
+New holy task 'True Devotee of Las' is now available to you.
+This costs you 178656 experience points.
+Trained total 55% of the skill.
+You now have 'Mana control' at 75% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 75%.
+Starting to train to Max. Next 15%.
+This costs you 645697 experience points.
+--
+New holy task 'Slaad hunt' is now available to you.
+This costs you 146822 experience points.
+Trained total 30% of the skill.
+You now have 'Cast heal' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+Starting to train to Max. Next 75%.
+This costs you 243910 experience points.
+--
+New holy task 'Pilgrimation' is now available to you.
+This costs you 243881 experience points.
+Trained total 35% of the skill.
+You now have 'Exorcize' at 75% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 75%.
+Damogran [newbie]: Introducing a new player to BatMUD: Yugi.
+Onyxsablet [newbie]: no not that lq...
+--
+New holy task 'Vials and Stamina' is now available to you.
+This costs you 127941 experience points.
+Trained total 14% of the skill.
+You now have 'Vial throwing' at 64% without special bonuses.
+With current bonuses it is at 64%. Current maximum without bonuses is 64%.
+Starting to train to Max. Next 20%.
+This costs you 2355415 experience points.
+--
+New holy task 'Demons of the soul' is now available to you.
+This costs you 100397 experience points.
+Trained total 22% of the skill.
+You now have 'Mastery of shielding' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+                                ,----------------------.
+                                |Percentiles| Adv. cost|
+--
+New holy task 'Hammer of Las' is now available to you.
+This costs you 272477 experience points.
+Trained total 50% of the skill.
+You now have 'Quick chant' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+                                ,----------------------.
+                                |Percentiles| Adv. cost|
+--
+New holy task 'Might of Holy Vials' is now available to you.
+This costs you 325614 experience points.
+Trained total 45% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+Starting to train to Max. Next 17%.
+This costs you 665272 experience points.
+--
+New holy task 'Nun's daily work' is now available to you.
+This costs you 221590 experience points.
+Studied total 80% of the spell.
+You now have 'Remove scar' at 80% without special bonuses.
+With current bonuses it is at 80%. Current maximum without bonuses is 89%.
+Starting to study to 80%. Next 80%.
+This costs you 221590 experience points.
+--
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+This costs you 13163 experience points.
+Studied total 44% of the spell.
+You now have 'Summon' at 44% without special bonuses.
+With current bonuses it is at 44%. Current maximum without bonuses is 44%.
+Starting to study to Max. Next 6%.
+This costs you 39906 experience points.
+--
+New holy task 'Heal and nourish' is now available to you.
+This costs you 54686 experience points.
+Studied total 20% of the spell.
+You now have 'Cure serious wounds' at 60% without special bonuses.
+With current bonuses it is at 80%. Current maximum without bonuses is 60%.
+                                ,----------------------.
+                                |Percentiles| Adv. cost|
+--
+New holy task 'Sacred Water' is now available to you.
+This costs you 154441 experience points.
+Studied total 17% of the spell.
+You now have 'Bless vial' at 67% without special bonuses.
+With current bonuses it is at 67%. Current maximum without bonuses is 67%.
+Walciz tells Toivo and you '"on kattokaas varaa pistää..."' 
+Starting to study to Max. Next 40%.
+--
+New holy task 'Blood of the Innocent' is now available to you.
+This costs you 134387 experience points.
+Studied total 39% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+Starting to study to Max. Next 23%.
+New holy task 'Undead Lords' is now available to you.
+This costs you 171587 experience points.
+Studied total 23% of the spell.
+You now have 'Dispel undead' at 63% without special bonuses.
+With current bonuses it is at 63%. Current maximum without bonuses is 63%.
+Starting to study to Max. Next 15%.
+New holy task 'Prove thy Strenght' is now available to you.
+This costs you 95370 experience points.
+Studied total 15% of the spell.
+You now have 'Dispel evil' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+Walciz tells Toivo and you 'sillon expaa enempi kun kurpalla!' 
+You tell Toivo and Walciz 'shaddup :)'
+--
+New holy task 'Patron of the Righteous' is now available to you.
+This costs you 193964 experience points.
+Studied total 48% of the spell.
+You now have 'Flames of righteousness' at 58% without special bonuses.
+With current bonuses it is at 58%. Current maximum without bonuses is 58%.
+                                ,----------------------.
+                                |Percentiles| Adv. cost|
+--
+New holy task 'Battle Against Evil' is now available to you.
+This costs you 613852 experience points.
+Studied total 61% of the spell.
+You now have 'Holy wind' at 71% without special bonuses.
+With current bonuses it is at 71%. Current maximum without bonuses is 71%.
+Starting to study to Max. Next 39%.
+This costs you 535177 experience points.
+--
+New holy task 'Set of White Rose' is now available to you.
+This costs you 24256 experience points.
+Trained total 10% of the skill.
+You now have 'Might of the saints' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+                                ,----------------------.
+                                |Percentiles| Adv. cost|
+New holy task 'Tears of nun' is now available to you.
+This costs you 11967 experience points.
+Studied total 1% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+You have 'Protection from evil' at 77% and you may only train it up to 77%.
+Name: Daerid the grey Elf
+New holy task 'Vindicator of justice' is now available to you.
+This costs you 2443562 experience points.
+Studied total 21% of the spell.
+You now have 'Dispel evil' at 91% without special bonuses.
+With current bonuses it is at 91%. Current maximum without bonuses is 91%.
+Ayli [newbie]: depends on whether or not the cute sheep are good or evil
+                                ,----------------------.
+--
+New holy task 'Forces of Evil' is now available to you.
+This costs you 298644 experience points.
+Studied total 5% of the spell.
+You now have 'Banish demons' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+                                ,----------------------.
+                                |Percentiles| Adv. cost|
+New holy task 'Holy deeds' is now available to you.
+New holy task 'Cry for help' is now available to you.
+Running on a dual AMD Athlon MP based system with 2GB memory (help hardware).
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+Read: help topics, help multiple characters
+You have new news in groups general, ideas-wanted and sales.
+Moving to starting location.
+New holy task 'Demons of the soul' is now available to you.
+Channel nun is now on.
+Abigail, the abbess [nun]: A new nun has joined our sisterhood. She is known as Sister Daerid
+Abbess Abigail tells you, 'I recognize the spirit of a nun in your soul but
+you have lost much of that you achieved long time ago.'
+Gru [sales]: nightfall 4m
+grep urity show skills
+--
+New holy task 'Find valentina' is now available to you.
+New holy task 'Feed the Poor' is now available to you.
+Starting to study to 5%. Next 5%.
+This costs you 506 experience points.
+Studied total 5% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+0
+New holy task 'Happy bees' is now available to you.
+Starting to train to 43%. Next 13%.
+This costs you 62386 experience points.
+Trained total 13% of the skill.
+You now have 'Candlestick making' at 43% without special bonuses.
+With current bonuses it is at 43%. Current maximum without bonuses is 52%.
+0
+--
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to 17%. Next 12%.
+This costs you 3219 experience points.
+Studied total 12% of the spell.
+You now have 'Banish demons' at 17% without special bonuses.
+With current bonuses it is at 17%. Current maximum without bonuses is 35%.
+0
+--
+New holy task 'Convent's life' is now available to you.
+Starting to study to 40%. Next 5%.
+This costs you 10938 experience points.
+Studied total 5% of the spell.
+You now have 'Cure serious wounds' at 40% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+0
+--
+New holy task 'Might of Holy Lore' is now available to you.
+Starting to study to 55%. Next 7%.
+This costs you 38640 experience points.
+Studied total 7% of the spell.
+You now have 'Holy hand' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 66%.
+0
+--
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to Max. Next 10%.
+This costs you 316327 experience points.
+Trained total 10% of the skill.
+You now have 'Quick chant' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+
+--
+New holy task 'Heal and nourish' is now available to you.
+Starting to study to Max. Next 20%.
+This costs you 119314 experience points.
+Studied total 20% of the spell.
+You now have 'Cure serious wounds' at 60% without special bonuses.
+With current bonuses it is at 80%. Current maximum without bonuses is 60%.
+
+--
+New holy task 'Aid the Underdogs' is now available to you.
+Starting to study to 50%. Next 10%.
+This costs you 57620 experience points.
+Studied total 10% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 67%.
+0
+--
+New holy task 'Set of White Rose' is now available to you.
+Starting to train to Max. Next 20%.
+This costs you 82990 experience points.
+Trained total 20% of the skill.
+You now have 'Might of the saints' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to Max. Next 7%.
+This costs you 56142 experience points.
+Trained total 7% of the skill.
+You now have 'Knowledge of dispelling' at 42% without special bonuses.
+With current bonuses it is at 42%. Current maximum without bonuses is 42%.
+
+--
+New holy task 'Might of Holy Vials' is now available to you.
+Starting to train to Max. Next 50%.
+This costs you 340000 experience points.
+Trained total 50% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to 44%. Next 23%.
+This costs you 31832 experience points.
+Studied total 23% of the spell.
+You now have 'Summon' at 44% without special bonuses.
+With current bonuses it is at 44%. Current maximum without bonuses is 44%.
+
+--
+New holy task 'Cry for help' is now available to you.
+Starting to study to Max. Next 50%.
+This costs you 72804 experience points.
+Studied total 50% of the spell.
+You now have 'Word of recall' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+
+--
+New holy task 'Vindicator of justice' is now available to you.
+Starting to train to 60%. Next 2%.
+This costs you 33552 experience points.
+Trained total 2% of the skill.
+You now have 'Sewing' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 100%.
+0
+--
+New holy task 'Undead Lords' is now available to you.
+Starting to study to Max. Next 23%.
+This costs you 282030 experience points.
+Studied total 23% of the spell.
+You now have 'Dispel undead' at 63% without special bonuses.
+With current bonuses it is at 63%. Current maximum without bonuses is 63%.
+
+--
+New holy task 'Vials and Stamina' is now available to you.
+Starting to train to Max. Next 14%.
+This costs you 337997 experience points.
+Trained total 14% of the skill.
+You now have 'Vial throwing' at 64% without special bonuses.
+With current bonuses it is at 64%. Current maximum without bonuses is 64%.
+
+--
+New holy task 'Sacred Water' is now available to you.
+Starting to study to Max. Next 17%.
+This costs you 268911 experience points.
+Studied total 17% of the spell.
+You now have 'Bless vial' at 67% without special bonuses.
+With current bonuses it is at 67%. Current maximum without bonuses is 67%.
+
+--
+New holy task 'Slaad hunt' is now available to you.
+Starting to train to Max. Next 15%.
+This costs you 302632 experience points.
+Trained total 15% of the skill.
+You now have 'Cast heal' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+
+--
+New holy task 'Pilgrimation' is now available to you.
+Starting to train to 50%. Next 10%.
+This costs you 65448 experience points.
+Trained total 10% of the skill.
+You now have 'Exorcize' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 75%.
+0
+--
+New holy task 'Forces of Evil' is now available to you.
+Starting to study to Max. Next 14%.
+This costs you 606657 experience points.
+Studied total 14% of the spell.
+You now have 'Banish demons' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+New holy task 'Battle Against Evil' is now available to you.
+Starting to study to 60%. Next 10%.
+This costs you 174405 experience points.
+Studied total 10% of the spell.
+You now have 'Holy wind' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 71%.
+
+--
+New holy task 'True Devotee of Las' is now available to you.
+Starting to train to 60%. Next 10%.
+This costs you 95168 experience points.
+Trained total 10% of the skill.
+You now have 'Mana control' at 60% without special bonuses.
+With current bonuses it is at 75%. Current maximum without bonuses is 75%.
+
+--
+New holy task 'Nun's daily work' is now available to you.
+Starting to study to Max. Next 4%.
+This costs you 44827 experience points.
+Studied total 4% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+New holy task 'Blood of the Innocent' is now available to you.
+Starting to study to Max. Next 9%.
+This costs you 122206 experience points.
+Studied total 9% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+--
+New holy task 'Patron of the Righteous' is now available to you.
+Starting to study to Max. Next 8%.
+This costs you 128714 experience points.
+Studied total 8% of the spell.
+You now have 'Flames of righteousness' at 58% without special bonuses.
+With current bonuses it is at 58%. Current maximum without bonuses is 58%.
+
+New holy task 'Tears of nun' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 64635 experience points.
+Studied total 5% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+New holy task 'Abigail's Nightmare' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+New holy task 'Torment and Agony' is now available to you.
+This costs you 60971 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel undead' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 91%.
+
+- oho
+New holy task 'Seed of evil' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 106878 experience points.
+Studied total 5% of the spell.
+You now have 'Celestial haven' at 68% without special bonuses.
+With current bonuses it is at 68%. Current maximum without bonuses is 68%.
+
+New holy task 'Angelique's cross' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+
+
+
+
+
+--
+New holy task 'Slaad hunt' is now available to you.
+You now have 'Cast dispel' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+New holy task 'Memento mei' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+New holy task 'Good shepherd' is now available to you.
+Starting to study to Max. Next 1%.
+This costs you 27406 experience points.
+Studied total 1% of the spell.
+You now have 'Holy lance' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+
+--
+New holy task 'Convent's life' is now available to you.
+This costs you 3030 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 39% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 70%.
+This costs you 3280 experience points.
+Studied total 1% of the spell.
+--
+New holy task 'Heal and nourish' is now available to you.
+This costs you 4133 experience points.
+Studied total 1% of the spell.
+You now have 'Cure serious wounds' at 43% without special bonuses.
+With current bonuses it is at 63%. Current maximum without bonuses is 70%.
+This costs you 4457 experience points.
+Studied total 1% of the spell.
+--
+New holy task 'Save the Orphans' is now available to you.
+Running on a dual Intel Xeon (3.8GHz) 64-bit based system with 8GB DDR2 memory
+(help hardware).
+
+Disclaimer: This service is free and without warranty or guarantee of 
+            accuracy, reliability or security.
+
+--
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to Max. Next 10%.
+This costs you 42472 experience points.
+Studied total 10% of the spell.
+You now have 'Summon' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+Rodolf Routaamp (fall+): ramonaki hakkaa: kivast
+--
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to Max. Next 15%.
+This costs you 373757 experience points.
+Trained total 15% of the skill.
+You now have 'Quick chant' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+Ramona smiles and says 'Isn't the view magnificent?'
+--
+New holy task 'Nun's daily work' is now available to you.
+Starting to study to 95%. Next 95%.
+This costs you 1250201 experience points.
+Studied total 95% of the spell.
+You now have 'Remove scar' at 95% without special bonuses.
+With current bonuses it is at 95%. Current maximum without bonuses is 100%.
+Name: Ggr Pupunen the Duck
+--
+New holy task 'Cry for help' is now available to you.
+This costs you 3045 experience points.
+Studied total 1% of the spell.
+You now have 'Word of recall' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 100%.
+This costs you 3221 experience points.
+Studied total 1% of the spell.
+--
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+Starting to study to 5%. Next 5%.
+This costs you 650 experience points.
+Studied total 5% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+0
+--
+New holy task 'True Devotee of Las' is now available to you.
+Starting to study to Max. Next 25%.
+This costs you 80035 experience points.
+Studied total 25% of the spell.
+You now have 'Soul shield' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Might of Holy Lore' is now available to you.
+This costs you 6570 experience points.
+Studied total 1% of the spell.
+You now have 'Holy hand' at 51% without special bonuses.
+With current bonuses it is at 51%. Current maximum without bonuses is 66%.
+
+This costs you 7039 experience points.
+--
+New holy task 'Happy bees' is now available to you.
+Starting to train to Max. Next 18%.
+This costs you 79363 experience points.
+Trained total 18% of the skill.
+You now have 'Candlestick making' at 45% without special bonuses.
+With current bonuses it is at 45%. Current maximum without bonuses is 45%.
+
+--
+New holy task 'Aid the Underdogs' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 44082 experience points.
+Studied total 5% of the spell.
+You now have 'Bless vial' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Slaad hunt' is now available to you.
+This costs you 89279 experience points.
+Trained total 1% of the skill.
+You now have 'Cast holy' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+
+You have 'Cast holy' at 90% and you may only train it up to 90%.
+--
+New holy task 'Pilgrimation' is now available to you.
+Starting to train to Max. Next 27%.
+This costs you 122611 experience points.
+Trained total 27% of the skill.
+You now have 'Exorcize' at 53% without special bonuses.
+With current bonuses it is at 53%. Current maximum without bonuses is 53%.
+
+--
+New holy task 'Vials and Stamina' is now available to you.
+Starting to train to Max. Next 15%.
+This costs you 324632 experience points.
+Trained total 15% of the skill.
+You now have 'Vial throwing' at 64% without special bonuses.
+With current bonuses it is at 64%. Current maximum without bonuses is 64%.
+
+--
+New holy task 'Memento mei' is now available to you.
+Starting to study to Max. Next 30%.
+This costs you 58418 experience points.
+Studied total 30% of the spell.
+You now have 'Dispel undead' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Sacred Water' is now available to you.
+Starting to study to Max. Next 8%.
+This costs you 212223 experience points.
+Studied total 8% of the spell.
+You now have 'Bless vial' at 67% without special bonuses.
+With current bonuses it is at 67%. Current maximum without bonuses is 67%.
+
+--
+New holy task 'Undead Lords' is now available to you.
+Starting to study to Max. Next 10%.
+This costs you 186968 experience points.
+Studied total 10% of the spell.
+You now have 'Dispel undead' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 60%.
+
+--
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to Max. Next 20%.
+This costs you 7306 experience points.
+Studied total 20% of the spell.
+You now have 'Banish demons' at 20% without special bonuses.
+With current bonuses it is at 20%. Current maximum without bonuses is 20%.
+
+--
+New holy task 'Vindicator of justice' is now available to you.
+Starting to study to 95%. Next 16%.
+This costs you 1656833 experience points.
+Studied total 11% of the spell.
+You now have 'Dispel evil' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 100%.
+You need 94210 more experience to reach the total cost of 218626 experience.
+--
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to Max. Next 42%.
+This costs you 103449 experience points.
+Trained total 42% of the skill.
+You now have 'Knowledge of dispelling' at 42% without special bonuses.
+With current bonuses it is at 42%. Current maximum without bonuses is 42%.
+
+--
+New holy task 'Good shepherd' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 118317 experience points.
+Studied total 5% of the spell.
+You now have 'Holy lance' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+
+--
+New holy task 'Patron of the Righteous' is now available to you.
+Starting to study to Max. Next 23%.
+This costs you 297837 experience points.
+Studied total 23% of the spell.
+You now have 'Flames of righteousness' at 58% without special bonuses.
+With current bonuses it is at 58%. Current maximum without bonuses is 58%.
+
+New holy task 'Forces of Evil' is now available to you.
+Starting to study to Max. Next 43%.
+This costs you 604219 experience points.
+Studied total 43% of the spell.
+You now have 'Banish demons' at 65% without special bonuses.
+With current bonuses it is at 65%. Current maximum without bonuses is 65%.
+
+--
+New holy task 'Holy deeds' is now available to you.
+Starting to study to Max. Next 22%.
+This costs you 103341 experience points.
+Studied total 22% of the spell.
+You now have 'Cleanse heathen' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+--
+New holy task 'Tears of nun' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 83104 experience points.
+Studied total 5% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+--
+New holy task 'Torment and Agony' is now available to you.
+Starting to study to 80%. Next 20%.
+This costs you 1097924 experience points.
+Studied total 20% of the spell.
+You now have 'Dispel undead' at 80% without special bonuses.
+With current bonuses it is at 80%. Current maximum without bonuses is 100%.
+
+--
+New holy task 'Battle Against Evil' is now available to you.
+Starting to study to Max. Next 49%.
+This costs you 206416 experience points.
+Studied total 49% of the spell.
+You now have 'Holy wind' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+--
+New holy task 'Demons of the soul' is now available to you.
+Starting to train to Max. Next 12%.
+This costs you 167034 experience points.
+Trained total 12% of the skill.
+You now have 'Mastery of shielding' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+--
+New holy task 'Set of White Rose' is now available to you.
+Starting to train to Max. Next 20%.
+This costs you 76605 experience points.
+Trained total 20% of the skill.
+You now have 'Might of the saints' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Might of Holy Vials' is now available to you.
+Starting to train to Max. Next 14%.
+This costs you 232941 experience points.
+Trained total 14% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Abigail's Nightmare' is now available to you.
+Starting to study to Max. Next 13%.
+This costs you 571835 experience points.
+Studied total 13% of the spell.
+You now have 'Holy bolt' at 68% without special bonuses.
+With current bonuses it is at 68%. Current maximum without bonuses is 68%.
+
+--
+New holy task 'Blood of the Innocent' is now available to you.
+Starting to study to Max. Next 14%.
+This costs you 208540 experience points.
+Studied total 14% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+--
+New holy task 'Seed of evil' is now available to you.
+This costs you 25640 experience points.
+Studied total 1% of the spell.
+You now have 'Celestial haven' at 65% without special bonuses.
+With current bonuses it is at 65%. Current maximum without bonuses is 74%.
+
+You need 18137 more experience to reach the total cost of 27376 experience.
+
+--
+New holy task 'Abigail's Nightmare' is now available to you.
+You now have 'Purity' at 20% without special bonuses.
+With current bonuses it is at 20%. Current maximum without bonuses is 20%.
+New holy task 'Convent's life' is now available to you.
+New holy task 'Heal and nourish' is now available to you.
+Starting to study to 50%. Next 30%.
+This costs you 83625 experience points.
+Studied total 30% of the spell.
+You now have 'Cure serious wounds' at 50% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+
+--
+New holy task 'Hammer of Las' is now available to you.
+Starting to train to Max. Next 50%.
+This costs you 11009579 experience points.
+Trained total 50% of the skill.
+You now have 'Quick chant' at 100% without special bonuses.
+With current bonuses it is at 100%. Current maximum without bonuses is 100%.
+Fil tells you 'to?'
+--
+New holy task 'Evil thorn in the flesh of good' is now available to you.
+Starting to study to 90%. Next 90%.
+This costs you 1137923 experience points.
+Studied total 90% of the spell.
+You now have 'Summon' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 100%.
+Ramona stares to the sky and smiles happily.
+--
+New holy task 'Feed the Poor' is now available to you.
+New holy task 'Find valentina' is now available to you.
+Starting to study to 5%. Next 5%.
+This costs you 650 experience points.
+Studied total 5% of the spell.
+You now have 'Dispel evil' at 5% without special bonuses.
+With current bonuses it is at 5%. Current maximum without bonuses is 10%.
+0
+--
+New holy task 'Happy bees' is now available to you.
+Starting to train to 43%. Next 13%.
+This costs you 57585 experience points.
+Trained total 13% of the skill.
+You now have 'Candlestick making' at 43% without special bonuses.
+With current bonuses it is at 43%. Current maximum without bonuses is 52%.
+0
+--
+New holy task 'Slaad hunt' is now available to you.
+Starting to train to Max. Next 40%.
+This costs you 1418487 experience points.
+Trained total 40% of the skill.
+You now have 'Cast dispel' at 90% without special bonuses.
+With current bonuses it is at 90%. Current maximum without bonuses is 90%.
+
+--
+New holy task 'Memento mei' is now available to you.
+Starting to study to Max. Next 25%.
+This costs you 56778 experience points.
+Studied total 25% of the spell.
+You now have 'Dispel undead' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Might of Holy Lore' is now available to you.
+Starting to study to Max. Next 24%.
+This costs you 219881 experience points.
+Studied total 24% of the spell.
+You now have 'Holy hand' at 66% without special bonuses.
+With current bonuses it is at 66%. Current maximum without bonuses is 66%.
+
+New holy task 'True Devotee of Las' is now available to you.
+Starting to study to Max. Next 50%.
+This costs you 383390 experience points.
+Studied total 50% of the spell.
+You now have 'Soul shield' at 70% without special bonuses.
+With current bonuses it is at 70%. Current maximum without bonuses is 70%.
+
+New holy task 'Aid the Underdogs' is now available to you.
+Starting to study to Max. Next 24%.
+This costs you 227586 experience points.
+Studied total 24% of the spell.
+You now have 'Bless vial' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+--
+New holy task 'Prove thy Strenght' is now available to you.
+Starting to study to 17%. Next 12%.
+This costs you 4143 experience points.
+Studied total 12% of the spell.
+You now have 'Banish demons' at 17% without special bonuses.
+With current bonuses it is at 17%. Current maximum without bonuses is 35%.
+0
+--
+New holy task 'Virtuosic nun of Holy Might' is now available to you.
+Starting to train to 40%. Next 40%.
+This costs you 85397 experience points.
+Trained total 40% of the skill.
+You now have 'Knowledge of dispelling' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 42%.
+0
+--
+New holy task 'Demons of the soul' is now available to you.
+Starting to train to Max. Next 52%.
+This costs you 252431 experience points.
+Trained total 52% of the skill.
+You now have 'Mastery of shielding' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 52%.
+
+New holy task 'Set of White Rose' is now available to you.
+Starting to train to Max. Next 10%.
+This costs you 55390 experience points.
+Trained total 10% of the skill.
+You now have 'Might of the saints' at 40% without special bonuses.
+With current bonuses it is at 40%. Current maximum without bonuses is 40%.
+
+--
+New holy task 'Might of Holy Vials' is now available to you.
+Starting to train to Max. Next 45%.
+This costs you 312604 experience points.
+Trained total 45% of the skill.
+You now have 'Mastery of holy vials' at 50% without special bonuses.
+With current bonuses it is at 50%. Current maximum without bonuses is 50%.
+
+--
+New holy task 'Battle Against Evil' is now available to you.
+Starting to study to Max. Next 61%.
+This costs you 916547 experience points.
+Studied total 61% of the spell.
+You now have 'Holy wind' at 71% without special bonuses.
+With current bonuses it is at 71%. Current maximum without bonuses is 71%.
+
+--
+New holy task 'Sacred Water' is now available to you.
+This costs you 20704 experience points.
+Studied total 1% of the spell.
+You now have 'Bless vial' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 67%.
+
+This costs you 22167 experience points.
+--
+New holy task 'Nun's daily work' is now available to you.
+This costs you 15662 experience points.
+Studied total 1% of the spell.
+You now have 'Identify relic' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+                                ,----------------------------.
+--
+New holy task 'Holy deeds' is now available to you.
+This costs you 5552 experience points.
+Studied total 1% of the spell.
+You now have 'Cleanse heathen' at 45% without special bonuses.
+With current bonuses it is at 45%. Current maximum without bonuses is 52%.
+
+This costs you 5984 experience points.
+--
+New holy task 'Blood of the Innocent' is now available to you.
+This costs you 22841 experience points.
+Studied total 1% of the spell.
+You now have 'Heavenly protection' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
+Valentina says 'Las is your redemption.'
+--
+New holy task 'Forces of Evil' is now available to you.
+This costs you 13481 experience points.
+Studied total 1% of the spell.
+You now have 'Flames of righteousness' at 49% without special bonuses.
+With current bonuses it is at 49%. Current maximum without bonuses is 58%.
+
+This costs you 14559 experience points.
+--
+New holy task 'Patron of the Righteous' is now available to you.
+This costs you 16949 experience points.
+Studied total 1% of the spell.
+You now have 'Flames of righteousness' at 52% without special bonuses.
+With current bonuses it is at 52%. Current maximum without bonuses is 58%.
+
+This costs you 18269 experience points.
+--
+New holy task 'Undead Lords' is now available to you.
+This costs you 19014 experience points.
+Studied total 1% of the spell.
+You now have 'Dispel undead' at 56% without special bonuses.
+With current bonuses it is at 56%. Current maximum without bonuses is 63%.
+
+This costs you 20423 experience points.
+--
+New holy task 'Vials and Stamina' is now available to you.
+This costs you 27341 experience points.
+Trained total 1% of the skill.
+You now have 'Vial throwing' at 61% without special bonuses.
+With current bonuses it is at 61%. Current maximum without bonuses is 64%.
+
+This costs you 29245 experience points.
+--
+New holy task 'Pilgrimation' is now available to you.
+This costs you 6609 experience points.
+Trained total 1% of the skill.
+You now have 'Exorcize' at 47% without special bonuses.
+With current bonuses it is at 47%. Current maximum without bonuses is 75%.
+
+This costs you 7098 experience points.
+--
+New holy task 'Cry for help' is now available to you.
+This costs you 3045 experience points.
+Studied total 1% of the spell.
+You now have 'Word of recall' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 70%.
+
+This costs you 3221 experience points.
+--
+New holy task 'Angelique's cross' is now available to you.
+This costs you 36637 experience points.
+Trained total 1% of the skill.
+You now have 'Mastery of shielding' at 60% without special bonuses.
+With current bonuses it is at 60%. Current maximum without bonuses is 100%.
+
+This costs you 39301 experience points.
+--
+New holy task 'Good shepherd' is now available to you.
+Starting to study to Max. Next 55%.
+This costs you 337125 experience points.
+Studied total 55% of the spell.
+You now have 'Holy lance' at 55% without special bonuses.
+With current bonuses it is at 55%. Current maximum without bonuses is 55%.
+
+--
+New holy task 'Vindicator of justice' is now available to you.
+Starting to study to Max. Next 36%.
+This costs you 3129796 experience points.
+Studied total 36% of the spell.
+You now have 'Dispel evil' at 91% without special bonuses.
+With current bonuses it is at 91%. Current maximum without bonuses is 91%.
+
+--
+New holy task 'Seed of evil' is now available to you.
+Starting to study to Max. Next 21%.
+This costs you 541600 experience points.
+Studied total 21% of the spell.
+You now have 'Celestial haven' at 74% without special bonuses.
+With current bonuses it is at 74%. Current maximum without bonuses is 74%.
+
+--
+New holy task 'Tears of nun' is now available to you.
+Starting to study to Max. Next 5%.
+This costs you 83104 experience points.
+Studied total 5% of the spell.
+You now have 'Protection from evil' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 77%.
+
+--
+New holy task 'Torment and Agony' is now available to you.
+This costs you 34304 experience points.
+Studied total 1% of the spell.
+You now have 'Saintly touch' at 77% without special bonuses.
+With current bonuses it is at 77%. Current maximum without bonuses is 100%.
+
+This costs you 36398 experience points.
+--
+New holy task 'Abigail's Nightmare' is now available to you.
+Starting to train to Max. Next 32%.
+This costs you 7236340 experience points.
+Trained total 32% of the skill.
+You now have 'Power of faith' at 59% without special bonuses.
+With current bonuses it is at 59%. Current maximum without bonuses is 59%.
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nun/tasks/taskreqs.txt	Tue Apr 20 15:02:35 2010 +0000
@@ -0,0 +1,125 @@
+==========================================================================
+
+What is this?
+-------------
+The table below has a list of tasks in BatMUD's Nun guild,
+Sisters of Las. It also describes what spells and/or skills
+(and at what percentage) are required for that task to become
+available. This information may be useful, for example, if you
+are planning to reinc into a Nun.
+
+In the table, the first column is the name of the task, followed
+by the requirement(s) for that task to open. If there are multiple
+requirements, they are listed inside the same "cell".
+
+
+How was this done?
+------------------
+With a rather simple Perl-script, which is fed with logfiles
+containing the training/studying in nun guild. The script tries
+to find the minimum values of skills/spells required for the
+task to become available. Data has been combined from multiple
+reincs, to increase reliability.
+
+
+READ WITH CAUTION!
+------------------
+However, this information is NOT, of course, the whole truth!
+Several tasks also depend on things that cannot be easily
+taken into account, for example participation in prayers,
+purity, etc. I have NOT added these requirements into this
+table (because this table is otherwise automatically generated),
+so you should ONLY treat this information as a rough guideline.
+
+Also, some of the skill/spell percentages are too high (due to
+sometimes using 'train xxx to:max'), and most likely some of the
+requirement combinations have not yet been found...
+
+- Ggr Pupunen
+
+==========================================================================
+
+,--------------------------------------------------------------------.
+| Task name                        | Skill/spell               | Min |
++----------------------------------+---------------------------+-----+
+|--------------------------------------------------------------------|
+| Abigail's Nightmare                                                |
+|                                  | Holy bolt                 |  68 |
+|                                  | Power of faith            |  50 |
+|                                  | Purity                    |  20 |
+|--------------------------------------------------------------------|
+| Aid the Underdogs                                                  |
+|                                  | Bless vial                |  50 |
+|                                  | Sewing                    |  50 |
+|--------------------------------------------------------------------|
+| Angelique's cross                                                  |
+|                                  | Mastery of shielding      |  60 |
+|                                  | Purity of thy heart       |  50 |
+|--------------------------------------------------------------------|
+| Battle Against Evil              | Holy wind                 |  52 |
+| Blood of the Innocent            | Heavenly protection       |  59 |
+| Convent's life                   | Cure serious wounds       |  39 |
+| Cry for help                     | Word of recall            |  59 |
+| Demons of the soul               | Mastery of shielding      |  47 |
+| Evil thorn in the flesh of good  | Summon                    |  44 |
+| Feed the Poor                    | Dispel evil               |   5 |
+| Find valentina                   | Dispel evil               |   5 |
+|--------------------------------------------------------------------|
+| Forces of Evil                                                     |
+|                                  | Banish demons             |  64 |
+|                                  | Flames of righteousness   |  49 |
+|--------------------------------------------------------------------|
+| Good shepherd                    | Holy lance                |  55 |
+| Hammer of Las                    | Quick chant               |  60 |
+| Happy bees                       | Candlestick making        |  41 |
+| Heal and nourish                 | Cure serious wounds       |  43 |
+| Holy deeds                       | Cleanse heathen           |  45 |
+| Memento mei                      | Dispel undead             |  30 |
+| Might of Holy Lore               | Holy hand                 |  51 |
+| Might of Holy Vials              | Mastery of holy vials     |  50 |
+|--------------------------------------------------------------------|
+| Nun's daily work                                                   |
+|                                  | Identify relic            |  74 |
+|                                  | Remove scar               |  80 |
+|--------------------------------------------------------------------|
+| Patron of the Righteous          | Flames of righteousness   |  52 |
+| Pilgrimation                     | Exorcize                  |  47 |
+|--------------------------------------------------------------------|
+| Prove thy Strenght                                                 |
+|                                  | Banish demons             |  17 |
+|                                  | Dispel evil               |  55 |
+|--------------------------------------------------------------------|
+| Sacred Water                     | Bless vial                |  60 |
+|--------------------------------------------------------------------|
+| Save the Orphans                                                   |
+|--------------------------------------------------------------------|
+| Seed of evil                     | Celestial haven           |  65 |
+| Set of White Rose                | Might of the saints       |  40 |
+|--------------------------------------------------------------------|
+| Slaad hunt                                                         |
+|                                  | Cast dispel               |  90 |
+|                                  | Cast heal                 |  70 |
+|                                  | Cast holy                 |  90 |
+|--------------------------------------------------------------------|
+| Tears of nun                     | Protection from evil      |  77 |
+|--------------------------------------------------------------------|
+| Torment and Agony                                                  |
+|                                  | Dispel undead             |  77 |
+|                                  | Saintly touch             |  77 |
+|--------------------------------------------------------------------|
+| True Devotee of Las                                                |
+|                                  | Essence eye               |  60 |
+|                                  | Mana control              |  60 |
+|                                  | Soul shield               |  30 |
+|--------------------------------------------------------------------|
+| Undead Lords                     | Dispel undead             |  56 |
+| Vials and Stamina                | Vial throwing             |  61 |
+|--------------------------------------------------------------------|
+| Vindicator of justice                                              |
+|                                  | Dispel evil               |  80 |
+|                                  | Sewing                    |  60 |
+|--------------------------------------------------------------------|
+| Virtuosic nun of Holy Might      | Knowledge of dispelling   |  40 |
+|-----------------+----------------+---------------------------+-----'
+|  36 tasks total |
+`-----------------'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nun/tasks/taskreqs_raw.txt	Tue Apr 20 15:02:35 2010 +0000
@@ -0,0 +1,36 @@
+Abigail's Nightmare|Holy bolt=68|Power of faith=50|Purity=20|
+Aid the Underdogs|Bless vial=50|Sewing=50|
+Angelique's cross|Mastery of shielding=60|Purity of thy heart=50|
+Battle Against Evil|Holy wind=52|
+Blood of the Innocent|Heavenly protection=59|
+Convent's life|Cure serious wounds=39|
+Cry for help|Word of recall=59|
+Demons of the soul|Mastery of shielding=47|
+Evil thorn in the flesh of good|Summon=44|
+Feed the Poor|Dispel evil=5|
+Find valentina|Dispel evil=5|
+Forces of Evil|Banish demons=64|Flames of righteousness=49|
+Good shepherd|Holy lance=55|
+Hammer of Las|Quick chant=60|
+Happy bees|Candlestick making=41|
+Heal and nourish|Cure serious wounds=43|
+Holy deeds|Cleanse heathen=45|
+Memento mei|Dispel undead=30|
+Might of Holy Lore|Holy hand=51|
+Might of Holy Vials|Mastery of holy vials=50|
+Nun's daily work|Identify relic=74|Remove scar=80|
+Patron of the Righteous|Flames of righteousness=52|
+Pilgrimation|Exorcize=47|
+Prove thy Strenght|Banish demons=17|Dispel evil=55|
+Sacred Water|Bless vial=60|
+Save the Orphans|
+Seed of evil|Celestial haven=65|
+Set of White Rose|Might of the saints=40|
+Slaad hunt|Cast dispel=90|Cast heal=70|Cast holy=90|
+Tears of nun|Protection from evil=77|
+Torment and Agony|Dispel undead=77|Saintly touch=77|
+True Devotee of Las|Essence eye=60|Mana control=60|Soul shield=30|
+Undead Lords|Dispel undead=56|
+Vials and Stamina|Vial throwing=61|
+Vindicator of justice|Dispel evil=80|Sewing=60|
+Virtuosic nun of Holy Might|Knowledge of dispelling=40|
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nun/tasks/updatereqs.sh	Tue Apr 20 15:02:35 2010 +0000
@@ -0,0 +1,10 @@
+#!/bin/sh
+SFILE="taskdata.txt"
+DFILE1="taskreqs.txt"
+DFILE2="taskreqs_raw.txt"
+(cat desc.txt && perl -w findreqs.pl < "$SFILE") > "$DFILE1"
+perl -w -- findreqs.pl -dump < "$SFILE" > "$DFILE2"
+
+unix2dos "$DFILE1"
+unix2dos "$DFILE2"
+scp "$DFILE1" "$DFILE2" ccr@tnsp.org:public_html/bat/