20 lines
624 B
Plaintext
20 lines
624 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName percys_beetle
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/10/2002 11:12:12 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
|
|
// Remove items from the player's inventory
|
|
object oItemToTake;
|
|
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "NW_IT_MSMLMISC08");
|
|
if(GetIsObjectValid(oItemToTake) != 0)
|
|
DestroyObject(oItemToTake);
|
|
|
|
// Give the speaker some gold
|
|
GiveGoldToCreature(GetPCSpeaker(), 35);
|
|
}
|