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