Jaysyn904 ebc0c6a9b2 Initial commit
Initial commit [v9.7]
2025-04-03 12:54:47 -04:00

15 lines
407 B
Plaintext

void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
FloatingTextStringOnCreature("Near the southern exit of this cavern you see a man-made object sticking out from the rocky ground.", oPC, FALSE);
DelayCommand(2.0, FloatingTextStringOnCreature("Upon closer inspection this thing appears to be the heel of a boot.", oPC, FALSE));
DelayCommand(3.0, DestroyObject(OBJECT_SELF));
}