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

29 lines
723 B
Plaintext

//::///////////////////////////////////////////////
//:: if_removekey1
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
If the current variable on the player is:
"removekey" == 1, then check to see if the PC
has one of the 6 room keys. If they do,
remove it. Else, have innkeeper shout a
warning to go get it.
*/
//:://////////////////////////////////////////////
//:: Created By: SorcererOfShadows
//:: Created On: Jan 30, 2006
//:://////////////////////////////////////////////
#include "if_nokey_noentry"
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetLocalInt(oPC, "removekey")== 1)
{
GetHasKey();
}
}