REO-EE/_module/nss/show_map.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

14 lines
342 B
Plaintext

#include "key_item_include"
void main()
{
object oPC = GetEnteringObject();
object oArea = OBJECT_SELF;
// Area is explored by default or PC has the correct map key item
if(GetLocalInt(oArea, "SHOW_MAP") || KEYITEM_GetKeyItem(oPC, GetLocalInt(oArea, "MAP_ID")))
{
ExploreAreaForPlayer(oArea, oPC, TRUE);
}
}