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:THE BEST AMONG THE REST.
Uploaded by: alano04
Discription:
THIS SCRIPT WILL START AT 6.6 CHANCES AND 0.00000005 BET THEN SUNDDENLY INCREASE AFTER A LOSE. BETTING DEPENDS ON HOW MUCH THE CHANCES ARE. AUTO RESET SEED. AUTO HIGH AND LOW.

DONATE IF U WIN. HEHE
                         3Hc4tDAZMmdrChSYC9omQ1Ln7xd28yxzZP

Seuntjies Note: Your code is redundant as hell. Learn how to use the modulus (%), larger than (>) and smaller than (<) operators. Also, you can use a variable when assigning a value to itself, IE chance=chance*1.1





CommentsLogin or Register
BetaBitcoin14:08:2018 20:11
Displays error => [string "chunk"]: 4: attempt to compare nil with number
    Login or Register
bobwood23:09:2018 10:15
yes for me too
    Login or Register
Mike.N25:10:2019 10:52
Was an easy fix...
Type your profit target...
profittarget=5 --example - place at top.

Running fine. Lets see how it goes.
    Login or Register
amit88802:10:2018 05:49
This comment has been removed.
    Login or Register
amit88830:09:2018 17:13
This comment has been removed.
    Login or Register
amit88802:10:2018 05:17
This comment has been removed.
    Login or Register
Tomy4512:09:2020 10:48
Same as original but compressed without useless code:


nextbet = 0.00000005
chance = 6.6
profittarget = 0.5

function dobet()

  if (wagered) >= profittarget
    then
      stop();
    end

  if win
    then
      nextbet = 0.00000005
      chance = 6.6
  else  
      nextbet = previousbet * 1.1
      chance *= 1.1
      if chance > 95.00  --<< set here your max chance dependent of site
        then
          nextbet = 0.00000005
          chance  = 6.6 
        end  
      J=math.random(100)
      if J <= 29
        then
          betcount=0
          resetseed();
      else
          betcount=betcount+1   
        end
    end 

  A=math.random(100)
  if A <= 29
    then
      bethigh=true
    end
  if A >= 71
    then
      bethigh=false
    end 
end  
    Login or Register
Tomy4517:09:2020 09:53
I forget add one line. On the top of code between "profittarget = 0.5" and "function dobet()" add line "betcount = 0". Now will be working.
    Login or Register