Jump to content

dramdani
 Share

Recommended Posts

Can anyone help me create a simple script with the following rules:

1. The script runs after the yellow point appears and goes through 10 steps (can be changed) to start betting

2. When the martingale passes the 20 loss strike (can be changed) then the bet returns to the start or stops the game

that's the only strategy I want to apply, I hope it helps

Thank you very much

Link to comment
Share on other sites

  • 4 weeks later...
  • 2 weeks later...
On 10/4/2023 at 8:21 PM, tourmz said:

Hi reply again to this post and I'll hook you up, what is the exact details of how you want the script to function? I do not quite understand from the given explanation.

Hey I'm new to this script thing and I need a script for crash. I need the script to start the  bet with a value of 1000NGN on 1.05 odds. I need it to wait for 5 rounds and then run again with same amount (the amount should remain fixed). The number of rounds it waits to play again should decrease by 1, i.e it bets on 1.05, waits 5 rounds, bet again, waits 4 rounds, bets again, waits 3 rounds and so on and the loops and starts from 5 again

Link to comment
Share on other sites

  • 3 months later...

@Jsastzrjoyb @dramdani  I realize this is kind of an old thread but did you guys get the help you needed with your scripts

 

Link to comment
Share on other sites

  • 3 months later...

Please can anyone help me with a script that starts betting after 3 results with less than 1.5odds appears then will bet on 1.5 odds and above to appear, and every win will waits for another sets of 3 results with less than 1.5odds appears.

multiplier= 3x

 

@Skele 

Please can you help me with a script that starts betting after 3 results with less than 1.5odds appears then will bet on 1.5 odds and above to appear, and every win will waits for another sets of 3 results with less than 1.5odds appears.

multiplier= 3x on every loss.

e.g 1,3,9,27 and so on

Link to comment
Share on other sites

  • 2 weeks later...

@Horlique2

Whats your telegram and i can get that for you.

Link to comment
Share on other sites

Posted (edited)
On 5/27/2024 at 3:08 PM, HappyFuther said:

@Horlique2

Hi, I am an expert in script fields.

I can help you, but I have not a good strategy. So I'd like to hear what do you want to indetail.

@Skele

Hi, do you have a script with a high success rate for crash?

heres the strategy:

 a script that starts betting after 3 results with less than 1.5odds appears then will bet on 1.5 odds and above to appear, and every win will waits for another sets of 3 results with less than 1.5odds appears.

 

note; the should be a parameter to change The numbers in the script to may be 3 ,4,5 or 6.

like every 3 or 4 or 5 or 6 results showing less than 1.5odds it starts betting

multiplier= 3x

Edited by Horlique2
Link to comment
Share on other sites

On 5/27/2024 at 3:08 PM, HappyFuther said:

@Horlique2

Hi, I am an expert in script fields.

I can help you, but I have not a good strategy. So I'd like to hear what do you want to indetail.

@Skele

Hi, do you have a script with a high success rate for crash?

 

On 5/28/2024 at 5:59 AM, Skele said:

@Horlique2

Whats your telegram and i can get that for you.

heres the strategy:

 a script that starts betting after 3 results with less than 1.5odds appears then will bet on 1.5 odds and above to appear, and every win will waits for another sets of 3 results with less than 1.5odds appears.

 

note; the should be a parameter to change The numbers in the script to may be 3 ,4,5 or 6.

like every 3 or 4 or 5 or 6 results showing less than 1.5odds it starts betting

multiplier= 3x

 

my telegram is: @ericmu

Link to comment
Share on other sites

@Horlique2

 

var config = {
  baseBet: { label: "base bet", value: 0.1, type: "number" },
  payout: { label: "payout", value: 1.5, type: "number" },
  waitReds: { label: "wait for reds to start:", value: 3, type: "number" },
  betMultiplier: { label: "on loss multiplier", value: 3, type:"number" },
  stopLossPercentage: { label: "Percentage of bankroll to lose before stop.", value: 75, type: "number"},
  cheatSheet: { label: "Payout/NumReds, 2/5, 10/20, 100/200, 1000,2000", type: "title" },
};

var numReds = 0;
var numAttemps = 0;
var ringNumber = 1;
var loadedHistory = false;
var stopLossAmount = 0;
var amountLostSinceLastWin = 0;
var originalbalance = currency.amount;
var runningbalance = currency.amount;

