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

20 lines
613 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName for_kardtake2
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 12/23/2003 8:32:48 PM
//:://////////////////////////////////////////////
void main()
{
// Remove some gold from the player
TakeGoldFromCreature(5000, GetPCSpeaker(), TRUE);
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "AncientScythe");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}