From 9e58b2cf973bff6abb6514f9a3cc1a27c0f8d1e9 Mon Sep 17 00:00:00 2001 From: haranp Date: Sun, 17 Dec 2006 10:30:11 +0000 Subject: Added starting notes. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@651 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/acr.cc | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'crawl-ref') 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(); -- cgit v1.2.3-54-g00ecf