Pages:
Actions
  • #1 by statdude on 09 Dec 2012
  • Hello,

    Is it possible for the bet amount to accumulate in a trigger?

    First bet will be default (e.g. 20), then after a win (e.g. 2) the next bet would be 22 and so on.

    Has this been done?

    • statdude
  • #2 by Tim (WellDoneSoft) on 10 Dec 2012
  • back_size + last_won
  • #3 by statdude on 10 Dec 2012
  • Hi Tim,

    Thanks - but will that not only accumulate once?

    If I was looking for all bets to constantly accumulate?
    • statdude
  • #4 by saadsok on 10 Dec 2012
  • @ statdude

    So you want 1st bet to be 20 if win next bet to be 22 if win next bet to be 24

    +2 after every win, what about after a loss?
  • #5 by Tim (WellDoneSoft) on 10 Dec 2012
  • I see.
    Then you have to create an use variable, say my_won, and update its value every game like that
    Set user variable my_won value IF(my_won+last_pl < 0, 0, my_won+last_pl)
    in the first round.
    Then place bet with
    back_size + my_won
    as amount
Pages:
Actions