Pages:
Actions
  • #1 by saadsok on 16 Mar 2012
  • Hi

    I have a trigger for hilo I wait for something to happen then lay that it wont happen again, it works fine but now I want to lay more than once after the trigger activates, whats the best way to do it, I tried win/lose sequence with Z,W but it doesnt seem to work as I expected.

    Currently I check if the last result was a loser then it bets once only and waits for the next losing result, I would like to tell it how many times to bet after a loser
  • #2 by Tim (WellDoneSoft) on 16 Mar 2012
  • Could you please be more specific what you are waiting for?
    You can send e-mail to support if you don't want to share with public.
  • #3 by saadsok on 16 Mar 2012
  • Hi Tim, no problem sharing, its no master piece lol

    I wait until card 11 Previous result is loser (as I am lay betting) then it bets once, I would like to make it bet twice after it lost

    The above seems to contradict itself, as I am lay betting card 11 has to in theory win before the trigger is activated, but as its a laybet I had to tell teh condition to wait until my trigger lost, hope that makes sense.
  • #4 by Tim (WellDoneSoft) on 16 Mar 2012
  • Do you need to bet twice in the same game? Perhaps not.
    Sorry still puzzled with the win/lose back/lay.
    Probably you need this condition:
    Card 11 Consecutive Losses is equal or greater than 1
    or may be (to bet no more than twice)
    Card 11 Consecutive Losses is between 1 and 2
  • #5 by saadsok on 16 Mar 2012
  • OK this is what I have at the moment, it bets once so the LW registry looks like

    Z-Z-Z-Z-W-Z-Z-Z-Z-W-Z-Z-Z etc

    I want to bet twice

    Z-Z-Z-Z-W-W-Z-Z-Z-W-W-Z-Z etc

    Hope that helps
  • #6 by Tim (WellDoneSoft) on 16 Mar 2012
  • Yes, this one:
    Card 11 Consecutive Losses is between 1 and 2
    instead of yours.
  • #7 by saadsok on 16 Mar 2012
  • Nope that just keeps betting?
  • #8 by Tim (WellDoneSoft) on 16 Mar 2012
  • Oh, conditions NOT met.
    So you need Card 11 to be winner?!
    Then "Conditions are met"
    Card 11 Consecutive Wins is between 1 and 2
  • #9 by saadsok on 16 Mar 2012
  • mmm, it still only bets once?
  • #10 by Tim (WellDoneSoft) on 16 Mar 2012
  • Sorry, right.
    Then
    Code: [Select]
    Card 11 previous result is winner
    OR [block start]
    Channel's Previous P/L is not equal to 0
    AND Trigger Expression wins_3 + losses_3 is equal or less than 2
    [block end]

    Hope now it's fine %)
  • #11 by saadsok on 16 Mar 2012
  • Spot on mate, but I changed it a bit as it bet 3 times

    AND Trigger Expression wins_3 + losses_3 is equal or less than 2
    changed to
    AND Trigger Expression wins_3 + losses_3 is equal or less than 1
Pages:
Actions