generated from Jaysyn/ModuleTemplate
14 lines
391 B
Plaintext
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);
|
|
}
|