RoT2_PRC8/_module/nss/cb_tke_drownoble.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

18 lines
272 B
Plaintext

void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
object oItem;
oItem = GetItemPossessedBy(oPC, "DROWNOBLE");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
FloatingTextStringOnCreature("Your Drow Noble Robe has Vanished!!", oPC);
}