Advertisement
BaSs_HaXoR

BO2 Button Monitoring 1.18

Sep 24th, 2014
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.45 KB | None | 0 0
  1. BO2 Button Monitoring 1.18
  2.  
  3. //SOURCE: NGUWINTER - http://pastebin.com/utHTK6H4
  4.  
  5.  #region Local Button Monitoring
  6.         public class ButtonMonitoring
  7.         {
  8.             public static bool PressUp()
  9.             {
  10.                 return PS3.Extension.ReadBool(0x00f0a90f);
  11.             }
  12.             public static bool PressDown()
  13.             {
  14.                 return PS3.Extension.ReadBool(0x00f0a91f);
  15.             }
  16.             public static bool PressLeft()
  17.             {
  18.                 return PS3.Extension.ReadBool(0x00f0a92f);
  19.             }
  20.             public static bool PressRight()
  21.             {
  22.                 return PS3.Extension.ReadBool(0x00f0a93f);
  23.             }
  24.             public static bool PressL1()
  25.             {
  26.                 return PS3.Extension.ReadBool(0x00f0a81f);
  27.             }
  28.             public static bool PressR1()
  29.             {
  30.                 return PS3.Extension.ReadBool(0x00f0a82f);
  31.             }
  32.             public static bool PressL2()
  33.             {
  34.                 return PS3.Extension.ReadBool(0x00f0a8ef);
  35.             }
  36.             public static bool PressR2()
  37.             {
  38.                 return PS3.Extension.ReadBool(0x00f0a8ff);
  39.             }
  40.             public static bool PressL3()
  41.             {
  42.                 return PS3.Extension.ReadBool(0x00f0a8cf);
  43.             }
  44.             public static bool PressR3()
  45.             {
  46.                 return PS3.Extension.ReadBool(0x00f0a8df);
  47.             }
  48.             public static bool PressTriangle()
  49.             {
  50.                 return PS3.Extension.ReadBool(0x00f0a80f);
  51.             }
  52.             public static bool PressSquare()
  53.             {
  54.                 return PS3.Extension.ReadBool(0x00f0a7ff);
  55.             }
  56.             public static bool PressX()
  57.             {
  58.                 return PS3.Extension.ReadBool(0x00f0a7df);
  59.             }
  60.             public static bool PressCircle()
  61.             {
  62.                 return PS3.Extension.ReadBool(0x00f0a7ef);
  63.             }
  64.             public static bool PressSelect()
  65.             {
  66.                 return PS3.Extension.ReadBool(0x00f0a8bf);
  67.             }
  68.             public static bool PressStart()
  69.             {
  70.                 return PS3.Extension.ReadBool(0x00f0a8af);
  71.             }
  72.             /* Example:
  73.  
  74.             if(ButtonMonitoring.PressUp())
  75.             {
  76.                 MessageBox.Show("Up Pressed");
  77.             }
  78.  
  79.             */
  80.         }
  81.         #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement