0% found this document useful (0 votes)
95 views2 pages

Update New July 2021

This document contains parameters and code for a cryptocurrency betting script. It defines maximum loss thresholds from "ludicrous" to "safest", sets a bet calculation rate, betting targets, and includes logic for increasing or decreasing bets depending on win/loss outcomes to reach the target balance. The script initializes variables, calculates initial bet sizes, and contains a betting function that will run and adjust the betting strategy until the target balance is achieved.

Uploaded by

Bayu Ramadhanis
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)
95 views2 pages

Update New July 2021

This document contains parameters and code for a cryptocurrency betting script. It defines maximum loss thresholds from "ludicrous" to "safest", sets a bet calculation rate, betting targets, and includes logic for increasing or decreasing bets depending on win/loss outcomes to reach the target balance. The script initializes variables, calculates initial bet sizes, and contains a betting function that will run and adjust the betting strategy until the target balance is achieved.

Uploaded by

Bayu Ramadhanis
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/ 2

-- 7 max losses (ludicrous) - 27.

364138
-- 8 max losses (stupid) - 7.3446286
-- 9 max losses (risky) - 1.9714477
-- 10 max losses (safe) - 0.5291766
-- 11 max losses (safest) - 0.1420417
-------------------------------------------
betcalc = 1.5
-------------------------------------------

bethigh = true
stopnow = false
first = true
done = true
chance = 27.5
-------------------------------------------
target = 20050 --set target balance
simpan = 1000 --set nominal to withdraw
wallet = "yourwalletaddresshere"
-------------------------------------------

if (betcalc < 0.01) then print("Please set betcalc then restart the script") stop()
end

base = balance * (betcalc / 100000)


curbet = base * 3.7255
nextbet = base

function dobet()

base = balance * (betcalc / 100000)

if (first) then
if(stopnow) then stop() end
if !win then
chance = 50
nextbet = curbet
first = false
done = true
end
end
if(!first and !done) then
if(stopnow) then stop() end
if win then
chance = 27.5
curbet = base * 3.7255
nextbet = base
first = true
done = true
else
curbet = curbet * 3.7255
nextbet = curbet
chance = 72.5
end
end
done = false
if balance >= target then
--TO ACTIVATE AUTO WITHDRAW, REMOVE DOUBLE DASH or STRIP BEFORE WITHDRAW BELOW
--withdraw(simpan,wallet)
print(" ")
print("NICE!!!!!")
print(" ")
print("KEEP IT UP!!!")
print(" ")
end
end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy