Log in

View Full Version : [Release] Real Time Madden NFL 13 Editor



xI cHOcOLaTe
08-27-2012, 04:31 AM
http://www.youtube.com/watch?v=mto3-_hhPDc


This real time edits your XP for now, but I'll probably add more stuff later :D

Pictures:

http://img.ctrlv.in/503ae981acbb7.jpg


Source Code


public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

EndianIO io;
XboxConsole console;

private void Form1_Load(object sender, EventArgs e)
{
try
{
XboxManager xm = new XboxManagerClass();
console = xm.OpenConsole(xm.DefaultConsole);
console.DebugTarget.ConnectAsDebugger("MaddenHax", XboxDebugConnectFlags.Force);

foreach(IXboxModule module in console.DebugTarget.Modules)
{
if(module.ModuleInfo.Name.Contains("default"))
{
io = new EndianIO(new XboxMemoryStream(console.DebugTarget), EndianType.BigEndian);
io.Open();
GetXPNigga();
status.Text = "Connected to " + console.DebugTarget.Name + " [ " + IPAddress.Parse(console.IPAddress.ToString()) + " ]";
status.ForeColor = System.Drawing.Color.Green;
}
continue;
}
}
catch(Exception x)
{
MessageBox.Show(x.Message);
status.Text = "Not connected to Madden NFL 13 .xex";
status.ForeColor = System.Drawing.Color.Red;
}
}

private void GetXPNigga()
{
io.SeekTo(0xA595EA);
numXP.Value = (int)io.In.ReadInt16();
}

private void btn_setXP_Click(object sender, EventArgs e)
{
io.SeekTo(0xA595EA);
io.Out.Write(Convert.ToUInt16(numXP.Value));
}

private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
{
MessageBox.Show("Created by Chocolate\r\n\r\nVersion 0.1\r\n\r\n<3 360 Haven", "About", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}

CloudStrife7x
08-27-2012, 04:34 AM
great work on this editor xI cHOcOLaTe :D

hachitaco
08-27-2012, 05:18 AM
where is the editor??

xI cHOcOLaTe
08-27-2012, 05:30 AM
where is the editor??

It's just source code now, if you have Interop.XDevkit.dll just paste that

Noctis Caelum
08-27-2012, 05:31 AM
nice work, change that damn song man lol

xI cHOcOLaTe
08-27-2012, 05:34 AM
nice work, change that damn song man lol

Lol, it's a joke obviously.

Noctis Caelum
08-27-2012, 05:37 AM
Lol, it's a joke obviously.
i know, thats why i added lol...Man cant wait until tuesday..Redskins all day baby

fullmetal172
08-27-2012, 05:38 AM
awesome chocolate

thegutta
08-27-2012, 06:19 AM
Great work on the editor Ch0c0late keep it up bro :)

Serious_M
08-27-2012, 04:38 PM
nice job on this tool xI cHOcOLaTe

Shank
08-27-2012, 06:24 PM
Awesome I may just have to try this. Oh and thanks!

rgu60u
08-31-2012, 12:33 AM
Can someone please help me edit my xp I have TRIED AND ...EPIC FAIL

http://www.mediafire...u7luz7toknvu9n1

pureIso
08-31-2012, 12:40 AM
Can someone please help me edit my xp I have TRIED AND ...EPIC FAIL

