15 lines
227 B
Plaintext
15 lines
227 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
|
||
|
|
||
|
FloatingTextStringOnCreature("A metal ring in the shape of a key is on the corpse's bloated finger.", oPC, FALSE);
|
||
|
|
||
|
DestroyObject(OBJECT_SELF);
|
||
|
|
||
|
}
|