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