Files
HeroesStone_PRC8/_module/nss/cain_qst_2.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

17 lines
515 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName cain_qst_2
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/20/2008 8:03:35 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "cultnote");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}