19 lines
232 B
Plaintext
19 lines
232 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "sextant")== OBJECT_INVALID)
|
|
return;
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("lmap");
|
|
|
|
DestroyObject(oTarget, 0.0);
|
|
|
|
}
|
|
|