Aantioch_Infernum/_module/nss/death_xp1000.nss

14 lines
151 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
#include "nw_i0_tool"
//Put this OnDeath
void main()
{
object oPC = GetLastKiller();
if (!GetIsPC(oPC)) return;
RewardPartyXP(1000, oPC, TRUE);
}