Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

19 lines
644 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName takekenterkey
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/6/2002 11:49:53 AM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "KenterBridgeDoorKey");
if(GetIsObjectValid(oItemToTake) != 0)
ActionPauseConversation();
ActionTakeItem(oItemToTake, GetPCSpeaker());
ActionResumeConversation();
}