Pit-Filler Posted May 27, 2022 Share Posted May 27, 2022 I want to make my scirpt stop if profit reach a certaon amount var config = { Â baseBet: { label: "base bet", value: currency.minAmount, type: "number" }, Â payout: { label: "payout", value: 1.65, type: "number" }, Â stop: { label: "stop if next bet >", value: 1e8, type: "number" }, Â lossMultiplier: { label: "loss multiplier", value: 1.10, type: "number" }, Â winMultiplier: { label: "win multiplier", value: 1.05, type: "number" }, }; function main() { Â var currentBet = config.baseBet.value; Â game.onBet = function () { Â Â game.bet(currentBet, config.payout.value).then(function (payout) { Â Â Â if (payout > 1) { Â Â Â Â currentBet *= config.winMultiplier.value; Â Â Â Â log.success( Â Â Â Â Â "We won" Â Â Â Â ); Â Â Â } else { Â Â Â Â currentBet *= config.lossMultiplier.value; Â Â Â Â log.error( Â Â Â Â Â "We lost" Â Â Â Â ); Â Â Â } Â Â }); Â }; } Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.