Battledale_PRC8/_module/nss/jw_si_buy_def.nss

19 lines
621 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName jw_si_buy_def
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 23/06/2003 23:29:22
//:://////////////////////////////////////////////
void main()
{
// Give the speaker some gold
GiveGoldToCreature(GetPCSpeaker(), 100);
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "jw_si_tok_death");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}