Rune_PRC8/_module/nss/if_nokey_noentry.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

89 lines
2.3 KiB
Plaintext

object oItem;
/* Script generated by
Lilac Soul's NWN Script Generator, v. 2.1
For download info, please visit:
http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625 */
//Put this OnClick or OnFailToOpen
void GetHasKey()
{
object oPC = GetClickingObject();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "WinespringRoomKey")!= OBJECT_INVALID)
{
oItem = GetItemPossessedBy(oPC, "WinespringRoomKey");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
// Delete variable so we can cycle through key scripts all over again
DeleteLocalInt(oPC, "removekey");
}
else if (GetItemPossessedBy(oPC, "WinespringRoomKey2")!= OBJECT_INVALID)
{
oItem = GetItemPossessedBy(oPC, "WinespringRoomKey2");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
// Delete variable so we can cycle through key scripts all over again
DeleteLocalInt(oPC, "removekey");
}
else if (GetItemPossessedBy(oPC, "WinespringRoomKey3")!= OBJECT_INVALID)
{
oItem = GetItemPossessedBy(oPC, "WinespringRoomKey3");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
// Delete variable so we can cycle through key scripts all over again
DeleteLocalInt(oPC, "removekey");
}
else if (GetItemPossessedBy(oPC, "WinespringRoomKey4")!= OBJECT_INVALID)
{
oItem = GetItemPossessedBy(oPC, "WinespringRoomKey4");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
// Delete variable so we can cycle through key scripts all over again
DeleteLocalInt(oPC, "removekey");
}
else if (GetItemPossessedBy(oPC, "WinespringRoomKey5")!= OBJECT_INVALID)
{
oItem = GetItemPossessedBy(oPC, "WinespringRoomKey5");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
// Delete variable so we can cycle through key scripts all over again
DeleteLocalInt(oPC, "removekey");
}
else if (GetItemPossessedBy(oPC, "WinespringRoomKey6")!= OBJECT_INVALID)
{
oItem = GetItemPossessedBy(oPC, "WinespringRoomKey6");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
// Delete variable so we can cycle through key scripts all over again
DeleteLocalInt(oPC, "removekey");
}
else
{
// Delete variable so we can cycle through key scripts all over again
DeleteLocalInt(oPC, "removekey");
}
}