dramdani Posted September 11, 2023 Share Posted September 11, 2023 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 1 Link to comment Share on other sites More sharing options...
tourmz Posted October 4, 2023 Share Posted October 4, 2023 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. 1 Link to comment Share on other sites More sharing options...
Jsastzrjoyb Posted October 14, 2023 Share Posted October 14, 2023 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 More sharing options...
Cubato Posted October 14, 2023 Share Posted October 14, 2023 Kk Link to comment Share on other sites More sharing options...
Skele Posted January 19 Share Posted January 19 @Jsastzrjoyb @dramdani I realize this is kind of an old thread but did you guys get the help you needed with your scripts 1 Link to comment Share on other sites More sharing options...
Horlique2 Posted May 12 Share Posted May 12 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 More sharing options...
HappyFuther Posted May 27 Share Posted May 27 (edited) @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? Edited May 29 by HappyFuther to contact with @Skele 1 Link to comment Share on other sites More sharing options...
Skele Posted May 28 Share Posted May 28 @Horlique2 Whats your telegram and i can get that for you. Link to comment Share on other sites More sharing options...
Horlique2 Posted May 28 Share Posted May 28 10 hours ago, Skele said: @Horlique2 Whats your telegram and i can get that for you. my telegram is @ericmu thanks alot Link to comment Share on other sites More sharing options...
Vfcbmcxumqac Posted May 28 Share Posted May 28 @Skele please i want to write a function on my script that gets the crash point of the last 5 round and then check if they are all below the red point Link to comment Share on other sites More sharing options...
HappyFuther Posted May 29 Share Posted May 29 @Vfcbmcxumqac function getHistroy() { let flag = true; for (i=0;i<5;i++) { if (game.history[i].oggs<2) { flag=false; break; } } if (flag) { game.succes("last 5 rounds include blue"); } else { game.error("last 5 rounds is all red"); } } Link to comment Share on other sites More sharing options...
Horlique2 Posted May 29 Share Posted May 29 (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 May 29 by Horlique2 Link to comment Share on other sites More sharing options...
Horlique2 Posted May 29 Share Posted May 29 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 More sharing options...
Skele Posted May 29 Share Posted May 29 @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 More sharing options...
Horlique2 Posted May 30 Share Posted May 30 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 More sharing options...
Mastermmm Posted June 2 Share Posted June 2 (edited) On 5/30/2024 at 8:42 PM, Horlique2 said: Dear Horlique and Skele, Thank you for this help on this script Edited June 3 by Mastermmm Link to comment Share on other sites More sharing options...
HappyFuther Posted June 6 Share Posted June 6 @Skele Hi, Skele I learned a lot from looking at your code. I look forward to a more detailed discussion with you. My email address is [email protected]. I look forward to connecting with you and wishing you good luck. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountAlready have an account? Sign in here.
Sign In Now