Files
Amon_PRC8/_module/nss/sharpzombie_exch.nss
Jaysyn904 8f76c0e5a5 2025/09/24 Update
Updates from @behindflayer
2025-09-24 16:04:25 -04:00

23 lines
577 B
Plaintext

//::///////////////////////////////////////////////
//:: Name
//:: FileName
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Created By: Craig Suter
//:: Created On: 9-10-02
//:://////////////////////////////////////////////
void main()
{
GiveXPToCreature(GetPCSpeaker(), 50);
GiveGoldToCreature(GetPCSpeaker(), 400);
object oItemToTake1;
oItemToTake1 = GetItemPossessedBy(GetPCSpeaker(), "SharpZombieBone");
DestroyObject(oItemToTake1);
}