Originally posted by Hereisme766
That's not quite what i meant, i saw a text tutorial on 1 webpage that had tutorial to create small sprx mod menu using games FPS text String, which went like this.
enum Buttons : unsigned int
{
R1 = 0x4B,
L1 = 0x43,
R2 = 0xE7,
L2 = 0xDB,
R3 = 0xD3,
L3 = 0xC3,
DpadDown = 255,
DpadLeft = 0x10B,
DpadRight = 0x117,
DpadUp = 0xF3,
Cross = 0x13,
Square = 0x27,
Triangle = 0x33,
Circle = 0x1B
};
bool pressedButton(unsigned int button)
{
char offset = *(char*)0xCBCCC0 + button;
if (offset != 0)
return 1;
else return 0;
}
So how can i replace the Hud elems from this tutorial with this?
Then you would specifically need the elements for what ever game your developing for