Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

17 lines
532 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName take_soul
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 3/9/2003 6:52:10 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "SoulToken");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}