Also, I DO NOT allow this code to be posted on any other Website, I.E 'PortalCentric, Se7enSins, etc..' Also if you don't know by now, you have to use PS3Lib with this, or your own, but you will have to change it to fit with your own coding.
public class Buttonz
{
public static int
DpadUp = 13617,
DpadDown = 14129,
DpadLeft = 14641,
DpadRight = 12594,
Cross = 13618,
Square = 12593,
Circle = 13106,
R2 = 53,
R1 = 49,
L2 = 55,
L1 = 13105,
L3 = 57,
R3 = 14130;
}
public static bool ButtonPressed(int client, int Button)
{
if (BitConverter.ToInt16(PS3.GetBytes(0x38A91A52 + ((uint)client * 0x6EA00), 2), 0) == Button)
return true;
else return false;
}
public class Buttonz
{
public static int
DpadUp = 13617,
DpadDown = 14129,
DpadLeft = 14641,
DpadRight = 12594,
Cross = 13618,
Square = 12593,
Circle = 13106,
R2 = 53,
R1 = 49,
L2 = 55,
L1 = 13105,
L3 = 57,
R3 = 14130;
}
public static bool ButtonPressedOffline(int client, int Button)
{
if (BitConverter.ToInt16(PS3.GetBytes(0x38FA1A52 + ((uint)client * 0x6EA00), 2), 0) == Button)
return true;
else return false;
}
if (ButtonPressed(0, Buttonz.DpadDown))
MessageBox.Show("Client o down");
else if (ButtonPressed(1, Buttonz.L1))
MessageBox.Show("Client 1 L1");
Copyright © 2026, NextGenUpdate.
All Rights Reserved.