0% found this document useful (0 votes)
155 views

Terpesona Script

This document defines variables and functions for an automated betting script. It sets minimum and maximum chance percentages, a starting balance, profit targets, and bet multipliers for wins and losses. The dobet() function determines the next bet amount based on the chance outcome, current profit, and balance compared to targets. If balance exceeds the withdrawal target, it will automatically withdraw funds to the specified wallet address.

Uploaded by

Bayu Ramadhanis
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
155 views

Terpesona Script

This document defines variables and functions for an automated betting script. It sets minimum and maximum chance percentages, a starting balance, profit targets, and bet multipliers for wins and losses. The dobet() function determines the next bet amount based on the chance outcome, current profit, and balance compared to targets. If balance exceeds the withdrawal target, it will automatically withdraw funds to the specified wallet address.

Uploaded by

Bayu Ramadhanis
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

min = 35 -- set minimal chance

max = 81 -- set max chance


chance = 90 --starting chance
multiplierwin = 1.82
multiplierlose = 1.18
base = balance/10000
nextbet = base
tp = balance*5 -- set your own profit
target = 0.000000000000001 --set target back to base
investtarget = 1000000 --set target back to base
tmpprofit = 0
investprofit = 0
wincount = 10

wdtarget = 16 -- target balance


save = 6 -- doge to withdraw
wallet = "D64epExfQeRjArcpy25fcbLmCqJaywDicv" -- your wallet address

function dobet()
if balance >= wdtarget then
--TO ACTIVATE AUTO WITHDRAW, REMOVE DOUBLE DASH or STRIP BEFORE WITHDRAW BELOW
withdraw(save,wallet)
print(" ")
print("Nice")
print(" ")
print("Keep it up")
print(" ")
end

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