public class Buttons
{
//Define Buttons For Modern Warfare 3
public static uint
X = 1024,
O = 512,
Square = 2097152,
L3 = 139264,
R3 = 262144,
L2 = 32768,
R2 = 16384,
Start = 128,
L1 = 2056,
R1 = 65536,
Crouch = 512,
Prone = 256;
}
public class PS3Types
{
// Create Connect Types
public static int StartButton;
public static byte[] BIND = new byte[4];
public static uint[] processIDs;
public static uint ProcessID;
}
private uint getPlayerState(int clientIndex)
{
// Get the playerState from entities.
byte[] monitor = new byte[4];
PS3.GetMemory(0x000FCA280 + ((uint)clientIndex * 0x280) + 0x158, monitor);
Array.Reverse(monitor);
uint Next = BitConverter.ToUInt32(monitor, 0);
return Next;
}
private uint UseButtonMonitoring(int client)
{
// Get buttons value.
return (getPlayerState(client) + 0x3609);
}
private uint DetectButton(int clientID)
{
// Reverse Byte[] to UInt32 and detect them.
PS3.GetMemory(UseButtonMonitoring(clientID), PS3Types.BIND);
return System.BitConverter.ToUInt32(PS3Types.BIND, 0);
}
//Define a Client if you want
uint client0 = DetectButton(0);
//Then you can use if/else statements for functions or something else.
if (client0 == Buttons.L1 + Buttons.R1)
{
//do something
}
Copyright © 2025, NextGenUpdate.
All Rights Reserved.