Battledale_PRC8/_module/nss/jw_crog_opendr.nss

16 lines
329 B
Plaintext
Raw Permalink Normal View History

void main()
{
object oPC = GetEnteringObject();
string sString=GetStringLeft(GetTag(oPC),7);
if (sString!="jw_crog")
{
return;
}
object oDoor = GetNearestObject(OBJECT_TYPE_DOOR, OBJECT_SELF, 1);
if (GetIsPC(oPC))
{
SetLocked(oDoor, 0);
ActionOpenDoor(oDoor);
}
}