14 lines
152 B
Plaintext
14 lines
152 B
Plaintext
|
//map reveal trigger
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
if (GetIsPC(oPC) != TRUE) return;
|
||
|
|
||
|
|
||
|
|
||
|
ExploreAreaForPlayer(GetArea(oPC), oPC);
|
||
|
|
||
|
}
|
||
|
|