Amarfun Posted May 14, 2021 Share Posted May 14, 2021 Hello everybody i've find very nice script on crashbet.com, it is working well on hash dice too. i only have a problem : i want to had on function that allow to "take profit" (exactly like the vanilla function "stop on win" on other games) but i want this function return to base bet (and continue to play) instead of stopping the script. do you think you can help me please ? thanks a lot Link to comment Share on other sites More sharing options...
CRAZY_Jad_ADAM Posted May 16, 2021 Share Posted May 16, 2021 yes Send to me Pm Link to comment Share on other sites More sharing options...
Oinker Posted May 21, 2021 Share Posted May 21, 2021 can i get this function as well? Thanks Link to comment Share on other sites More sharing options...
EvilJerry Posted June 11, 2021 Share Posted June 11, 2021 Please send me the function as well. I would like to try it! Link to comment Share on other sites More sharing options...
Frmrclrripper Posted June 11, 2021 Share Posted June 11, 2021 Me three Link to comment Share on other sites More sharing options...
Oinker Posted June 21, 2021 Share Posted June 21, 2021 anyone Able to do help with this part of a script? Link to comment Share on other sites More sharing options...
Bliss Posted June 22, 2021 Share Posted June 22, 2021 Anyone found a script that can do this yet? Link to comment Share on other sites More sharing options...
Skele Posted August 16, 2021 Share Posted August 16, 2021 omg guys how hard is it to write a function like that game.bet(currentBet, config.payout.value).then(function (payout) { runningbalance -= currentBet; totalWagers += currentBet; totalNumberOfGames += 1; amountToTakeProfit = config.TakeProfit.value; if (payout > 1) { var netwin = currentBet * config.payout.value - currentBet; LogMessage('We won a net profit of: ' + netwin.toFixed(8), 'success'); netProfit += netwin; if(netProfit > amountToTakeProfit) { currentBet = config.BaseBet.value; } } else { log.error('We lost a net amount of: ' + currentBet.toFixed(8)); netProfit -= currentBet; } } ); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.