Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- scriptname = 'Script Wager and Jackpot'
- ---------------------------------------
- minbet = 2e-5 -- set minimal bet
- minch = 1 -- set min chance
- maxch = 98 -- set max chance
- startch = 50 -- set start chance
- div = 1e3 -- set divider base
- inc = 35 -- set inc bet
- limitpro = 50 -- set limit profit
- prebet = 0 -- set 0 for stake/pd
- -------------- do not touch -----------
- initbal = balance base = initbal/div
- bethigh = false jpch = minch roll = 0
- preroll = false safety = false
- resetpartialprofit() chance = maxch
- if base < minbet then base = minbet end
- nextbet = base resetseed() --resetclientseed()
- function dobet()
- if lastBet.nonce > 10000 then resetseed() end
- if (profit/(balance-profit))*100 > limitpro then
- base = profit/(div/2) initbal = profit
- safety = true
- else
- base = initbal/div initbal = balance
- end
- if safety and profit < 0 or safety and nextbet > profit then
- safety = false nextbet = prebet chance = maxch
- resetpartialprofit() resetseed() preroll = true
- end
- if preroll then
- chance = math.random(minch,maxch)
- roll = roll + 1 nextbet = prebet
- if roll > math.random(500,1000) then
- preroll = false chance = maxch roll = 0
- nextbet = base resetpartialprofit()
- bethigh = !bethigh
- end
- else
- if partialprofit > 0 then
- resetpartialprofit()
- chance = maxch
- nextbet = base
- bethigh = false
- startch = math.random(50,66)
- if profit > (balance-profit) then nextbet = (base/2)/div end
- if previousbet > initbal*0.1 then preroll = true nextbet = prebet end
- else
- if win then
- chance = math.random(50,66)
- nextbet = (partialprofit*-1)/((99/chance)-1)
- else
- if (currentstreak == -1) then
- chance = math.random(10,500)/100
- jpch = chance
- nextbet = (partialprofit*-1)/((99/chance)-1)
- else
- if (currentstreak == -5 or currentstreak == -10 or currentstreak == -15 or currentstreak == -20 or currentstreak == -25 or currentstreak == -30 or currentstreak == -35) then
- chance = math.random(50,66)
- nextbet = (partialprofit*-1)/((99/chance)-1)
- else
- if partialprofit < -initbal*0.1 then
- chance = math.random(math.floor((jpch+5)*100), math.floor((jpch+15)*100))/100
- else
- chance = math.random(math.floor(jpch*100), math.floor((jpch+5)*100))/100
- end
- if partialprofit < -initbal*0.1 then jpch = jpch + math.random(10,100)/100 end
- nextbet = previousbet+(previousbet*(inc/100))
- if (currentstreak == -6 or currentstreak == -11 or currentstreak == -16 or currentstreak == -21 or currentstreak == -26 or currentstreak == -31 or currentstreak == -36) then
- nextbet = (partialprofit*-1)/((99/chance)-1)
- end
- end
- end
- end
- end
- if nextbet < minbet then nextbet = minbet end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement