Need help with the bot or want someone to talk to?
FORUM.SEUNTJIE.COM

The forum is a good platform for asking or offering help with programmer mode scripts

LUA Scripts

Download a script for your bot, or upload your own to share with other users. Login or Register to upload

How do I use this?


Name:Script by GreenBaron
Uploaded by: BackTrack
Discription:
I advise you to play with an initial balance of at least 0.8 The script is well randomized to exclude loss on constant repetitions.





CommentsLogin or Register
Bullseye19:10:2020 21:53
Testing now.   Needs to establish ggh variable to avoid error.  maybe ggh=4 before the placebet?
    Login or Register
Bullseye19:10:2020 22:48
Why is the resetstats() in there?  It really hampers stats tracking
    Login or Register
GreenBaron23:10:2020 19:10
hi, sorry but it is necessary
    Login or Register
samodobri07:11:2020 11:28
I am testing this on several dice sites with recomended balance of 0.8 LTC. I am using first version from author. 3 days pass, for now max minus 0.2 and recover. 24 h stats are 0.05 plus with 0.5 second delay in rolls. It is very low paying script. Anybody testing, please write results? 
    Login or Register
GreenBaron08:11:2020 09:06
hi my result is 240k bets 0.3 ltc profit in 24 hours start balance 2 ltc basebet 0.000011ltc
    Login or Register
cryptomonk07:11:2020 04:16
why is this line here?:
if (win) and (chance==33) then nextbet=base end
you never happen == 33
    Login or Register
GreenBaron08:11:2020 07:31
hi,Forgot to remove, after making amendments
    Login or Register
cryptomonk07:11:2020 03:56
improved with basebet following increase of balance, target stop:

--Script by GreenBaron
--https://bot.seuntjie.com/scripts.aspx?id=5439
--base:rx is 1M:100K

chance	= 66
bdiv	= 1000000
rxdiv	= 100000
base	= balance/bdiv --0.000001
nextbet	= base
rx		= balance/rxdiv --0.00001
target	= 1 --balance*2

function dobet()
 
    x  = profit
    c  = (x*(-1))*0.3
    rx = c/26
	
    if win then
		nextbet = previousbet+(balance/rxdiv) --rx
		chance = 66.6
		cgg=1
		cgh=4
	else
		nextbet = c/cgh*cgg
		chance = 26
	end
   
    if profit > 0.00000300 then
		resetstats()
		rx= balance/rxdiv --0.00001
		cgg = 1
		cgh = 4
		nextbet=balance/bdiv --base
	end
	
    if nextbet<(balance/bdiv)	then
		nextbet=(balance/bdiv)
	end
   
    if (currentstreak==-6) then
		cgg = 1.077
		cgh = 1
	end
	
    if (currentstreak==-14)	then
		cgg = 1.21
		cgh = 1
	end
	
    if (win) and (chance==33) then
		nextbet=balance/bdiv --base
	end

    a  = math.random(0,1)
    if(a==0) then
		a = false
	end
    if(a==1) then
		a = true
	end
	
    bethigh = a
	
	if (balance >= target) then
		stop()
		ching()
	end

end
    Login or Register
GreenBaron08:11:2020 07:32
hi,thx,gj)
    Login or Register