Jump to content

Return Bet


Kynwb

Recommended Posts

Please help me with the command:

 first bet return when profit is reached.

Specifically, I want to run a martingale bot, and when I achieve some profit, the bot will continue to run with the original min bet

Link to comment
Share on other sites

It's not a win command. It is the profit after winning and losing bets. Specifically I want to run the improved martinger bot through the profit parameter it will go back to a new loop

11 hours ago, Skele said:

isn't this just telling it to reset on win? then for martingale having the appropriate multiplier on lose?  That is already built into their example script even.

It's not a win command. It is the profit after winning and losing bets. Specifically I want to run the improved martinger bot through the profit parameter it will go back to a new loop

Link to comment
Share on other sites

  • 1 month later...

why don't you look at the many other scripts out there that do this by setting the base bet using a method call after wins.  A good example would be ones that base their base bet off of a percentage.

 

if(win)

{

basebet= getNewBaseBet();

}
else

{
    martingale.  
}

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...