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

Betting Strategy Script Guide

This document defines variables and a function for betting and tracking profits. The function takes the previous bet, multiplies it by a modifier if a win or loss occurred, and checks if profit targets have been met to reset the bet or declare overall profits. It runs a betting loop to incrementally increase or decrease the next bet based on win/loss outcomes.

Uploaded by

Andrea liguori
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)
107 views1 page

Betting Strategy Script Guide

This document defines variables and a function for betting and tracking profits. The function takes the previous bet, multiplies it by a modifier if a win or loss occurred, and checks if profit targets have been met to reset the bet or declare overall profits. It runs a betting loop to incrementally increase or decrease the next bet based on win/loss outcomes.

Uploaded by

Andrea liguori
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

chance = 66.

66
multiplier=1.5
multiplier2=0.92
base=0.0000150
nextbet = base

target =.005
investtarget = .1
tmpprofit = 0
investprofit = 0
wincount = 10
startbalance = balance

function dobet()

tmpprofit += currentprofit
investprofit+= currentprofit

if win then
if(tmpprofit > target) then
print("TMPPROFIT is greater than our target Resessting to Base")
tmpprofit = 0
nextbet = base
sleep(1000);
if(investprofit > investtarget) then
investprofit = 0
invest(balance - startbalance)
end
else
print("Since we havent reached our target times last bet by
multiplier2")
nextbet = previousbet*multiplier2
if(nextbet < base) then
sleep(1000)
print("nextbet is less than base bet so its now base bet")
nextbet = base
end
end
else
sleep(1000)
print("We have lost so we are timzing by multiplier1")
nextbet = previousbet*multiplier
if(nextbet < base) then
print("Lower than base bet so now basebet")
nextbet = base
end
end
end

You might also like