Alangara_PRC8/_module/nss/ld_area_enter.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

22 lines
645 B
Plaintext

//::///////////////////////////////////////////////
//:: Name Area clean-up system
//:: FileName ld_area_enter.nss
//:://////////////////////////////////////////////
/*
Place this script in the area onenter event
*/
//:://////////////////////////////////////////////
//:: Created By: Lord Delekhan
//:: Created On: June 14, 2002
//:: Updated On: September 19, 2004
//:://////////////////////////////////////////////
void main()
{
object oArea = GetArea(OBJECT_SELF);
object oEntering = GetEnteringObject();
if(GetIsPC(oEntering))
{SetLocalInt(oArea,"InPlay",TRUE);
SetLocalInt(oEntering,"IsPC",TRUE);}
}