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(Debug.GetBytes(0x38AF1A52 + ((uint)client * 0x6FA00), 2), 0) == Button || BitConverter.ToInt16(Debug.GetBytes(0x39011A52 + ((uint)client * 0x6FA00), 2), 0) == Button)
return true;
else return false;
}
{
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(Debug.GetBytes(0x38AF1A52 + ((uint)client * 0x6FA00), 2), 0) == Button || BitConverter.ToInt16(Debug.GetBytes(0x39011A52 + ((uint)client * 0x6FA00), 2), 0) == Button)
return true;
else return false;
}
AlmightySo
SC58