Le début donne sa si j'ai bien compris:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using PS3Lib;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private PS3API PS3 = new PS3API(SelectAPI.TargetManager);
private static PS3API PS4 = new PS3API(SelectAPI.TargetManager);
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void pictureBox1_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void label2_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
if (PS3.ConnectTarget())
{
string Message = "Connecté avec succès !";
MessageBox.Show(Message, "Connecté !", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
PS3.CCAPI.Notify(CCAPI.NotifyIcon.INFO, "Tu m'a connecté !!");
PS3.CCAPI.RingBuzzer(CCAPI.BuzzerMode.Single);
label1.ForeColor = System.Drawing.Color.Lime;
this.label1.Text = "Je suis connecté !";
}
}
private void button2_Click(object sender, EventArgs e)
{
if (PS3.AttachProcess())
{
}
else { MessageBox.Show("Probleme lors de l'attachement (asure toi d'étre dans le jeu !)", "Erreur...", MessageBoxButtons.OK, MessageBoxIcon.Error); } //Attach
PS3.CCAPI.Notify(CCAPI.NotifyIcon.WRONGWAY, "Attaché!! Ne me lache plus!!");
PS3.CCAPI.RingBuzzer(CCAPI.BuzzerMode.Double);
label2.ForeColor = System.Drawing.Color.Lime;
this.label2.Text = "Je suis attaché !";
}
private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
PS3.ChangeAPI(SelectAPI.ControlConsole);
}
private void radioButton2_CheckedChanged(object sender, EventArgs e)
{
PS3.ChangeAPI(SelectAPI.TargetManager);
}
}
}
EDIT:
Enfin réussi a faire tourner tous sa ^^ maintenant alors je n'aime pas accélérer les choses mais je ne comprend pas comment tu ces quelle offset fait quoi, ( CA

expemle: ofset 00H10161 => godmode) et comment fait-on pour trouver ces adresses et leur correspondance? O_O