Aantioch_Infernum/_module/nss/death_xp1000.nss
Jaysyn904 22947ad4b6 Initial Upload
Initial Upload
2023-08-08 16:22:17 -04:00

14 lines
151 B
Plaintext

#include "nw_i0_tool"
//Put this OnDeath
void main()
{
object oPC = GetLastKiller();
if (!GetIsPC(oPC)) return;
RewardPartyXP(1000, oPC, TRUE);
}