Files
HeroesStone_PRC8/_module/nss/revealarea.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

20 lines
528 B
Plaintext

//::///////////////////////////////////////////////
//:: Reveal Map on Area Load
//:: reveal_map.nss
//:: Copyright (c) 2001 Bioware Corp.
//:: Created By: Phillip Alex Haddox
//:: Created On: August 20, 2002
//:://////////////////////////////////////////////
//
// Put this script on the OnEnter Event script in
// the area properties. It will completely reveal
// the mini-map to all players as they zone in.
void main()
{
object oPC = GetEnteringObject();
object oArea = GetArea(oPC);
ExploreAreaForPlayer (oArea,oPC);
}