generated from Jaysyn/ModuleTemplate
14 lines
337 B
Plaintext
14 lines
337 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// The PC bets 50 coins in the Toss the Dagger game.
|
|
/////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
SetLocalInt(OBJECT_SELF, "nDaggerBet", 50);
|
|
TakeGoldFromCreature(50, oPC);
|
|
}
|