Post: Button Monitoring Local Clients
07-15-2013, 08:25 PM #1
SC58
Former Staff
(adsbygoogle = window.adsbygoogle || []).push({}); Hey NGU, The other day i release fps offset to make a fps menu or whatever well heres Button Monitoring for local client to make the menu

    -MP-
Client 0 - 0x00D198AC
Client 1 - 0x00D1A9D4
Client 2 - 0x00D1BAFC
Client 3 - 0x00D1CC24
Client interval - 4392

    -ZOMBIE-
Client 0 - 0x00B4EB60
Client 1 - 0x00B4FC88
Client 2 - 0x00B50DB0
Client 3 - 0x00B51ED8
Client interval - 4392


Go You must login or register to view this content. to get the fps offsets

if u make a menu or use these please give credit to me thanksHappy

if someone want to make a c# code for these feel free ill give credit and update it to the post
(adsbygoogle = window.adsbygoogle || []).push({});

The following 9 users say thank you to SC58 for this useful post:

Eddie Mac, FAKA_ELITE, JLM, makeabce, MaNamesTyler, MoTmrD, xAJM, xPAQz
07-15-2013, 09:58 PM #2
MoTmrD
Banned
Thx man you best finding offset please i want offset uav Without host
07-16-2013, 01:26 AM #3
SC58
Former Staff
Originally posted by Q View Post
Thx man you best finding offset please i want offset uav Without host


just use my eboot it dont ban
07-16-2013, 01:58 AM #4
MoTmrD
Banned
Originally posted by SC58 View Post
just use my eboot it dont ban


just i want mod 1 just uav
11-13-2013, 07:05 PM #5
makeabce
I defeated!
Originally posted by SC58 View Post
Hey NGU, The other day i release fps offset to make a fps menu or whatever well heres Button Monitoring for local client to make the menu

    -MP-
Client 0 - 0x00D198AC
Client 1 - 0x00D1A9D4
Client 2 - 0x00D1BAFC
Client 3 - 0x00D1CC24
Client interval - 4392

    -ZOMBIE-
Client 0 - 0x00B4EB60
Client 1 - 0x00B4FC88
Client 2 - 0x00B50DB0
Client 3 - 0x00B51ED8
Client interval - 4392


Go You must login or register to view this content. to get the fps offsets

if u make a menu or use these please give credit to me thanksHappy

if someone want to make a c# code for these feel free ill give credit and update it to the post


Could you explain how to use these in C#?
I can't create BO1/MW2 Local Client menu if i don't know how to use these...=D

    
private bool Key_Down(int client, int buttonIndex)
{
if (buttonIndex < 0) return false;
byte[] key = new byte[4];
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0xFFFFFFFF, (ulong)(offset? + (buttonIndex << 4) + (client * interval?)), ref key);
Array.Reverse(key);
return BitConverter.ToInt32(key, 0) == 1;
}

class Buttons
{
int Dpad_Up = 0x14;
int Dpad_Down = 0x15;
int Button_B = 0x02;
int Button_A = 0x01;
int Button_R3 = 0x11;
}


(These codes are from bo2 local button client monitoring)
07-14-2014, 05:16 PM #6
xPAQz
Bounty hunter
yo i made a little code for this ^^

VB.Net
    Class DPAD
Public Shared Function DPADUP() As Boolean
Return Convert.ToBoolean(PS3.Extension.ReadByte(&HD199FF) = &H1)
End Function

Public Shared Function DPADDOWN() As Boolean
Return Convert.ToBoolean(PS3.Extension.ReadByte(&HD19A0F) = &H1)
End Function

Public Shared Function DPADRight() As Boolean
Return Convert.ToBoolean(PS3.Extension.ReadByte(&HD19A1F) = &H1)
End Function

Public Shared Function DPADLeft() As Boolean
Return Convert.ToBoolean(PS3.Extension.ReadByte(&HD19A1) = &H1)
End Function
End Class


C#:

    class DPAD
{
public static bool DPADUP()
{
return Convert.ToBoolean(PS3.Extension.ReadByte(0xd199ff) == 0x1);
}

public static bool DPADDOWN()
{
return Convert.ToBoolean(PS3.Extension.ReadByte(0xd19a0f) == 0x1);
}

public static bool DPADRight()
{
return Convert.ToBoolean(PS3.Extension.ReadByte(0xd19a1f) == 0x1);
}

public static bool DPADLeft()
{
return Convert.ToBoolean(PS3.Extension.ReadByte(0xd19a1) == 0x1);
}
}

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo