1
Bugs and Suggestions / Re: Stake is not working at all, Primedice works
« on: October 03, 2020, 01:25:00 am »
Hi,
The error is: "error.service_disabled" .
The error is: "error.service_disabled" .
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
betcalc = 0.002747 --(<-- Edit your betcalc for risk management)
bethigh = true
stopnow = false
first = true
done = true
chance = 48
betcount = 1
profittarget = 20547.00000000 --(<-- Edit your Profit target for stop!!!)
if (betcalc < 0.001) then print("Please set betcalc then restart the script") stop() end
base = balance * (betcalc / 100000)
curbet = base * 3.7255
nextbet = base
function dobet()
r = math.random(2)
if r == 1 then
bethigh = true
else
bethigh = true
end
if betcount == 1 then
betcount=0
resetseed();
else
betcount=betcount+1
end
if (balance) >= profittarget then
ching()
alarm()
stop()
print(balance)
print("PROFIT TARGET ACHIEVED!!!")
end
if (balance) < (nextbet) then
ching()
alarm()
stop()
print(balance)
print("BALANCE INSUFFICIENT FUNDS")
end
base = balance * (betcalc / 100000)
if (first) then
if(stopnow) then stop() end
if !win then
chance = math.random(45,50)
nextbet = curbet
first = false
done = true
end
end
if(!first and !done) then
if(stopnow) then stop() end
if win then
chance = 27.5
curbet = base * 3.7255
nextbet = base
first = true
done = true
else
curbet = curbet * 3.7255
nextbet = curbet
chance = 72.5
end
end
print("=========================================")
print(" ")
print("You Won ") print(profit) print(" for this Session")
print(" ")
print("Your Balance is ") print(balance)
print(" ")
print("=========================================")
done = false
end
betcalc = 0.002747 --(<-- Edit your betcalc for risk management)
NextBet.High = true
stopnow = false
first = true
done = true
NextBet.Chance = 48
betcount = 1
profittarget = 20547.00000000 --(<-- Edit your Profit target for stop!!!)
if (betcalc < 0.001) then Print("Please set betcalc then restart the script") stop() end
base = balance * (betcalc / 100000)
curbet = base * 3.7255
NextBet.Amount = base
function DoDiceBet(PreviousBet, Win, NextBet)
r = math.random(2)
if r == 1 then
NextBet.High = true
else
NextBet.High = true
end
if betcount == 1 then
betcount=0
ResetSeed();
else
betcount=betcount+1
end
if (balance) >= profittarget then
Ching()
Alarm()
stop()
Print(balance)
Print("PROFIT TARGET ACHIEVED!!!")
end
if (balance) < (NextBet.Amount) then
Ching()
Alarm()
stop()
Print(balance)
Print("BALANCE INSUFFICIENT FUNDS")
end
base = balance * (betcalc / 100000)
if (first) then
if(stopnow) then stop() end
if !Win then
NextBet.Chance = math.random(45,50)
NextBet.Amount = curbet
first = false
done = true
end
end
if(!first and !done) then
if(stopnow) then stop() end
if Win then
NextBet.Chance = 27.5
curbet = base * 3.7255
NextBet.Amount = base
first = true
done = true
else
curbet = curbet * 3.7255
NextBet.Amount = curbet
NextBet.Chance = 72.5
end
end
Print("=========================================")
Print(" ")
Print("You Won ") Print(profit) Print(" for this Session")
Print(" ")
Print("Your Balance is ") Print(balance)
Print(" ")
Print("=========================================")
done = false
end
function ResetDice(NextBet)
NextBet.Amount=base
NextBet.Chance=48
NextBet.High=true
end