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

23 lines
570 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(), 350);
object oItemToTake1;
oItemToTake1 = GetItemPossessedBy(GetPCSpeaker(), "TowerAxe");
DestroyObject(oItemToTake1);
}