Console ID Generator

Statut
N'est pas ouverte pour d'autres réponses.
Salut à tous !
Je sais que vous pensez que c'est une grosse arnaque (comme tous les generator d'ailleurs ^^)
Mais là, c'est un principe simple, il faut connecter sa console avec le petit tool en y inscrivant son adresse IP puis cliquer sur "generate and send" !

Comment ça marche :
Tout simplement les codes arrivent aléatoirement.
En plus clair, ce ne sont pas des codes définis mais c'est un peu comme un loterie, un numéro tombe.
3% des console ID délivrés par le tool sont correct, mais au moins, en 10min MAX vous tomberez sur un correct.
Si vous avez de la chance, vous en trouverez un dès le début !!!!

Le lien :


Le VirusScan :


Merci de lâcher un petit j'aime et j'espère fortement que ça va considérablement augmenter le nombre de Console ID postés sur ce forum (c'est la crise en ce moment) ^^

Je vous conseille de prendre un café pour ne pas vous endormir. :troll:
 
Verdict ? Ca marche pas ? :p
Ca marche mais c'est plutot long !

Au paasage :
00000001008500091410392A9FF56DBB00000000000000000000000000000000

Credits : Console ID Generator (ArTzMoDDeR)

Bon PSN les gens ! <3
 
Ca marche mais c'est plutot long !

Au paasage :
00000001008500091410392A9FF56DBB00000000000000000000000000000000

Credits : Console ID Generator (ArTzMoDDeR)

Bon PSN les gens ! <3
:o Beau gosse Je vais le squatter :D
 
Possible que tu le mette sur mediafire, car moi sur méga je bug:
 
Ca marche mais c'est plutot long !

Au paasage :
00000001008500091410392A9FF56DBB00000000000000000000000000000000

Credits : Console ID Generator (ArTzMoDDeR)

Bon PSN les gens ! <3
Dit plutôt que tu la choper sur consoleid.com gros mito
 
Merci pour ce "Générateur"
et aussi @sixmo pour ce lien ;)
 
il faut mettre l'ip de la ps3 ou du pc???
 
Salut à tous !
Je sais que vous pensez que c'est une grosse arnaque (comme tous les generator d'ailleurs ^^)
Mais là, c'est un principe simple, il faut connecter sa console avec le petit tool en y inscrivant son adresse IP puis cliquer sur "generate and send" !

Comment ça marche :
Tout simplement les codes arrivent aléatoirement.
En plus clair, ce ne sont pas des codes définis mais c'est un peu comme un loterie, un numéro tombe.
3% des console ID délivrés par le tool sont correct, mais au moins, en 10min MAX vous tomberez sur un correct.
Si vous avez de la chance, vous en trouverez un dès le début !!!!

Le lien :


Le VirusScan :


