18 lines
272 B
Plaintext
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);
|
||
|
|
||
|
}
|
||
|
|