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:Crypto Dazzler v1
Uploaded by: shermhead
Discription:
This script uses a combination of current profit and last bet rolls to determine the next bet at chances 45 through 65. The script makes up for losses over several bets. It is profitable and high in safety at default settings.

Recommended minimum balance of 0.00100000





CommentsLogin or Register
salem821:04:2020 09:27
This comment has been removed.
    Login or Register
salem807:05:2020 16:25
@shermhead
"same and rev" resets have no impact on hi/lo. I checked pattern when it switches side and came to conclusion that you can only keep one condition either lastBet.roll<50 OR lastBet.roll>50 both logics does same job even if you call it on same/rev conditions.

Here is same script with removed unnecessary trash code!

chance  = 45
base    = 0.00000001 

a       = 0
nextbet = base
resetstats()
function dobet()

  if (currentstreak)<0 then chance=45 end
  if (currentstreak)<-2 then chance=50 end
  if (currentstreak)<-3 then chance=52.5 end
  if (currentstreak)<-5 then chance=55 end
  if (currentstreak)<-7 then chance=60 end
  if (currentstreak)<-11 then chance=65 end


  if (chance)== 45 then
      if (currentstreak)%2==0 then 
	  bethigh=!bethigh 
      end
  end

        if lastBet.roll>50 then
            bethigh = true 
	else 
	    bethigh=false
        end

    a = a+-currentprofit 
   
        if a<0 then 
	   a=0 
	   nextbet=base
	   print("Win")
		
            if nextbet>balance then 
	       print("You lose") 
	       stop() 
            end
        end
		
    nextbet = base+((a)/(99/chance))

 end  
    Login or Register
salem821:04:2020 09:31
This comment has been removed.
    Login or Register
testspambom19:04:2020 16:04
This script absolutely safe with high profit.
anyway to contact you?
    Login or Register
donkert19:04:2020 16:08
NO ITS NOT NO SCRIPT CAN EVER WIN
    Login or Register
testspambom19:04:2020 16:16
oh sorry, I reply on the wrong script.
    Login or Register
donkert19:04:2020 17:29
YOU WILL LOOSE TELL ME WHICH THEN
    Login or Register
testspambom20:04:2020 06:47
https://bot.seuntjie.com/scripts.aspx?id=5378

change betcalc for faster gain with high balance (high risk)

10-30% per day
    Login or Register