///////////////////////////////////// // Dragon's Edge // by Charly Carlos ///////////////////////////////////// // The PC bets 10 coins in the Toss the Dagger game. ///////////////////////////////////// void main() { object oPC = GetPCSpeaker(); SetLocalInt(OBJECT_SELF, "nDaggerBet", 10); TakeGoldFromCreature(10, oPC); }