function main() {

  var target = config.payout.value * 100;
  var currentBet = (config.baseBet.value ==0 ) ? (runningbalance * 0.005) : config.baseBet.value;
  game.onBet = function () {
  
  if(!loadedHistory)
  {
    loadedHistory = true;
    for(i=19; i >= 0; i--)
    {
        let crashValue = game.history[i].crash;
        if(crashValue < target)
        {
            numReds++;
        }        
        else
        {
            numReds = 0;
        }        
    }
  }
  else
  {
  let cv = game.history[0].crash;
        
        if(cv < target)
        {
            numReds++;
        }        
        else
        {
            numReds = 0;
        }        
  }
  
  log.success("the redcount is " + numReds);
 
  if(numReds > config.waitReds.value)
 {
        if(numAttemps == 0)
        {
            stopLossAmount = currency.amount * config.stopLossPercentage
        }
        numAttemps++;
        
        if(numAttemps % (config.waitReds.value/2) == 0)
        {
            ringNumber++;
        }
        
        log.success("We are betting " + currentBet);
        
        game.bet(currentBet, config.payout.value).then(function (payout) {
            runningbalance -= currentBet;
            
          if (payout > 1) {
            runningbalance += currentBet * config.payout.value
            log.success("you won after " + numAttemps + " attempts.");
            numAttemps = 0;
            numReds=0;
            ringNumber = 1;
            stopLossAmount = 0;
            amountLostSinceLastWin = 0;
            currentBet = runningbalance * 0.005;
            
            
          } else {
            
            amountLostSinceLastWin += currentBet;
            currentBet *= config.betMultiplier.value;
            log.error(
              "We lost, attempt " + numAttemps + " on ring " + ringNumber + " current redCount is: " + numReds + ".");
              
            if((amountLostSinceLastWin + currentBet) > stopLossAmount)
            {
                log.error("We have lost " + config.stopLossPercentage.value  +"% so we are going to stop.");
                game.start();
            }
          }
        });
    }
    else
    {
        log.success('Number of current red games is ' + numReds + ' so we will continue waiting.');
    }
  };
}

Link to comment
Share on other sites

On 5/29/2024 at 7:05 PM, Skele said:

@Horlique2

 

var config = {
  baseBet: { label: "base bet", value: 0.1, type: "number" },
  payout: { label: "payout", value: 1.5, type: "number" },
  waitReds: { label: "wait for reds to start:", value: 3, type: "number" },
  betMultiplier: { label: "on loss multiplier", value: 3, type:"number" },
  stopLossPercentage: { label: "Percentage of bankroll to lose before stop.", value: 75, type: "number"},
  cheatSheet: { label: "Payout/NumReds, 2/5, 10/20, 100/200, 1000,2000", type: "title" },
};

var numReds = 0;
var numAttemps = 0;
var ringNumber = 1;
var loadedHistory = false;
var stopLossAmount = 0;
var amountLostSinceLastWin = 0;
var originalbalance = currency.amount;
var runningbalance = currency.amount;

function main() {

  var target = config.payout.value * 100;
  var currentBet = (config.baseBet.value ==0 ) ? (runningbalance * 0.005) : config.baseBet.value;
  game.onBet = function () {
  
  if(!loadedHistory)
  {
    loadedHistory = true;
    for(i=19; i >= 0; i--)
    {
        let crashValue = game.history[i].crash;
        if(crashValue < target)
        {
            numReds++;
        }        
        else
        {
            numReds = 0;
        }        
    }
  }
  else
  {
  let cv = game.history[0].crash;
        
        if(cv < target)
        {
            numReds++;
        }        
        else
        {
            numReds = 0;
        }        
  }
  
  log.success("the redcount is " + numReds);
 
  if(numReds > config.waitReds.value)
 {
        if(numAttemps == 0)
        {
            stopLossAmount = currency.amount * config.stopLossPercentage
        }
        numAttemps++;
        
        if(numAttemps % (config.waitReds.value/2) == 0)
        {
            ringNumber++;
        }
        
        log.success("We are betting " + currentBet);
        
        game.bet(currentBet, config.payout.value).then(function (payout) {
            runningbalance -= currentBet;
            
          if (payout > 1) {
            runningbalance += currentBet * config.payout.value
            log.success("you won after " + numAttemps + " attempts.");
            numAttemps = 0;
            numReds=0;
            ringNumber = 1;
            stopLossAmount = 0;
            amountLostSinceLastWin = 0;
            currentBet = runningbalance * 0.005;
            
            
          } else {
            
            amountLostSinceLastWin += currentBet;
            currentBet *= config.betMultiplier.value;
            log.error(
              "We lost, attempt " + numAttemps + " on ring " + ringNumber + " current redCount is: " + numReds + ".");
              
            if((amountLostSinceLastWin + currentBet) > stopLossAmount)
            {
                log.error("We have lost " + config.stopLossPercentage.value  +"% so we are going to stop.");
                game.start();
            }
          }
        });
    }
    else
    {
        log.success('Number of current red games is ' + numReds + ' so we will continue waiting.');
    }
  };
}

Thanks alot i appreciate

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...