A profitable dice script.-3

A profitable dice script.-3

By Robert R Davis | My_crypto_Journey | 11 Oct 2023


One more profitable script.

It is continuation of my previous posts related to dicebot scripts.

 

Your feedback matters me.

 

It will support me to furnish more secure scripts.

 

All the scripts are my own scripted using LUA language.

 

In the below script you can change target and bet size. my preferred bet size is 1 for 10000

 

basebet = 0.00000120
chance = 75
enablezz = true
enablesrc = true
nextbet = basebet


function dobet()
if balance >0.02825 then
stop()
end

if profit > 0 then
resetstats()
nextbet = basebet
chance = 75



end


if currentstreak < 0 and profit < 0.0000000001 then

nextbet = basebet
chance = math. random (75, 80 )







end
if currentstreak > 0 and profit < 0.0000000001 then

--resetstats()
nextbet = basebet * losses
chance = math. random (75, 80 )


end
if currentstreak > 1 and profit < 0.0000000001 then


nextbet = (-1*profit) *5
chance = math. random (75, 80 )


end
if currentstreak > 2 and profit < 0.0000000001 then

resetstats()
nextbet = basebet
chance = math. random (75, 80 )


end




if nextbet < basebet then
nextbet = basebet
end

-- Stop loss at 10% of the total balance.
if balance <= (balance + profit) * 0.9 then
stop()
end
end

How do you rate this article?

3



My_crypto_Journey
My_crypto_Journey

In this blog, I will share My crypto Journey

Publish0x

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.