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