git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@651 c06c8d41-db1a-0410-9941-cceddc491573
WCAOZXOYYQBLVRS5FRZTP5ZFOYLQCCPWHGIFM2DLVGHIKVYSQVWQC
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));
}