summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-17 10:30:11 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-17 10:30:11 +0000
commit9e58b2cf973bff6abb6514f9a3cc1a27c0f8d1e9 (patch)
tree499f54c351b2ff6a03ab3195f057931cd97c618e /crawl-ref/source/acr.cc
parent1647689be3ec23ae3365b488460c7c2c37b6c1f9 (diff)
downloadcrawl-ref-9e58b2cf973bff6abb6514f9a3cc1a27c0f8d1e9.tar.gz
crawl-ref-9e58b2cf973bff6abb6514f9a3cc1a27c0f8d1e9.zip
Added starting notes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@651 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 151f75155a..1fb2b32d11 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -296,6 +296,19 @@ int main( int argc, char *argv[] )
wield_warning(false);
}
+ if ( game_start )
+ {
+ snprintf(info, INFO_SIZE,
+ "%s, the %s %s, began the quest for the Orb.",
+ you.your_name,
+ species_name(you.species,you.experience_level),
+ you.class_name);
+ take_note(Note(NOTE_USER_NOTE, 0, 0, info));
+ snprintf(info, INFO_SIZE, "HP: %d/%d MP: %d/%d",
+ you.hp, you.hp_max, you.magic_points, you.max_magic_points);
+ take_note(Note(NOTE_XP_LEVEL_CHANGE, you.experience_level, 0, info));
+ }
+
while (true)
{
input();