Hi again! Thanks to your help, i've managed to achieve more or less what i wanted. However, do you know how i can set the parameters inside the script to only make the change of lossmult during a certain amount of bets, and then go back to the initial? Any help will be much apreciatted! thanks
ummmm put in another counter when you change the lossmult? set it to zero, increment it every roll... and when it gets to the number of bets you set, you can just set lossStartMult back to whatever you want...
--CODE HAS NOT BEEN TESTED!
if (!win) then
lossCount += 1
else
if lossCount >= 5 then
lossStartMult = 4
-- NEW COUNTER
lossStartMultCounter = 0
end
lossCount = 0
end
--Increment every roll
lossStartMultCounter += 1
-- if it gets to big, reset lossStartMult and reset the counter as well
if lossStartMultCounter >= xNumberOfBets then
lossStartMult = initialLossStartMultValue (or whatever else you feel like)
lossStartMultCounter = 0
end if
[/quote]
any idea about how to make the script change for a certain amount of bets? I've managed to change it from 5, let's say to 1 red streak, but i would like the script to do this change to 1 for example for 100 rolls, and then go back to 5 red streak. Do you have any idea on how to do it? Maybe with numbet? thanks!