//:://///////////////////////////////////////////// //:: FileName percys_tongue //::////////////////////////////////////////////// //::////////////////////////////////////////////// //:: Created By: Script Wizard //:: Created On: 7/10/2002 11:12:56 PM //::////////////////////////////////////////////// void main() { // Remove items from the player's inventory object oItemToTake; oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "NW_IT_MSMLMISC10"); if(GetIsObjectValid(oItemToTake) != 0) DestroyObject(oItemToTake); // Give the speaker some gold GiveGoldToCreature(GetPCSpeaker(), 110); }