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:HiDevin's 2nd Script
Uploaded by: HiDevin2
Discription:
Increases bet by 1.1101 or 11.01% 
Multiplier set at 10x :)

I been using it often to double my balance so good luck, minimum balance is 0.0035 :)

( usually takes a day or two if slow rolling to double balance ) 





CommentsLogin or Register
Mayday30:12:2018 21:00
i tried your script with different numbers. It is working fine but basebet doesn't change dynamicly.

i changed chance to 11
basebet to balance/1744000
    Login or Register
MrNicerDicer14:03:2019 23:32
basebet can change dynamicly,
try placing "basebet = balance/34372" within the dobet() function as well as at the top.

chance = 11
bethigh = true
basebet = balance/1744000
nextbet = basebet

function dobet()
basebet = balance/1744000
	if win then
		chance = 11
		nextbet = basebet
	else
		chance = 11
		nextbet = previousbet * 1.1101
	end
end
    Login or Register