PWE_PRC8/_module/nss/prisoner_death.nss

14 lines
210 B
Plaintext
Raw Normal View History

2025-04-03 10:29:41 -04:00
#include "NW_O2_CONINCLUDE"
#include "NW_I0_GENERIC"
void main()
{
object oPC = GetFirstPC();
while (GetIsObjectValid(oPC) == TRUE)
{
GiveXPToCreature(oPC,-500);
oPC = GetNextPC();
}
}