Post: Is there any good tutorials to create SPRX mod Menu(s)
04-29-2016, 01:06 PM #1
Hereisme766
Do a barrel roll!
(adsbygoogle = window.adsbygoogle || []).push({}); So im looking for a good tutorial to create SPRX mod menu, i would like it to be tutorial for FPS text mod menu aswell.
(adsbygoogle = window.adsbygoogle || []).push({});
04-29-2016, 01:13 PM #2
Originally posted by Hereisme766 View Post
So im looking for a good tutorial to create SPRX mod menu, i would like it to be tutorial for FPS text mod menu aswell.


I suggest watching the tutorial series on building a sprx here You must login or register to view this content.
very detailed and broken into different videos explaining everything from the design adding text creating the functions to modifying A eboot to call your sprx on launch of the game
04-29-2016, 01:25 PM #3
Hereisme766
Do a barrel roll!
Originally posted by Manical
I suggest watching the tutorial series on building a sprx here You must login or register to view this content.
very detailed and broken into different videos explaining everything from the design adding text creating the functions to modifying A eboot to call your sprx on launch of the game


Well can you tell me how to replace the offsets from that tutorial with my own, there seems to be only addresses there but not any values how can you add offsets without value(s)?
04-29-2016, 01:27 PM #4
Originally posted by Hereisme766 View Post
Well can you tell me how to replace the offsets from that tutorial with my own, there seems to be only addresses there but not any values how can you add offsets without value(s)?


Well you can either find the addresses in memory yourself or use some that have already been publicly released and use the bytes to enable/disable certain mods what game are you specifically looking to develop for as that will help me better answer you
04-29-2016, 01:32 PM #5
Hereisme766
Do a barrel roll!
Originally posted by Manical
Well you can either find the addresses in memory yourself or use some that have already been publicly released and use the bytes to enable/disable certain mods what game are you specifically looking to develop for as that will help me better answer you


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?
04-29-2016, 01:33 PM #6
Originally posted by Hereisme766 View Post
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
04-29-2016, 01:36 PM #7
Hereisme766
Do a barrel roll!
Originally posted by Manical
Then you would specifically need the elements for what ever game your developing for


Okay so i have everything i need already, FPS text, the size of it, the position etc.. but is there any tutorial that does sprx mod menu this way since its hard to follow tutorial where they use HUD elems instead of this.
04-29-2016, 01:37 PM #8
Originally posted by Hereisme766 View Post
Okay so i have everything i need already, FPS text, the size of it, the position etc.. but is there any tutorial that does sprx mod menu this way since its hard to follow tutorial where they use HUD elems instead of this.


No there's really not alot of tutorials for developing sprx that's why I linked you to that specific series as it's the most detailed one if come across so far
04-29-2016, 01:42 PM #9
Hereisme766
Do a barrel roll!
Originally posted by Manical
No there's really not alot of tutorials for developing sprx that's why I linked you to that specific series as it's the most detailed one if come across so far


Okay well thanks anyways for trying to help. i guess i should try make sprx mod menu for cod first before trying it for other games.
04-29-2016, 01:43 PM #10
Originally posted by Hereisme766 View Post
Okay well thanks anyways for trying to help. i guess i should try make sprx mod menu for cod first before trying it for other games.


Start with a menu base first hoss that's your best bet

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo