14 lines
151 B
Plaintext
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);
|
|
|
|
}
|
|
|