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

17 lines
522 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName takenote
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 6/29/2002 12:53:05 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "bloodstainednote");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}