jobsaboba system po...
 
Notifications
Retirer tout

jobsaboba system pour ARTE

20 Posts
8 Utilisateurs
0 Likes
3,875 Vu
(@geotrouvetout)
Reputable Member
Inscription: Il y a 17 ans
Posts: 429
Début du sujet  

http://www.rouletteforum.net/cgi-bin/fo ... 213680587/

http://www.rouletteforum.net/cgi-bin/fo ... 78401/s-0/

voici le code de son programme, y comprends-tu kkchose dans sa façon de jouer ???

// 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.

   
Citation
(@artemuse)
Noble Member
Inscription: Il y a 17 ans
Posts: 1400
 

Désolé GÉO mais y'a pas grand chose à tirer de ce code.


   
RépondreCitation
(@lucipasfer)
Noble Member
Inscription: Il y a 17 ans
Posts: 1374
 

C'est fou le nombre de candidats prêts à suivre l'expérience


   
RépondreCitation
(@sweath)
Active Member
Inscription: Il y a 17 ans
Posts: 7
 

Comment il a réussi à trouver le bon numéro sortant ?


   
RépondreCitation
(@coren137)
Reputable Member
Inscription: Il y a 17 ans
Posts: 361
 

Je suis pas trop doué en anglais mais j'ai compris le principal je crois..

Mais son prog il l'a mis à disposition ? Il y a un moyen de le récupérer ?


   
RépondreCitation
(@coren137)
Reputable Member
Inscription: Il y a 17 ans
Posts: 361
 

Geo comment tu as eu le code ? Tu as l'application ?


   
RépondreCitation
(@geotrouvetout)
Reputable Member
Inscription: Il y a 17 ans
Posts: 429
Début du sujet  

Geo comment tu as eu le code ? Tu as l'application ?

je n'ai pas l'application, c'est pourquoi je faisais appel au savoir d' ARTE pour identifier le langage du code et le transcrire de façon plus compréhensible.


   
RépondreCitation
(@coren137)
Reputable Member
Inscription: Il y a 17 ans
Posts: 361
 

D'accord merci Geo..

Si c'est confirmé que ça fonctionne je me demande ce qu'il va en faire, si une poignée de personnes y aura accès


   
RépondreCitation
(@geo_tt)
Noble Member
Inscription: Il y a 16 ans
Posts: 2103
 

le programme est actuellement disponible.


   
RépondreCitation
(@coren137)
Reputable Member
Inscription: Il y a 17 ans
Posts: 361
 

Merci pour l'info !

Je reviens de vacances sinon je t'aurai répondu plut tot.

Et ou peut on le trouver plse?

merci Geo


   
RépondreCitation
(@coren137)
Reputable Member
Inscription: Il y a 17 ans
Posts: 361
 

Et toi, l'as tu testé? Des conclusions ?


   
RépondreCitation
(@geo_tt)
Noble Member
Inscription: Il y a 16 ans
Posts: 2103
 

poubelle ! (il a rejoint les systemes Winkel et consors)
il a une faille et pas des moindres : les alternances RNRNRNRN....


   
RépondreCitation
(@coren137)
Reputable Member
Inscription: Il y a 17 ans
Posts: 361
 

d'acc tant pis et merci quand meme


   
RépondreCitation
 6rus
(@6rus)
Estimable Member
Inscription: Il y a 17 ans
Posts: 215
 

poubelle ! (il a rejoint les systemes Winkel et consors)
il a une faille et pas des moindres : les alternances RNRNRNRN....

Geo_TT, est-ce que les alternatives "RNRNRNRN..." sont la seule faille du système ? Mer6


   
RépondreCitation
(@geo_tt)
Noble Member
Inscription: Il y a 16 ans
Posts: 2103
 

si tu arrives à occulter les alternances , c'est un systeme qui n'est pas pire que d'autres, il est basé sur des mises differentielles, l'application est telechargeable voir les liens que j'ai placé au début et faut fouiller.


   
RépondreCitation
Page 1 / 2
Share:
Casinos Jackpot