Post: C# copy/paste code for DEX starters
07-26-2014, 01:01 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Hi all,

The first time i started coding for MW3 i thought wow i got my setup finished and visual studio running now what?
I saw all those cool offsets. But how the **** do i use them?

There are a lot of source codes on NGU. Some of them are easy and others are really complicated.

So i suggest you start here:

Requirements:
Jailbreak PS3 DEX
Debug Eboot
Windows xp/7/8
Microsoft Visualstudio - (Express will do)
ProDG Target Manager for PS3

OK here we go:

- Open Visualstudio
- Start new Project
- Pick C# windows forms application
- On the right of your screen you see Solution Explorer, right click Form1.cs and press "view designer"
- On the left you see ToolBox, click it. It's just drag and drop.
- You start by adding a Button. drag and drop into your form.
- When you press on the button it opens the a new window where you can add code to your button.

If you manage to get this working you can test your application by clicking Debug/Start Debugging.

Here some examples you can copy paste on your button.

GoodLuck !

// Connect: Create Connect Button "copy/paste"

private void button1_Click(object sender, EventArgs e)
{
PS3TMAPI.InitTargetComms();
PS3TMAPI.Connect(0, null);
PS3TMAPI.GetProcessList(0, out processIDs);
ulong uProcess = processIDs[0];
ProcessID = Convert.ToUInt32(uProcess);
}
// Connect : Create Attach Button "copy/paste"

private void button2_Click(object sender, EventArgs e)
{
PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID);
PS3TMAPI.ProcessContinue(0, ProcessID);
}

// No Host Mods : Create Advanced UAV Button On "copy/paste"

private void button14_Click(object sender, EventArgs e)
{
byte[] AUAV = new byte[] { 0x02 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x5F067, AUAV);
}

// No Host Mods : Create Advanced UAV Button Off "copy/paste"

private void button15_Click(object sender, EventArgs e)
{
byte[] AUAV = new byte[] { 0x01 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x5F067, AUAV);
}
// No Host Mods : Create RedBoxes Button On "copy/paste"

private void button8_Click(object sender, EventArgs e)
{
byte[] WALLHACK = new byte[] { 0x60, 0x00, 0x00, 0x00, };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x00065D14, WALLHACK);
}

// No Host Mods : Create RedBoxes Button Off "copy/paste"

private void button9_Click(object sender, EventArgs e)
{
byte[] WALLHACKoff = new byte[] { 0x41, 0x82, 0x00, 0x0C, };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x00065D14, WALLHACKoff);
}

// No Host Mods : Create Lazer Button On "copy/paste"

private void button18_Click(object sender, EventArgs e)
{
byte[] Laser = new byte[] { 0x01 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x000b6703, Laser);
}

// No Host Mods : Create Lazer Button Off "copy/paste"

private void button19_Click(object sender, EventArgs e)
{
byte[] Laseroff = new byte[] { 0x00 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x000b6703, Laseroff);
}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 5 users groaned at mrdarkblue for this awful post:

EliteHackzPS3, FusionIsDaName, Mx444, NeedaSlutSoon
07-27-2014, 03:13 PM #2
xProvXKiller
Climbing up the ladder
copy and pasting isnt coding let people learn the codes it helps newbs but i recommend to learn not just copy and paste!

The following 3 users say thank you to xProvXKiller for this useful post:

-JM-, kainer wainer
07-27-2014, 08:18 PM #3
-JM-
Space Ninja
I agree please let people learn not LEECH
07-27-2014, 11:47 PM #4
Matter of opinion. It think it's à good start to learn to code. Change values see what happens.
07-28-2014, 12:48 AM #5
kiwi_modz
I defeated!
Who the fuck still uses PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0,
What year is this 2012?

The following 6 users say thank you to kiwi_modz for this useful post:

Dan Dactyl, EncepT, FusionIsDaName, Joren, kainer wainer, Swaqq
07-31-2014, 08:01 PM #6
Haha, yeah got 6 comments, thanks. Thanks for the support, luv u 2 !!
08-02-2014, 07:05 AM #7
Smooth
< ^ > < ^ >
Originally posted by mrdarkblue View Post
Hi all,

The first time i started coding for MW3 i thought wow i got my setup finished and visual studio running now what?
I saw all those cool offsets. But how the **** do i use them?

There are a lot of source codes on NGU. Some of them are easy and others are really complicated.

So i suggest you start here:

Requirements:
Jailbreak PS3 DEX
Debug Eboot
Windows xp/7/8
Microsoft Visualstudio - (Express will do)
ProDG Target Manager for PS3

OK here we go:

- Open Visualstudio
- Start new Project
- Pick C# windows forms application
- On the right of your screen you see Solution Explorer, right click Form1.cs and press "view designer"
- On the left you see ToolBox, click it. It's just drag and drop.
- You start by adding a Button. drag and drop into your form.
- When you press on the button it opens the a new window where you can add code to your button.

If you manage to get this working you can test your application by clicking Debug/Start Debugging.

Here some examples you can copy paste on your button.

GoodLuck !

// Connect: Create Connect Button "copy/paste"

private void button1_Click(object sender, EventArgs e)
{
PS3TMAPI.InitTargetComms();
PS3TMAPI.Connect(0, null);
PS3TMAPI.GetProcessList(0, out processIDs);
ulong uProcess = processIDs[0];
ProcessID = Convert.ToUInt32(uProcess);
}
// Connect : Create Attach Button "copy/paste"

