I have worked out a system that wins at roulette, my problem is i do maths not programming. if anyone would be interested in writing the programe, please e-mail me... if this post is in the wrong place i apologise, if im not allowed to ask for help i also apologise.... bit new to this stuff !
a system that wins at roulette
Page 1 of 112 Replies - 6699 Views - Last Post: 26 October 2010 - 03:41 PM
Replies To: a system that wins at roulette
#2
Re: a system that wins at roulette
Posted 21 May 2008 - 02:09 AM
jobsaboba, on 21 May, 2008 - 10:26 AM, said:
I have worked out a system that wins at roulette, my problem is i do maths not programming. if anyone would be interested in writing the programe, please e-mail me... if this post is in the wrong place i apologise, if im not allowed to ask for help i also apologise.... bit new to this stuff !
I don't want to ruin your fun, but I think you made some assumptions in your system that are simply not true in the real world. I would recommend you going to a casino and try your system first, you'll be really surprised, that the roulette works like it has never heard about probability theory, it looks like working on really different principles.
Also, this is known by the owners of casinos, and when somebody starts to win all the time (happened in some cases due to some specially crafted device that could estimate the result of the spin), he is banned pretty quickly from everywhere.
If you are thinking about using it on online roulette, then I think it is even less probable that you could win in the long term.
#4
Re: a system that wins at roulette
Posted 21 May 2008 - 08:10 AM
jobsaboba, on 21 May, 2008 - 01:26 AM, said:
I have worked out a system that wins at roulette, my problem is i do maths not programming. if anyone would be interested in writing the programe, please e-mail me... if this post is in the wrong place i apologise, if im not allowed to ask for help i also apologise.... bit new to this stuff !
thanks for the input, have tested the system it is completley different to anything seen before, prediction doesnt come into it, and will make 1 unit per spin. it never changes, so it can be taken from table to table and casino to casino. i dont understand coding so thats why i was asking.
cheers anyway.
#5
Re: a system that wins at roulette
Posted 21 May 2008 - 08:11 AM
Sounds like a sequel to "21"
#6
Re: a system that wins at roulette
Posted 21 May 2008 - 08:17 AM
If it works than good luck to you!
#7
Re: a system that wins at roulette
Posted 23 May 2008 - 10:31 AM
1lacca, on 21 May, 2008 - 08:17 AM, said:
If it works than good luck to you!
heres how far ive got
// true = left // false = right
// Insert the starting data
// Left
LCol.Add(0, true);
LCol.Add(1, true);
LCol.Add(2, true);
// Right
RCol.Add(0, true);
RCol.Add(1, true);
RCol.Add(2, true);
// Set the starting bets
RedA.Text = "3";
ZeroA.Text = "0";
BlackA.Text = "3";
// Set the colours
redside = true;
}
private void RedB_Click(object sender, EventArgs e)
{
DoResult(redside);
FindCBets(true);
FindCBets(false);
FindZBets();
redside = !redside;
}
private void ZeroB_Click(object sender, EventArgs e)
{
//DoZero();
}
private void BlackB_Click(object sender, EventArgs e)
{
DoResult(!redside);
FindCBets(true);
FindCBets(false);
FindZBets();
redside = !redside;
}
private int FindLow(bool side)
{
if (side) // Left
{
int tempint;
int tempint2;
tempint = -1;
IDictionaryEnumerator loop1 = LCol.GetEnumerator();
while (loop1.MoveNext())
{
tempint2 = int.Parse(loop1.Key.ToString());
if (tempint2 < 2)
{
if (tempint2 + 1 > tempint)
{
findlowkey = tempint2;
tempint = tempint2 + 1;
}
}
else
{
if (tempint2 > tempint)
{
findlowkey = tempint2;
tempint = tempint2;
}
}
break;
}
return tempint;
}
else // Right
{
int tempint;
int tempint2;
tempint = -1;
IDictionaryEnumerator loop1 = RCol.GetEnumerator();
while (loop1.MoveNext())
{
tempint2 = int.Parse(loop1.Key.ToString());
if (tempint2 < 2)
{
if (tempint2 + 1 < tempint)
{
findlowkey = tempint2;
tempint = tempint2 + 1;
}
}
else
{
if (tempint2 < tempint)
{
findlowkey = tempint2;
tempint = tempint2;
}
}
break;
}
return tempint;
}
}
private int FindHigh(bool side)
{
if (side) // Left
{
int tempint;
int tempint2;
tempint = -1;
IDictionaryEnumerator loop1 = LCol.GetEnumerator();
while (loop1.MoveNext())
{
tempint2 = int.Parse(loop1.Key.ToString());
if (tempint2 < 2)
{
if (tempint2 + 1 > tempint)
{
findhighkey = tempint2;
tempint = tempint2 + 1;
}
}
else
{
if (tempint2 > tempint)
{
findhighkey = tempint2;
tempint = tempint2;
}
}
break;
}
return tempint;
}
else // Right
{
int tempint;
int tempint2;
tempint = -1;
IDictionaryEnumerator loop1 = RCol.GetEnumerator();
while (loop1.MoveNext())
{
tempint2 = int.Parse(loop1.Key.ToString());
if (tempint2 < 2)
{
if (tempint2 + 1 > tempint)
{
findhighkey = tempint2;
tempint = tempint2 + 1;
}
}
else
{
if (tempint2 > tempint)
{
findhighkey = tempint2;
tempint = tempint2;
}
}
break;
}
return tempint;
}
}
private void FindCBets(bool side)
{
if (side) // Red
{
if (redside) // Left
{
if (LCol.Count == 1)
{
RedA.Text = FindLow(redside).ToString();
}else if(LCol.Count == 0)
{
LCol.Add(0, true);
LCol.Add(1, true);
LCol.Add(2, true);
RedA.Text = "3";
}else{
int tempint;
tempint = FindLow(side) + FindHigh(side);
RedA.Text = tempint.ToString();
}
}
else // Right
{
if (RCol.Count == 1)
{
RedA.Text = FindLow(redside).ToString();
}
else if (LCol.Count == 0)
{
RCol.Add(0, true);
RCol.Add(1, true);
RCol.Add(2, true);
RedA.Text = "3";
}
else
{
int tempint;
tempint = FindLow(redside) + FindHigh(redside);
RedA.Text = tempint.ToString();
}
}
}
else // Black
{
if (!redside) // Left
{
if (LCol.Count == 1)
{
BlackA.Text = FindLow(redside).ToString();
}
else if (LCol.Count == 0)
{
LCol.Add(0, true);
LCol.Add(1, true);
LCol.Add(2, true);
BlackA.Text = "3";
}
else
{
int tempint;
tempint = FindLow(side) + FindHigh(side);
BlackA.
cant see whats wrong but i guess lots. lol
#8
Re: a system that wins at roulette
Posted 23 June 2008 - 01:54 PM
Hey mate I would like to give it a try and help you if I can! I am into roulette stuff so I am interested!
#9
Re: a system that wins at roulette
Posted 23 June 2008 - 10:42 PM
Have fun getting dragged outside and getting beat with a baseball bat by three bouncers when they catch you cheating.
#10
Re: a system that wins at roulette
Posted 24 June 2008 - 12:00 AM
How exactly are you planning to use this without anyone noticing you?
#11
Re: a system that wins at roulette
Posted 28 June 2008 - 06:23 PM
Roulette is most of the time random however, they can be controlled to make you loose big time.
#12
Re: a system that wins at roulette
Posted 08 August 2010 - 05:25 PM
i can write an algorithm in excel that will test it for you if you want.
Less hassle than programming it in C
Less hassle than programming it in C
#13
Re: a system that wins at roulette
Posted 26 October 2010 - 03:41 PM
With roulette, in my experience the only way to actually profit is by keeping the gamble very simple (i.e. Black or Red / 50-50). Just keep betting on one of them and there is a good chance that you will come out a very small amount better off....
Page 1 of 1
|
|

New Topic/Question
This topic is locked



MultiQuote






|