One of the many highlights of my most recent heater -
Happened upon a beautiful cluster of massive b2b hits all within ~1000 nonces while running 10 segment high risk wheel. Ran my $37 reload up to ~40k cash out in less than 30 minutes - all from $0.90 starting bet. B2B is by far my favorite feature of Antebot.
3 Likes
Yessir! Have pleeenty more tasty hits like these from that run - will upload some more over the next few days in separate threads. I’m curious to hear if anyone else enjoys testing less common and outside-the-box strategies for B2B hunts. For instance - Plinko B2B. I was just testing it for shits and giggles the other week, and to my surprise - it actually delivered some nasty hits. Plinko just never struck me as a super viable game for B2B in the same way that Keno, Wheel, and Limbo seem so compatible with B2B playstyle.
1 Like
Ty sir!! Best of luck to you!
Did you just run wheel with high risk and 10 segments, right? No other settings or scripts?
i play a lot of back to back plinko especially on small balance trying to run it up. i have found that its mor viable with 50% of the smallest multi on the board increase instead of b2b. I only do 1b2b, but i always see huge b2b with 4-5. 13 IS NOT AN OPTION because of the 1x. Can we make that a loss on this new setup? i can’t remember @Shufflepuff
good luck from this post i think, started with 4k ARS and ran it up
1 Like
Hey, sorry for the late reply.
Unfortunately, it’s not possible to treat a 1x payout as a loss in the normal game UI. However, the B2B logic is pretty straightforward to implement in Code Mode. Instead of using lastBet.win, you can use lastBet.payoutMultiplier > 1 to continue the B2B logic. That way, a 1x payout won’t trigger it.
Here’s a typical implementation of B2B logic in scripts:
// ... other variables like game etc.
betSize = 0.00000001; // Bet size is always specified in crypto value, not USD!
initialBetSize = betSize;
resetOnB2bMultiplierSum = 200;
resetOnB2bStreak = 8;
engine.onBetPlaced(async (lastBet) => {
if (lastBet.win) { // <-- this would need to change to lastBet.payoutMultiplier > 1 to skip b2b logic on a 1x payout
b2bMultiplierSum = lastBet.payout / initialBetSize;
if (b2bMultiplierSum >= resetOnB2bMultiplierSum
|| (currentStreak > 0 && currentStreak % resetOnB2bStreak === 0)
) {
// Condition for the B2B reset is met, so we reset the bet size
betSize = initialBetSize;
} else {
// We're in a B2B streak and use the payout of the previous bet as the new bet size
betSize = lastBet.payout;
}
} else {
// Last bet's payout was 1x or less, so we reset the bet size
betSize = initialBetSize;
}
});
Hope that helps! Let me know if you have any questions about adjusting it further.
Just used basic settings as follows:
Wheel > High risk > 10 segments
Stop on B2B streak of 2 or 3.
Streak of 2 results in 970x cumulative multiplier
Streak of 3 results in 9,605x cumulative multiplier.
No other settings, just adjusting bet size and B2B streak target by feel.
Best of luck to all !! Happy hunting!
2 Likes
Testing with real money, streak of 3. Very good for now. Thanks.
1 Like