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:house edge killer
Uploaded by: besoeasy
Discription:
in long term house edge always wins, this scripts tries to make 1.1% profit on wager amount, which means it covers 1% edge along with small profit


min balance should be 1.1






CommentsLogin or Register
amit88801:01:2019 14:41
This comment has been removed.
    Login or Register
amit88801:01:2019 14:43
chance=49.5 -- Sets your chance for placing a bet
basebet=0.00000001 -- Sets your first bet.
nextbet = basebet
bethigh=true 
counter2 = 0
big = 0
diff = 0


function dobet()
counter2 += 1
bethigh = !bethigh

if balance > big then
big = balance
end

diff = big - balance

nextbet = basebet

if diff > 0 then
nextbet = ((basebet*math.random(1,10))+(diff)*(0.001*math.random(1,10))) + basebet
end

  if currentstreak <= -25  then
  nextbet = basebet
  end

  if currentstreak == 25  then
  resetseed()
  end



if counter2 > 33 then
print("Balance: "..balance)
counter2 = math.random(1,20)
end

end
    Login or Register
Thor77719:07:2020 06:34
Don;t bother this just drains slowly. Better to wager 98% or something else. 
    Login or Register