PWE_PRC8/_module/nss/percys_beetle.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

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);
}