Amon_PRC8/_module/nss/toweraxe_exch.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

23 lines
569 B
Plaintext

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