Pages:
Actions
  • #1 by Phazer on 13 Nov 2019
  • Hi Guys

    I am running a small loss recovery system in poker. I divide the last X losses by 3 when the losses reach a value. Sometimes when recovery starts the division sum will be under £1 so I have attempted an IF statement which doesn't appear to work?

    IF(last_lost/3<1,1,last_loss/3)

    am I correct in deciphering the above to

    if last_lost divide by 3 is less than 1 return 1 else return last_loss divided by 3

    If someone could just correct it for me that would be great.

    Thanks in advance
  • #2 by rubold on 14 Nov 2019
  • Firstly, you are using 2 different variables:  last_lost & last_loss  or is that just a typo?

  • #3 by Phazer on 14 Nov 2019
  • Ouch, yes typo, it is now working as expected. Thanks
  • #4 by Phazer on 18 Nov 2019
  • Need some help, I have a user variable set called 'behind' it goes up if the bank grows and remains at that value when losses are happening. Using

    IF(last_lost/3<1,1,last_lost/3) ----> typo fixed ;)

    It losses out on the amount to recover so I would like to run with

    IF(behind/3<1,1,behind/3)

    How do I set up the trigger condition? I have tried user_variable ---- behind but only get the option of is set is is not set. What should I use?

    Thanks
  • #5 by Phazer on 18 Nov 2019
  • Forgot to say why it losses out, it's when a dead heat happens, the win is less than expected using last_lost
Pages:
Actions