RoT2_PRC8/_module/nss/librar_take_card.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

17 lines
523 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName librar_take_card
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/6/2003 7:14:51 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "LIBRARYCARD");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}