generated from Jaysyn/ModuleTemplate
13 lines
368 B
Plaintext
13 lines
368 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Gives the player the prize for winning the Toss the Dagger game.
|
|
/////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nPrize = (GetLocalInt(OBJECT_SELF, "nDaggerBet") * 2);
|
|
GiveGoldToCreature(oPC, nPrize);
|
|
}
|