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

23 lines
572 B
Plaintext

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