http://www.mediafire...u7luz7toknvu9n1
Downloads - peek-poker - Memory peeking and poking - Google Project Hosting (http://code.google.com/p/peek-poker/downloads/list)

Try plugin package 2... The source code on page 1 has the wrong offset

legitmod
08-31-2012, 02:50 AM
Thanxs awesome works perfect.... but question is there away for the online career i've tried but i don't get very far so just wondering am i trying for no reason cause there is no way....?

MrSilverFox
09-01-2012, 06:07 AM
Well, I'd like to be able to use this..BUT...I don't know how, like I've tried a few things, but since I'm not very good at this I tended to fail at everything I tried...SO...I was wondering, what I needed to download, what I needed to copy, and where i needed to paste it. If someone wants to help that would be appreciated greatly.

MrSilverFox
09-01-2012, 06:22 PM
So how do I get the actual editor...Someone said something about just pasting that code, but I don't know where you would paste it at. If someone could elaborate for me I'd be greatly thankful.

actualmanx
09-01-2012, 06:33 PM
it goes into visual studio and you compile it. at least i think so thats what i did i even got the files but i think i must have the wrong endianIO file as i got a load of errors for that im lost with it ive spent the last 3 hours trying to get it to run i got 15 errors and 2 warning

fleadog99
09-01-2012, 08:12 PM
A little help please. I have VS 2012. Can someone give just a little hint. I can't get Peek Poker to work either.


EDIT:

I finally got Peek Poker to work. I had to install Lucida Sans Regular font. Apparently it couldn't find that font that's why it kept closing on me.

MrSilverFox
09-01-2012, 11:22 PM
Well, I downloaded peek poker and I have no clue what to do with it. Then I tried to download the plugin 2 and there was a lot of weird symbols in the files....So I got confused 0.o

pureIso
09-02-2012, 03:13 AM
Well, I downloaded peek poker and I have no clue what to do with it. Then I tried to download the plugin 2 and there was a lot of weird symbols in the files....So I got confused 0.o

Download peekpoker, unzip it.
Download the plugins and out the .dlls in the plugin folder.
Run PeekPoker
Select plugin

fleadog99
09-02-2012, 05:17 PM
The points in the Madden 13 Plugin of peekpoker, state 0 after connecting and peeking memory. The game is loaded and on main screen of offline career mode. I should have 34,806 XP but it lists 0. Any ideas? Is there a way I can open up the madden 13 plugin dll in VS 2012?

pureIso
09-02-2012, 06:00 PM
The points in the Madden 13 Plugin of peekpoker, state 0 after connecting and peeking memory. The game is loaded and on main screen of offline career mode. I should have 34,806 XP but it lists 0. Any ideas? Is there a way I can open up the madden 13 plugin dll in VS 2012?
Well did you at least try to poke? or peek?

fleadog99
09-02-2012, 06:18 PM
Could someone post all of the project files? I am trying to self-teach myself on Visual Studio 2012, how to get this to run.

I started a New Project
C# Windows Form Application
The Form1.cs [Design] pops up
I double click the form to view the code behind it
I paste your code inside the namespace {} brackets.
I press build solution, I get the following errors:
-The type or namespace name 'EndianIO' could not be found (are you missing a using directive or an assembly reference?)
-The type or namespace name 'XboxConsole' could not be found (are you missing a using directive or an assembly reference?)

I can't go any further. It also says cannot start debug because "Madden Real-Time Editor.exe" cannot be found, which is what I named the project.

Any help would be appreciated.

fleadog99
09-02-2012, 06:54 PM
Well did you at least try to poke? or peek?

Yes, sorry I thought I stated that. Yes I tried peeking and poking and nothing changed, but then again nothing froze up either so that's good.

pureIso
09-02-2012, 07:02 PM
Yes, sorry I thought I stated that. Yes I tried peeking and poking and nothing changed, but then again nothing froze up either so that's good.
Well when you peek you don't see anything change your have to refresh the page. Peek the go to the buy section and check for changes. Anyway good luck.
I just ted it now and it works fine.

Truist
09-03-2012, 05:23 AM
The tool looks awesome, but I'm not sure why I can't get it to work. I have what you mentioned, but when I put in the IP it can't find it/connect.. I used the one from Xbox sys info, am I missing something?

klo
09-03-2012, 08:26 PM
what the ip address

al_rashdy2
09-05-2012, 02:57 AM
Downloads - peek-poker - Memory peeking and poking - Google Project Hosting (http://code.google.com/p/peek-poker/downloads/list)

Try plugin package 2... The source code on page 1 has the wrong offset

thnx for sharin the link i love the app and the plugins easy and fast i would love to see more plugins XD
my first real time moddin and its better then all the save editors by far

ps: evry 1 should know that this works only for CREATED PLAYER not CURRENT or LEGENDS PLAYERS

zyr
11-17-2012, 09:16 PM
hey im a noob at this but i love madden13 for xbox360. just wondering how to get the editor to work on the xbox360, if anyone minds telling step for step how to do it. would really appreciate it.

Dontaskj
12-02-2015, 09:18 PM
I hope its worth it because I really love madden 13 lol

Sorceryy
12-22-2015, 09:49 AM
just posting for Dl xD

austin1995
03-16-2016, 10:00 PM
tyvm man awesome editor

austin1995
03-16-2016, 10:02 PM
awesome work choco