Now i have This Code .
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 Joka_best1
{
public partial class Form1 : MetroFramework.Forms.MetroForm
{
public static uint ProcessID;
public static uint[] processIDs;
public static string snresult;
private static string usage;
public static string Info;
public static string Status;
public static string MemStatus;
private PS3API PS3 = new PS3API();
private Random rand = new Random();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
try
{
if (PS3.ConnectTarget())
{
string Message = "Du bist mit dieser API Verbunden :" + PS3.GetCurrentAPIName();
MessageBox.Show(Message, "Verbunden!");
}
else
{
string Message = "Es konnte keine Verbindung hergestellt werden :/";
MessageBox.Show(Message, "Fehler");
}
}
catch (Exception)
{
MessageBox.Show("Es konnte keine Verbindung hergestellt werden :/", "Fehler");
}
}
private void button2_Click(object sender, EventArgs e)
{
if (PS3.AttachProcess())
{
MessageBox.Show("Abgesichert!.", "Fertig");
}
else
{
MessageBox.Show("Kein Spiel gefunden, Starte den Multiplayer!", "Fehler.");
}
}
private void CEX_CheckedChanged(object sender, EventArgs e)
{
PS3.ChangeAPI(SelectAPI.ControlConsole);
}
}
}
but i have the STANDART BUTTONS & ALL not the NEW :
You must login or register to view this content.