Files
HeroesStone_PRC8/_module/nss/de1_swrdshld_pr2.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

13 lines
363 B
Plaintext

/////////////////////////////////////
// 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);
}