Merci de lâcher un petit j'aime et j'espère fortement que ça va considérablement augmenter le nombre de Console ID postés sur ce forum (c'est la crise en ce moment) ^^

elle ta bien servie ma source je comprend pourquoi on me retire mes sujet si rapidement NiaFF

public class Form1 : Form
{
private CCAPI PS3 = new CCAPI();

private IContainer components = null;

private GroupBox groupConnect;

private Button btnConnect;

private TextBox BoxIP;

private Label lblIP;

private GroupBox groupCID;

private Button btnCID;

private TextBox BoxCID;

public Form1()
{
this.InitializeComponent();
}

private void btnCID_Click(object sender, EventArgs e)
{
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.Append(Form1.Generator.Part1());
stringBuilder.Append(Form1.Generator.Part2());
stringBuilder.Append(Form1.Generator.Part3());
stringBuilder.Append(Form1.Generator.Part3a());
stringBuilder.Append(Form1.Generator.Part3b());
stringBuilder.Append(Form1.Generator.Part3c());
stringBuilder.Append(Form1.Generator.Part3d());
stringBuilder.Append(Form1.Generator.Part4());
stringBuilder.Append(Form1.Generator.Part5());
stringBuilder.Append(Form1.Generator.Part6());
stringBuilder.Append(Form1.Generator.Part7());
stringBuilder.Append(Form1.Generator.Part8());
stringBuilder.Append(Form1.Generator.Part9());
stringBuilder.Append(Form1.Generator.Part10());
stringBuilder.Append(Form1.Generator.Part11());
stringBuilder.Append(Form1.Generator.Part12());
stringBuilder.Append(Form1.Generator.Part13());
stringBuilder.Append(Form1.Generator.Part14());
stringBuilder.Append(Form1.Generator.Part15());
stringBuilder.Append(Form1.Generator.Part16());
this.BoxCID.Text = stringBuilder.ToString();
this.PS3.SetConsoleID(this.BoxCID.Text);
}

private void btnConnect_Click(object sender, EventArgs e)
{
if (!this.PS3.SUCCESS(this.PS3.ConnectTarget(this.BoxIP.Text)))
{
MessageBox.Show("Impossible to connect", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
else
{
MessageBox.Show("Connected !", "Success", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
}
}

private void btnDefProc_Click(object sender, EventArgs e)
{
}

protected override void Dispose(bool disposing)
{
if ((!disposing ? false : this.components != null))
{
this.components.Dispose();
}
base.Dispose(disposing);
}

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
this.PS3.DisconnectTarget();
}

private void Form1_Load(object sender, EventArgs e)
{
}

private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.groupConnect = new System.Windows.Forms.GroupBox();
this.btnConnect = new System.Windows.Forms.Button();
this.BoxIP = new System.Windows.Forms.TextBox();
this.lblIP = new System.Windows.Forms.Label();
this.groupCID = new System.Windows.Forms.GroupBox();
this.btnCID = new System.Windows.Forms.Button();
this.BoxCID = new System.Windows.Forms.TextBox();
this.groupConnect.SuspendLayout();
this.groupCID.SuspendLayout();
this.SuspendLayout();
//
// groupConnect
//
this.groupConnect.Controls.Add(this.btnConnect);
this.groupConnect.Controls.Add(this.BoxIP);
this.groupConnect.Controls.Add(this.lblIP);
this.groupConnect.Location = new System.Drawing.Point(14, 12);
this.groupConnect.Name = "groupConnect";
this.groupConnect.Size = new System.Drawing.Size(355, 72);
this.groupConnect.TabIndex = 0;
this.groupConnect.TabStop = false;
this.groupConnect.Text = "Connection";
//
// btnConnect
//
this.btnConnect.BackColor = System.Drawing.Color.DarkCyan;
this.btnConnect.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.btnConnect.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnConnect.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnConnect.Location = new System.Drawing.Point(258, 26);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(75, 23);
this.btnConnect.TabIndex = 2;
this.btnConnect.Text = "Connect";
this.btnConnect.UseVisualStyleBackColor = false;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// BoxIP
//
this.BoxIP.Location = new System.Drawing.Point(74, 28);
this.BoxIP.Name = "BoxIP";
this.BoxIP.Size = new System.Drawing.Size(178, 20);
this.BoxIP.TabIndex = 1;
this.BoxIP.Text = "192.168.0.";
//
// lblIP
//
this.lblIP.AutoSize = true;
this.lblIP.ForeColor = System.Drawing.Color.Black;
this.lblIP.Location = new System.Drawing.Point(22, 31);
this.lblIP.Name = "lblIP";
this.lblIP.Size = new System.Drawing.Size(46, 13);
this.lblIP.TabIndex = 0;
this.lblIP.Text = "PS3 IP :";
//
// groupCID
//
this.groupCID.Controls.Add(this.btnCID);
this.groupCID.Controls.Add(this.BoxCID);
this.groupCID.Location = new System.Drawing.Point(14, 110);
this.groupCID.Name = "groupCID";
this.groupCID.Size = new System.Drawing.Size(355, 70);
this.groupCID.TabIndex = 2;
this.groupCID.TabStop = false;
this.groupCID.Text = "Set Console ID";
//
// btnCID
//
this.btnCID.BackColor = System.Drawing.Color.DarkCyan;
this.btnCID.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnCID.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnCID.Location = new System.Drawing.Point(96, 45);
this.btnCID.Name = "btnCID";
this.btnCID.Size = new System.Drawing.Size(137, 23);
this.btnCID.TabIndex = 4;
this.btnCID.Text = "Generate and Set";
this.btnCID.UseVisualStyleBackColor = false;
this.btnCID.Click += new System.EventHandler(this.btnCID_Click);
//
// BoxCID
//
this.BoxCID.Location = new System.Drawing.Point(47, 19);
this.BoxCID.Name = "BoxCID";
this.BoxCID.Size = new System.Drawing.Size(243, 20);
this.BoxCID.TabIndex = 3;
//
// Form1
//
this.AcceptButton = this.btnCID;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
this.ClientSize = new System.Drawing.Size(375, 192);
this.Controls.Add(this.groupCID);
this.Controls.Add(this.groupConnect);
this.ForeColor = System.Drawing.Color.White;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximumSize = new System.Drawing.Size(391, 226);
this.MinimumSize = new System.Drawing.Size(391, 226);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "PS3 Console ID Générateur -By NiNoFR";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
this.groupConnect.ResumeLayout(false);
this.groupConnect.PerformLayout();
this.groupCID.ResumeLayout(false);
this.groupCID.PerformLayout();
this.ResumeLayout(false);

}

private void radioBlink_CheckedChanged(object sender, EventArgs e)
{
}

private void radioGreen_CheckedChanged(object sender, EventArgs e)
{
}

private void radioOff_CheckedChanged(object sender, EventArgs e)
{
}

private void radioOn_CheckedChanged(object sender, EventArgs e)
{
}

private void radioRed_CheckedChanged(object sender, EventArgs e)
{
}

private static class Generator
{
private static Random rand;

static Generator()
{
Form1.Generator.rand = new Random();
}

public static string Part1()
{
return "0000000";
}

public static char Part10()
{
char[] charArray = "29CD153A67".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part11()
{
char[] charArray = "1A3EDB98".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part12()
{
char[] charArray = "480A2FB".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part13()
{
char[] charArray = "9F75A8BE64D".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part14()
{
char[] charArray = "897C1AFE".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part15()
{
char[] charArray = "A7FB49683C".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part16()
{
char[] charArray = "85362ACBFED".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static string Part2()
{
return "100";
}

public static char Part3()
{
return '8';
}

public static char Part3a()
{
char[] charArray = "58C".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static string Part3b()
{
return "000";
}

public static char Part3c()
{
char[] charArray = "5B".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static string Part3d()
{
return "140";
}

public static char Part4()
{
char[] charArray = "24D60318537".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part5()
{
char[] charArray = "B863DE257C1".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part6()
{
char[] charArray = "3EA7FB596C".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part7()
{
char[] charArray = "D304A5C82E".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part8()
{
char[] charArray = "3B21CE7F".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}

public static char Part9()
{
char[] charArray = "86C4F90B12".ToCharArray();
int num = Form1.Generator.rand.Next((int)charArray.Length);
return charArray[num];
}
}
}
}
By NiNo oublie pas
 
t'as besoin d'avoir le tool ccapi instalé pour pouvoir l utiliser ;)
Pas compris explique psk quand me met connecter sa me mer un message d'eereur comme quoi impossible de se co !
 
Statut
N'est pas ouverte pour d'autres réponses.
Retour
Haut