Ad Code

Responsive Advertisement

Wagering Script For Dice Game

 -- example lua code

chance   = 97

bethigh  = true

basebet  = balance/5000 -- use above 5000 for safe

nextbet  = basebet

increase = 2.88

countH   = 0

countL   = 0

st = balance/1000 *(-1)


function dobet()

 

   

 

  if (win) then

    nextbet = basebet

    chance  = 97

  else

   if ( chance == 97 ) then

        nextbet=basebet

   else 

      nextbet = previousbet*increase

  end 

  end


if (lastBet.roll > 50) then

       countL= 1 + countL

       countH=0

       if  ( countL > 7 ) then -- use 8 for safe

      chance  = 62

      bethigh = false

      if ( profit > 0 ) then

          nextbet = balance/1400

      else

          nextbet = profit* (-2)

      end

      countL  = 0

    end

  end

if (lastBet.roll < 50) then 

       countH= 1 + countH

       countL=0

       if  ( countH > 7 ) then -- use 8 for safe

      chance  = 62

      bethigh = true

      if ( profit > 0 ) then

          nextbet = balance/1400

      else

          nextbet = profit* (-2)

      end

      countH  = 0

    end

  end


if ( profit > st ) then

chance  = 62

nextbet = profit* (-2)

end


end

Post a Comment

0 Comments