0% found this document useful (0 votes)
92 views1 page

Betting Strategy Script

The document describes variables and functions used for betting with chance-based outcomes. It sets minimum and maximum chance percentages, a starting chance, multipliers for winning and losing bets, and targets for profit, balance, and number of wins. The dobet() function performs a bet, updates variables based on win or loss, and resets the bet amount based on targets reached.

Uploaded by

MIT PM
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
92 views1 page

Betting Strategy Script

The document describes variables and functions used for betting with chance-based outcomes. It sets minimum and maximum chance percentages, a starting chance, multipliers for winning and losing bets, and targets for profit, balance, and number of wins. The dobet() function performs a bet, updates variables based on win or loss, and resets the bet amount based on targets reached.

Uploaded by

MIT PM
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

min= 8.

22 -- set minimal chance


max= 82.22 -- set max chance
chance = 90 --starting chance
multiplierwin = 3
multiplierlose = 2
base = balance*0.000001
nextbet = base
tp=balance*5 -- set your own profit
target = base*100 --set target back to base
investtarget = base*100 --set target back to base
tmpprofit = 0
investprofit = 0
wincount = 10
startbalance = balance

function dobet()
if balance > tp then stop () end
tmpprofit += currentprofit
investprofit+= currentprofit
chance = math.random(min*100,max*100.0)/100.0
if win then
if(tmpprofit > target) then
print("TMPPROFIT is greater than our target Resessting to Base")
tmpprofit = 0
nextbet = base
sleep(0); --delay your bet
if(investprofit > investtarget) then
investprofit = 0
invest(balance - startbalance)
end
else
print("Since we havent reached our target times last bet by
multiplierwin")
nextbet = previousbet*multiplierwin
if(nextbet < base) then
sleep(0) --delay your bet
print("nextbet is less than base bet so its now base bet")
nextbet = base
end
end
else
sleep(0) --delay your bet
print("We have lost so we are timzing by multiplierlose")
nextbet = previousbet*multiplierlose
if(nextbet <base) then
print("Lower than base bet so now basebet")
nextbet = base
end
end
end

You might also like