Rune_PRC8/_module/nss/revealmap.nss

18 lines
291 B
Plaintext
Raw Permalink Normal View History

2024-09-13 09:10:39 -04:00
/*
This script will automatically explore the map
of the area it is attached to when a player enters
the area.Place in the OnClientEnter Slot of an area.
*/
void main()
{
object oPC = GetEnteringObject();
object oArea = GetArea(oPC);
ExploreAreaForPlayer(oArea, oPC);
}