Battledale_PRC8/_module/nss/jw_cgdoor_fail.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

28 lines
705 B
Plaintext

void main()
{
object oPC= GetClickingObject();
object oKey1=GetItemPossessedBy(oPC,"jw_cvamp1_key");
object oKey2=GetItemPossessedBy(oPC,"jw_cvamp2_key");
object oKey3=GetItemPossessedBy(oPC,"jw_cvamp3_key");
if (GetIsObjectValid(oKey1)&&GetIsObjectValid(oKey2)&&GetIsObjectValid(oKey3))
{
AssignCommand(oPC,PlaySound("as_cv_ropecreak3"));
SpeakString("You place the three keys in the keyholes and the lock turns");
SetLocked(OBJECT_SELF,0);
ActionOpenDoor(OBJECT_SELF);
DestroyObject(oKey1);
DestroyObject(oKey2);
DestroyObject(oKey3);
}
else
{
SpeakString("This door has three small keyholes. It appears that all three keys are needed to open it. There is no other way through.");
}
}