WoR_PRC8/_module/nss/s_slavestone_giv.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

17 lines
550 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName s_slavestone_giv
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 12/10/2004 9:43:38 PM
//:://////////////////////////////////////////////
void main()
{
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "SHA_ZOLAD_STONE");
if(GetIsObjectValid(oItemToTake) == TRUE)
DestroyObject(oItemToTake);
}