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

20 lines
625 B
Plaintext

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