100% found this document useful (1 vote)
857 views2 pages

Script 999dice Terbaru

This document defines variables and functions for a betting algorithm. It initializes variables like the deposit amount, take profit amount, starting bet size, and random number seeds. The main dobet() function performs a betting round, checking the balance against limits and increasing or decreasing the bet size depending on whether the previous round was a win or loss. It also implements position betting by occasionally multiplying the bet size.

Uploaded by

Pencari Hidayah
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
100% found this document useful (1 vote)
857 views2 pages

Script 999dice Terbaru

This document defines variables and functions for a betting algorithm. It initializes variables like the deposit amount, take profit amount, starting bet size, and random number seeds. The main dobet() function performs a betting round, checking the balance against limits and increasing or decreasing the bet size depending on whether the previous round was a win or loss. It also implements position betting by occasionally multiplying the bet size.

Uploaded by

Pencari Hidayah
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

Depo = balance

TakeProfit = balance * 1.10


Stp0 = Depo / 1000

chance = 90
multiplier = 10
base = Stp0 + (math.random(0,9999)/100000000000000)
nextbet = 0.001
bethigh = true
percent_win = 0
check_start_order = false
check_start_count_position = false
count_lose = 0
count_round = 0
count_start_order = 0
position_order = 0
StartMulti = false
position_seed = math.random(10,20)
cl = 0

for i=1,position_seed do
resetseed();
end

function dobet()
count_round = count_round + 1
if balance > TakeProfit then
print("*************************")
print("$$$$$$$$$$$ TP = 10% $$$$")
print("*************************")
stop();
end
if (balance) < (nextbet) then
stop();
print(balance)
print("INSUFFICIENT FUNDS")
end

--bet progression
if win then
if cl > 2 then
print("#### Security Stop ####")
stop();
end
bethigh = true
chance = (math.random(88,90) + ((math.random(0,99)/100)))
base = Stp0 + (math.random(0,9999)/100000000000000)
nextbet = base
print("Ran Pos = "..position_order)
print("Round = "..count_round)
if position_order == count_round then
nextbet = nextbet * 100
bethigh = false
StartMulti = true
end
cl = 0
else
cl = cl + 1
if cl > 2 then
bethigh = true
else
bethigh = false
end
if nextbet < 0.001 * 50 then
position_order = math.random(5,20)
count_round = 0
chance = (math.random(88,90) + ((math.random(0,99)/1)))
nextbet = 0.001
bethigh = false
else
nextbet = nextbet + (nextbet * multiplier)
end
end
end
end

You might also like