11 lines
258 B
Plaintext
11 lines
258 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nBet = GetLocalInt(OBJECT_SELF, "BET");
|
|
if (GetGold(oPC) < nBet) return FALSE;
|
|
|
|
TakeGoldFromCreature(nBet, oPC, TRUE);
|
|
SetLocalInt(OBJECT_SELF, "POT", nBet);
|
|
return TRUE;
|
|
}
|