16 lines
229 B
Plaintext
16 lines
229 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
|
|
|
|
FloatingTextStringOnCreature("A small sack sits, seemingly unguarded, in the middle of the corridor.", oPC, FALSE);
|
|
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
|
|
}
|