16 lines
193 B
Plaintext
16 lines
193 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
if (GetItemPossessedBy(oPC, "sextant")== OBJECT_INVALID)
|
|
return;
|
|
|
|
ExploreAreaForPlayer(GetArea(oPC), oPC);
|
|
|
|
}
|
|
|