///////////////////////////////////// // Dragon's Edge // by Charly Carlos ///////////////////////////////////// // Gives the player his/her money back in the Sword and Shield game. ///////////////////////////////////// void main() { object oPC = GetPCSpeaker(); int nPrize = GetLocalInt(OBJECT_SELF, "nDaggerBet"); GiveGoldToCreature(oPC, nPrize); }