private void button2_Click(object sender, EventArgs e)
{
PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID);
PS3TMAPI.ProcessContinue(0, ProcessID);
}

// No Host Mods : Create Advanced UAV Button On "copy/paste"

private void button14_Click(object sender, EventArgs e)
{
byte[] AUAV = new byte[] { 0x02 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x5F067, AUAV);
}

// No Host Mods : Create Advanced UAV Button Off "copy/paste"

private void button15_Click(object sender, EventArgs e)
{
byte[] AUAV = new byte[] { 0x01 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x5F067, AUAV);
}
// No Host Mods : Create RedBoxes Button On "copy/paste"

private void button8_Click(object sender, EventArgs e)
{
byte[] WALLHACK = new byte[] { 0x60, 0x00, 0x00, 0x00, };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x00065D14, WALLHACK);
}

// No Host Mods : Create RedBoxes Button Off "copy/paste"

private void button9_Click(object sender, EventArgs e)
{
byte[] WALLHACKoff = new byte[] { 0x41, 0x82, 0x00, 0x0C, };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x00065D14, WALLHACKoff);
}

// No Host Mods : Create Lazer Button On "copy/paste"

private void button18_Click(object sender, EventArgs e)
{
byte[] Laser = new byte[] { 0x01 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x000b6703, Laser);
}

// No Host Mods : Create Lazer Button Off "copy/paste"

private void button19_Click(object sender, EventArgs e)
{
byte[] Laseroff = new byte[] { 0x00 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x000b6703, Laseroff);
}


Facepalm
08-07-2014, 05:53 AM #8
nanokeks
Pokemon Trainer
What is a debug eboot and where can i find one
08-16-2014, 07:26 AM #9
Turk_Warrior
League Champion
Originally posted by ResistTheKiwi View Post
Who the fuck still uses PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0,
What year is this 2012?


How Would you do it ?

Just Asking ?
08-18-2014, 01:36 PM #10
seb5594
Proud Former Admin
Originally posted by mrdarkblue View Post
Hi all,

The first time i started coding for MW3 i thought wow i got my setup finished and visual studio running now what?
I saw all those cool offsets. But how the **** do i use them?

There are a lot of source codes on NGU. Some of them are easy and others are really complicated.

So i suggest you start here:

Requirements:
Jailbreak PS3 DEX
Debug Eboot
Windows xp/7/8
Microsoft Visualstudio - (Express will do)
ProDG Target Manager for PS3

OK here we go:

- Open Visualstudio
- Start new Project
- Pick C# windows forms application
- On the right of your screen you see Solution Explorer, right click Form1.cs and press "view designer"
- On the left you see ToolBox, click it. It's just drag and drop.
- You start by adding a Button. drag and drop into your form.
- When you press on the button it opens the a new window where you can add code to your button.

If you manage to get this working you can test your application by clicking Debug/Start Debugging.

Here some examples you can copy paste on your button.

GoodLuck !

// Connect: Create Connect Button "copy/paste"

private void button1_Click(object sender, EventArgs e)
{
PS3TMAPI.InitTargetComms();
PS3TMAPI.Connect(0, null);
PS3TMAPI.GetProcessList(0, out processIDs);
ulong uProcess = processIDs[0];
ProcessID = Convert.ToUInt32(uProcess);
}
// Connect : Create Attach Button "copy/paste"

private void button2_Click(object sender, EventArgs e)
{
PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID);
PS3TMAPI.ProcessContinue(0, ProcessID);
}

// No Host Mods : Create Advanced UAV Button On "copy/paste"

private void button14_Click(object sender, EventArgs e)
{
byte[] AUAV = new byte[] { 0x02 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x5F067, AUAV);
}

// No Host Mods : Create Advanced UAV Button Off "copy/paste"

private void button15_Click(object sender, EventArgs e)
{
byte[] AUAV = new byte[] { 0x01 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x5F067, AUAV);
}
// No Host Mods : Create RedBoxes Button On "copy/paste"

private void button8_Click(object sender, EventArgs e)
{
byte[] WALLHACK = new byte[] { 0x60, 0x00, 0x00, 0x00, };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x00065D14, WALLHACK);
}

// No Host Mods : Create RedBoxes Button Off "copy/paste"

private void button9_Click(object sender, EventArgs e)
{
byte[] WALLHACKoff = new byte[] { 0x41, 0x82, 0x00, 0x0C, };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x00065D14, WALLHACKoff);
}

// No Host Mods : Create Lazer Button On "copy/paste"

private void button18_Click(object sender, EventArgs e)
{
byte[] Laser = new byte[] { 0x01 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x000b6703, Laser);
}

// No Host Mods : Create Lazer Button Off "copy/paste"

private void button19_Click(object sender, EventArgs e)
{
byte[] Laseroff = new byte[] { 0x00 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x000b6703, Laseroff);
}

I see you just try to help the community but we shouldn't help other ppl out with copyn paste, no one learns anything out of it and it's kinda pointless.
Thread Closed Smile

The following 4 users say thank you to seb5594 for this useful post:

cerealkiller, Geo, GMTPS3, Swaqq

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo