fight.c top /* Object Vnums */ #define ITEM_SOUL 49 under void raw_kill OBJ_DATA *soul; *directly after this* death_cry( victim ); stop_fighting( victim, TRUE ); make_corpse( victim, killer ); if ( IS_NPC(victim) ) { victim->pIndexData->killed++; kill_table[URANGE(0, victim->level, MAX_LEVEL-1)].killed++; extract_char( victim, TRUE ); return; } *add* if ( !IS_NPC(killer) && (victim != killer) ) { if ( (!IS_SET(victim->act,PLR_TWIT)) && (!IS_SET(killer->act,PLR_TWIT)) && !IS_IMMORTAL(killer) ) { killer->pcdata->pkills++; victim->pcdata->pdeath++; } soul = create_object(get_obj_index(ITEM_SOUL),0); sprintf( buf, soul->short_descr,victim->name,killer->name); free_string( soul->short_descr ); soul->short_descr = str_dup( buf ); sprintf(buf, soul->description,victim->name); free_string( soul->description ); soul->description = str_dup( buf ); sprintf( buf, soul->name, victim->name, killer->name ); free_string( soul->name ); soul->name = str_dup( buf ); obj_to_char(soul,killer); sprintf(buf, "{wYou have {rc{Ra{rp{Rt{ru{Rr{re{Rd {wthe {Ds{wo{Du{wl of {y%s{w!{x\n\r",victim->name); send_to_char(buf,killer); sprintf(buf, "{wYou {rs{Ru{rr{Rr{re{Rn{rd{Re{rr {wyour {Ds{wo{Du{wl to {y%s{w.{x\n\r",killer->name); send_to_char(buf,victim); } In merc.h under struct pc_data put this near the bottom of it int pdeath; int pkills; and in limbo.are #49 the soul of '%s' captured by '%s'~ {wthe {8s{7o{8u{7l of {y%s {rc{Ra{rp{Rt{ru{Rr{re{Rd{w by {y%s{x~ {wThe {8s{7o{8u{7l of {y%s {wnow haunts the streets.{x~ aura~ gem ABGIO AW 0 0 0 0 0 0 0 0 P In save.c I put this I put this under the True Sex part of of void fwrite_char fprintf( fp, "Pkdt %d\n", ch->pcdata->pdeath ); fprintf( fp, "Pkkl %d\n", ch->pcdata->pkill ); in fread_char put: under case 'P' KEY( "Pkdt", ch->pcdata->pdeath, fread_number( fp ) ); KEY( "Pkkl", ch->pcdata->pkills, fread_number( fp ) ); under load_char_obj and load_char_reroll I put ch->pcdata->pdeath = 0; ch->pcdata->pkills = 0; Also add the extra wear flags but I dont really feel like adding that so have fun with this snippet