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

14 lines
391 B
Plaintext

/////////////////////////////////////
// Dragon's Edge
// by Charly Carlos
/////////////////////////////////////
// Gives the player the prize for winning in the Sword and Shield game.
// Triple the bet.
/////////////////////////////////////
void main()
{
object oPC = GetPCSpeaker();
int nPrize = (GetLocalInt(OBJECT_SELF, "nDaggerBet") * 3);
GiveGoldToCreature(oPC, nPrize);
}