Jump to content

Help scripts


YAZDIRAN
 Share

Recommended Posts

Can someone guide me?
I want this script
In case of losing the bet number from 1 to 1.5
In case of losing again, it should increase from 1.5 to 2. In case of subsequent losses, it should continue (2 to 2.5 and...)
And in case of winning, 2.5 to 2 should be reduced as well (2.5 to 2, etc.)
Edited by YAZDIRAN
Link to comment
Share on other sites

  • YAZDIRAN changed the title to Help scripts

you want this script for where?  Generically i would make this with like the parameters

-startingBet
-maxBet
-incrementInterval

then do something like

var currentBet = startingBet

game.bet(currentBet).then(function(r){

     if(myBets[0].profitAmount > 0)
      {
                currentBet -= interval;
                 
               // This is making sure your bet will never go below the starting value you passed in.
                if(currentBet < startingBet)
                      current = startingBet;
      }
       else
      {
             currentBet += interval;

             // making sure we don't go past our cap and end up betting 200 a bet or something.
             if(currentBet > maxBet)
                currentBet = maxBet;
       }
}

This is just psuedo code to give you an idea of the logic.  It won't run as is and is not intended to be a working script so please do not message saying it doesn't work.  I am telling you right now it won't work and was never intended to run.

Link to comment
Share on other sites

You need to be a member in order to leave a comment

Sign up for a new account in our community. It's easy!

Register a new account

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...