I'v noticed in my version of smaug apperently the only time pdeaths/pkills get added is when you are in the arena how can I go about chaning this, thus far I found this in the code.
/*
* Any character in the arena is ok to kill.
* Added pdeath and pkills here
*/
if ( in_arena( ch ) )
{
if ( !IS_NPC(ch) && !IS_NPC(victim) )
{
ch->pcdata->pkills++;
victim->pcdata->pdeaths++;
}
return;
}
thats just not cool what alterations do I have to make to make pkills/pdeaths, count everywhere that isnt safe.
Thanks
/*
* Any character in the arena is ok to kill.
* Added pdeath and pkills here
*/
if ( in_arena( ch ) )
{
if ( !IS_NPC(ch) && !IS_NPC(victim) )
{
ch->pcdata->pkills++;
victim->pcdata->pdeaths++;
}
return;
}
thats just not cool what alterations do I have to make to make pkills/pdeaths, count everywhere that isnt safe.
Thanks