iMaSKeDxX
RAT Controller
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
400 XP
LEECHING = BAN
const baseBet = 1
const limit = 2000
const target = 20
const betMultiplier = 1.053
let total = 0
let lossCount = 0
this.log(`Starting script with a base bet of ${baseBet} bits.`)
while (true) {
const { multiplier } = await this.bet(betSize(lossCount), target)
total = total + betSize(lossCount) / 100
if(total > limit) {
lossCount = 0
total = 0
this.setClientSeed(randomSeed())
this.newSeedPair(randomSeed())
this.skip()
}
if (multiplier < target) {
lossCount++
} else {
lossCount = 0
total = 0
}
}
function betSize(lossCount) {
const bet = baseBet * Math.pow(betMultiplier, lossCount)
return Math.round(bet) * 100
}
function randomSeed() {
const words = ['Alpha ','Bra3qtwvo ','Charlie ','Delta ','Echo ',
'Foxtrot ','Go3tewlf ','Hotel ','Indda ','Juliet ',
'Kiqagalo ','L24rqwima ','Mirhe ','November ','Oscar ',
'Papayww ','Quebec ','Romeo ','Sierra ','Tango ',
'Uniform ','Victor ','Whiskey ','X-ray ','pooper ','Zulu ']
return words[Math.floor(words.length * Math.random())] + words[Math.floor(words.length * Math.random())] + words[Math.floor(words.length * Math.random())]
}
=============================================
const baseBet = 1
const limit = 2000
const target = 20
const betMultiplier = 1.053
let total = 0
let lossCount = 0
this.log(`Starting script with a base bet of ${baseBet} bits.`)
while (true) {
const { multiplier } = await this.bet(betSize(lossCount), target)
total = total + betSize(lossCount) / 100
if(total > limit) {
lossCount = 0
total = 0
this.setClientSeed(randomSeed())
this.newSeedPair(randomSeed())
this.skip()
}
if (multiplier < target) {
lossCount++
} else {
lossCount = 0
total = 0
}
}
function betSize(lossCount) {
const bet = baseBet * Math.pow(betMultiplier, lossCount)
return Math.round(bet) * 100
}
function randomSeed() {
const words = ['Alpha ','Bra3qtwvo ','Charlie ','Delta ','Echo ',
'Foxtrot ','Go3tewlf ','Hotel ','Indda ','Juliet ',
'Kiqagalo ','L24rqwima ','Mirhe ','November ','Oscar ',
'Papayww ','Quebec ','Romeo ','Sierra ','Tango ',
'Uniform ','Victor ','Whiskey ','X-ray ','pooper ','Zulu ']
return words[Math.floor(words.length * Math.random())] + words[Math.floor(words.length * Math.random())] + words[Math.floor(words.length * Math.random())]
}
=============================================