Home of the Ultimate Xbox 360 Modding Tool, Horizon. XboxMB.com is a community of Xbox 360 gamers and modders who share Tutorials, News, Reviews, and other resources. Xbox Message Boards is free to sign up and use, so what are you waiting for? Register Now!
I have been bug testing these and as of what i found, i have fixed. If you happen to find any bugs or ideas for me to add then post them here. The code gets sloppy because i got tired and some stuff wasn't working so i took the easy way around it, but made it sloppier and more complex. lol.
Changes from the other versions were bugfixes, saving RGB colors ( up to 2 ), and added instructions. I also don't have a working Jtag atm so i can't test this Xbox patch, but it should work just fine.
Credits to CraigsChrist8239 for base menu!
Credits to Mikeeeyy for prestige menu idea!
Credits to IELIITEMODZX for being first one the make!
How to use Dvar editor. Kinda tricky... Will make it more simple when i update it.
It is just like adding a function to Craig's Menu. But follow this syntax instead.
Code:
addCustomDvar( menu, text, function, var, max, min, inc, redColour, type )
menu - Menu the option is under.
text - What it will say in the menu.
function - should always be ::createDvare (will make this default next update)
var - The Dvar.
max - max amount on scroller.
min - minimum amount on scroller.
inc - increment, Dvar increases by how much.
redcolour - leave blank. or false for green glow.
type - do not include. ( will update )
/***So a proper option should look like this.***/
self addCustomDvar( "dvar", "Jump Height", ::createdvare, "jump_height", 999, 0, 3.9176471 );
////////////////////////////////////////////////////////////////////////////////////
To find the increment simple divide your max by 255. Then round the last number.
Say your max is 999.
999 / 255 = 3.91764706
rounded to 3.9176471