generated from Jaysyn/ModuleTemplate
13 lines
324 B
Plaintext
13 lines
324 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Gives the player the prize for winning in the Sword and Shield game.
|
|
// The jackpot.
|
|
/////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
GiveGoldToCreature(oPC, 50000);
|
|
}
|