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

18 lines
230 B
Plaintext

void main()
{
object oPC = GetClickingObject();
if (!GetIsPC(oPC)) return;
if (GetGender(oPC)!=GENDER_MALE)
return;
object oTarget;
oTarget = GetObjectByTag("PulMale");
AssignCommand(oTarget, ActionOpenDoor(oTarget));
}