PWE_PRC8/_module/nss/monsterpoints.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

13 lines
449 B
Plaintext

void main()
{
object PC = GetLastKiller();
object area = GetArea(OBJECT_SELF);
SetLocalInt(area, "kills", GetLocalInt(area, "kills") + 1);
int monster = GetLocalInt(PC, "monster");
int points = FloatToInt(GetChallengeRating(OBJECT_SELF)) / 10;
SetLocalInt(PC, "monster", monster + points);
FloatingTextStringOnCreature(IntToString(points) + " monsterpoints", PC, TRUE);
ExecuteScript("pointeffects", OBJECT_SELF);
}