LoD_PRC8/_module/nss/2keylock.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

50 lines
967 B
Plaintext

string sDeny;
/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.3
For download info, please visit:
http://www.lilacsoul.revility.com */
//Put this OnUsed
void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "ZekinthasStoreKey1")== OBJECT_INVALID)
{
sDeny="You do not have the correct keys in your possesion.";
SendMessageToPC(oPC, sDeny);
return;
}
if (GetItemPossessedBy(oPC, "ZekinthasStoreKey2")== OBJECT_INVALID)
{
sDeny="You do not have the correct keys in your possesion.";
SendMessageToPC(oPC, sDeny);
return;
}
object oTarget;
oTarget = GetObjectByTag("ZeksStoreDoor");
AssignCommand(oTarget, ActionOpenDoor(oTarget));
object oItem;
oItem = GetItemPossessedBy(oPC, "ZekinthasStoreKey1");
if (GetIsObjectValid(oItem)) DestroyObject(oItem);
oItem = GetItemPossessedBy(oPC, "ZekinthasStoreKey2");
if (GetIsObjectValid(oItem)) DestroyObject(oItem);
}