Post: Uncharted 3 1.19 Offsets
07-20-2014, 10:38 PM #1
Chrise_deluxe
Pokemon Trainer
(adsbygoogle = window.adsbygoogle || []).push({}); i saw another guy who trys to sell his tool so i tought its better to release my offsets of course i have some more and maybe i will release theme to but not yet. This is to help people make their own Tools

link to my Tool : You must login or register to view this content.

here are some more functions i found:

-HudDamageElem: 0xDCC598

-ElementOffsets: 0xE18678

money: 0124D644
xp: 0124D640/ 0124D63C (mp)
clan: 0124D9B8 or 0x0124D005
-Name Offset:
0x0123F330
0x0124C0E0
0x0124BF60
0x33D3052C
0x0124CFA3
0x0124CE60
0x01241B68
0x012620FF
this offsets are for real name changer

here are some options for hacked names:
glichi 2 line name 0A
glichi @@@@@ name 7C
|X|
|T|
|A|
|S|
|C|
|FB| Facebook
|@H - Big Name
|@N| - Normal Name
|@S| - Small Name

Character Offset:
- Bad Guy: 0x0124E26C
Djinn - 4C 3D 21 5C

- Hero: 0x0124E26D
Djinn - 3D 21 5c

Vision Mod:
- Bright Vision : 0x11D20F0
- on 2F
- off 3F

- in game Money Player 1: 0x1262e68
- in game Money Player 2: 0x1262f98
- client 3: 0x012630C

1.19 God Mode: 0x479cd8
- on 0x60
- off 0x4e, 0x80, 4, 0x21

and this secound God Mode Offset:
- 0x479D08
- on 0x60
- off 0x4e, 0x80, 4, 0x21
this offsets also affects the health

Infinity Ammo: 0x6e4288
- on 0x60, 0x3D, 0x05, 0x74
- off 0xb1, 0x3D, 0x05, 0x74


easy coop games: 0x124d7a3
normal coop games: 0x124d7a7
hard coop games: 0x124d7ab
crushing coop games: 0x124d7af
reset stats: 0x124d6e4 mit 6f9

djin unlock: 0x124f000
mit 0x11, 0x11, 0x11, 0x11, 0x11, 0x11

platin rank: 0x124efea mit 0xf9

same offset is for gold silver etc just play arround with the bytes

stars: 0x1240000 bis 0x1241eff

kills multiplayer: 0x0124D6E4
Deaths multiplayer: 0x0124d6eb
co-op kills: 0x0124D79C
Prestige: 0x0124e75b
Score: 0x0124efe4
ticket: 0x0124efdf
total gold: 0x0124effa

classname offset for class 1: 0124D148
Primary Gun = 0124D168
Secound Gun = 0124D16C
Medaillen Rückstoß = 0124D164
Booster 1 = 0124D158
Booster 2 = 0124D15C


classname offset for class 2: 0124D178
Primary Gun = 0124D198
Secound Gun = 0124D19C
Medaillen Rückstoß = 0124D194
Booster 1 = 0124D188
Booster 2 = 0124D18C


classname offset for class 3: 0124D1A8
Primary Gun = 0124D1C8
Secound Gun = 0124D1CC
Medaillen Rückstoß = 0124D1C4
Booster 1 = 0124D1B8
Booster 2 = 0124D1BC

classname offset for class 4: 0124D1D8
Primary Gun = 0124D1F8
Secound Gun = 0124D1FC
Medaillen Rückstoß = 0124D1F4
Booster 1 = 0124D1E8
Booster 2 = 0124D1EC

red paw (rote Pfote) = 0x124F05E mit 0x01
Tournament Points: 0x0124efe4
wins: 0x124d6ec
Loses: 0x124d6f0
Headshots: 0x124d6f4
Time Played: 0x124d6f5
object Points: 0x124e767

Dont know if somebody needs this but with this you could make a mod menu so in this Example its a Aimchecker but you could also use it to make a mod Menu Happy
Code:
#region Aim_Check
private void Aimchecker_Tick(object sender, EventArgs e)
{
//I used a Vision Offset that is changing if you aim
byte[] getAim = new byte[4];
PS3.GetMemory (0x11D20A0, getAim);
Array.Reverse(getAim);
int Value = BitConverter.ToInt32(getAim, 0);

int not_aiming = new int();
not_aiming = 1065353216;
//just converted the byte to int to check if this int/bytes are stored in the Offset

int Running = new int();
Running = 1063693630;
//just converted the byte to int to check if this int/bytes are stored in the Offset

if (Value == not_aiming)
{
byte[] FPSText = Encoding.ASCII.GetBytes("not Aiming!");
//here i print a Fps text that says whether the Client is aiming

Array.Resize(ref FPSText, FPSText.Length + 1);
PS3.SetMemory(0x11D20E0, FPSText);
}
else if (Value == Running) //running changes also the vision offset so i had to declare it
{
byte[] FPSText = Encoding.ASCII.GetBytes("not Aiming!");
//here i print a Fps text that says whether the Client is aiming

Array.Resize(ref FPSText, FPSText.Length + 1);
PS3.SetMemory(0x11D20E0, FPSText);
}

else
{
//just put here the cod for the mod menu like options or Functions in

byte[] FPSText = Encoding.ASCII.GetBytes("Aiming!");
//just an example here it says the Client is aiming

Array.Resize(ref FPSText, FPSText.Length + 1);
PS3.SetMemory(0x11D20E0, FPSText);
}
}
#endregion

#region Aimbot On
private void metroButton17_Click(object sender, EventArgs e)
{
byte[] FPSON = new byte[] { 0x40 };
PS3.SetMemory(0x737E50, FPSON);
//turns FPS on

byte[] FPSPosition = new byte[] { 0x3F, 0x8F };
PS3.SetMemory(0x1158434, FPSPosition);
//set the Positon of the FPS more cenered

byte[] FPSText = Encoding.ASCII.GetBytes("Aimbot On");
Array.Resize(ref FPSText, FPSText.Length + 1);
PS3.SetMemory(0x11D20E0, FPSText);
//sets the Text "Aimbot on" as FPS text

MessageBox.Show("Aimbot is now Enabled!", "Aimbot ON", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
this.PS3.CCAPI.Notify(CCAPI.NotifyIcon.INFO, "Aimbot is now Enabled!");

Aimchecker.Start();
Aimchecker.Enabled = true;
//starts the Timer in the Region Aim_Check
}
#endregion

#region Aimbot OFF
private void metroButton18_Click(object sender, EventArgs e)
{
byte[] FPSText = Encoding.ASCII.GetBytes("Aimbot OFF!");
Array.Resize(ref FPSText, FPSText.Length + 1);
PS3.SetMemory(0x11D20E0, FPSText);
//sets the Text "Aimbot OFF" as FPS text

MessageBox.Show("Aimbot is now Disabled!", "Aimbot OFF", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
this.PS3.CCAPI.Notify(CCAPI.NotifyIcon.INFO, "Aimbot is now Disabled!");

byte[] FPSOFF = new byte[] { 0x41 };
PS3.SetMemory(0x737E50, FPSOFF);
//Turns FPS off

Aimchecker.Stop();
Aimchecker.Enabled = false;
//disables the Timer in the Region Aim_Check
}
#endregion



here is also the Button Monitoring Offset :
- 0x134D8A8
just get the Bytes for example L1 or other Key and convert it to int than you can use my Code just change the Offset and ints ^^

Credits to sc58

big Thanks to RayzMoDz he helped me a lot <3 <3 <3
if you use theme please give Credis
Last edited by OfficialJesseP ; 11-12-2016 at 04:31 AM. Reason: added Offset (Character, Vision) and Aimchecker Code

The following 9 users say thank you to Chrise_deluxe for this useful post:

/SneakerStreet/, AIBOLOS, anxify, Hate, Matteohackz, Phreaker, suspect0
08-14-2014, 07:50 AM #29
suspect0
Can’t trickshot me!
Originally posted by qamartheone View Post
check pm dude

i saw it and yes i will release tool for it with big clip
08-14-2014, 06:47 PM #30
Chrise_deluxe
Pokemon Trainer
Originally posted by suspect0 View Post
how to change the real name and people can see? did i have to change all the offsets with the same name?

0x0123F330
0x0124C0E0
0x0124BF60
0x33D3052C
0x0124CFA3
0x0124CE60
0x01241B68
0x012620FF


yes just make a Function for it
like my Code :

#region NameChanger
private void button30_Click(object sender, EventArgs e)
{

byte[] Name = Encoding.ASCII.GetBytes(textBox8.Text);
Array.Resize(ref Name, Name.Length + 1);
PS3.SetMemory(0x0123F330, Name);
PS3.SetMemory(0x0124C0E0, Name);
PS3.SetMemory(0x0124BF60, Name);
PS3.SetMemory(0x124bf60, Name);
PS3.SetMemory(0x33D3052C, Name);
PS3.SetMemory(0x0124CFA3, Name);
PS3.SetMemory(0x0124CE60, Name);
PS3.SetMemory(0x01241B68, Name);
PS3.SetMemory(0x012620FF, Name);
}
#endregion
08-15-2014, 05:08 AM #31
suspect0
Can’t trickshot me!
Originally posted by deluxe View Post
yes just make a Function for it
like my Code :

#region NameChanger
private void button30_Click(object sender, EventArgs e)
{

byte[] Name = Encoding.ASCII.GetBytes(textBox8.Text);
Array.Resize(ref Name, Name.Length + 1);
PS3.SetMemory(0x0123F330, Name);
PS3.SetMemory(0x0124C0E0, Name);
PS3.SetMemory(0x0124BF60, Name);
PS3.SetMemory(0x124bf60, Name);
PS3.SetMemory(0x33D3052C, Name);
PS3.SetMemory(0x0124CFA3, Name);
PS3.SetMemory(0x0124CE60, Name);
PS3.SetMemory(0x01241B68, Name);
PS3.SetMemory(0x012620FF, Name);
}
#endregion

thanks mate Reaper
i did it in my tool and i will try it out on ps3
08-15-2014, 06:02 AM #32
Originally posted by suspect0 View Post
thanks mate Reaper
i did it in my tool and i will try it out on ps3


lol dont just try...RELEASE it buddy !
08-15-2014, 07:20 AM #33
suspect0
Can’t trickshot me!
those medals offsets founded by suspect0 (me)
its all from two bytes!

Assistant:0x124D23
CAfterlife:0x124D242
Gunslinger:0x124D240
Commando:0x124D246
Fisticuffs:0x124D244
Strike Three:0x124D2D2
Streak:0x124D248
Fury:0x124D24E
Rage:0x124D24C
Rampant:0x124D252
Double Down:0x124D256
Tripled:0x124D254
Connect Four:0x124D25A
Five Not Alive:0x124D258
Fire In The Hole:0x124D25C
BBQ:
Assassin:0x124D276
Pull Down:0x124D27A
Kick Off:0x124D278
Triple Threat:0x124D288
Spray and Pray:0x124D28E
Head Hunter:0x124D29A
The Long Ranger:0x124D298
Shut´em Down:0x124D29E
First!:0x124D2A8
Defender:0x124D2AC
Fly on the Wall:0x124D2B6
Tricky:0x124D2B4
Unlucky:0x124D2BA
Retaliation:0x124D2B8
Executioner:0x124D2BE
Guard Duty:0x124D2BC
Avenger:0x124D2C2
Acquistions:0x124D2C0
Oh Snap!:0x124D2CE
Death From Above:0x124D2D0
Hail Mary:0x124D2D6
Lucky...:0x124D2D4
Dangerous:0x124D2CC
Riot Starter:0x124D2DA
Extinction:0x124D2D8
Pull!:0x124D2DE
Covered:0x124D2E2
Stay Low:0x124D2E0
Deep Cover:
Dizzy:0x124D2E4
Sunday Stroll:0x124D2EA
Marathon Runner:0x124D2E8
Think Vertically:0x124D2EE
Comeback:
Three Kickback King:0x124D2FA
In Your Face:0x124D2F8
Three Medal Pickup:0x124D304
Plus Cash:0x124D308
Yippie-Kai-Yay:0x124D31A
No Turret For You:0x124D318
Hard Target:0x124D328
Here,Hold This:0x124D32E
Defused:0x124D32C
Drake´s On A Plane:0x124D36E
Power Killer:0x124D36C
High Five:0x124D372
Hawk Down:0x124D370
Thanks Buddy!:0x124D376
Road Rage:0x124D282
Frag ´Em:0x124D360






08-15-2014, 08:08 AM #34
suspect0
Can’t trickshot me!
can you explain more about this
-HudDamageElem: 0xDCC598

-ElementOffsets: 0xE18678
i have no idea what is it
08-15-2014, 08:12 AM #35
Ahmed$
Save Point
Originally posted by suspect0 View Post
those medals offsets founded by suspect0 (me)
its all from two bytes!

Assistant:0x124D23
CAfterlife:0x124D242
Gunslinger:0x124D240
Commando:0x124D246
Fisticuffs:0x124D244
Strike Three:0x124D2D2
Streak:0x124D248
Fury:0x124D24E
Rage:0x124D24C
Rampant:0x124D252
Double Down:0x124D256
Tripled:0x124D254
Connect Four:0x124D25A
Five Not Alive:0x124D258
Fire In The Hole:0x124D25C
BBQ:
Assassin:0x124D276
Pull Down:0x124D27A
Kick Off:0x124D278
Triple Threat:0x124D288
Spray and Pray:0x124D28E
Head Hunter:0x124D29A
The Long Ranger:0x124D298
Shut´em Down:0x124D29E
First!:0x124D2A8
Defender:0x124D2AC
Fly on the Wall:0x124D2B6
Tricky:0x124D2B4
Unlucky:0x124D2BA
Retaliation:0x124D2B8
Executioner:0x124D2BE
Guard Duty:0x124D2BC
Avenger:0x124D2C2
Acquistions:0x124D2C0
Oh Snap!:0x124D2CE
Death From Above:0x124D2D0
Hail Mary:0x124D2D6
Lucky...:0x124D2D4
Dangerous:0x124D2CC
Riot Starter:0x124D2DA
Extinction:0x124D2D8
Pull!:0x124D2DE
Covered:0x124D2E2
Stay Low:0x124D2E0
Deep Cover:
Dizzy:0x124D2E4
Sunday Stroll:0x124D2EA
Marathon Runner:0x124D2E8
Think Vertically:0x124D2EE
Comeback:
Three Kickback King:0x124D2FA
In Your Face:0x124D2F8
Three Medal Pickup:0x124D304
Plus Cash:0x124D308
Yippie-Kai-Yay:0x124D31A
No Turret For You:0x124D318
Hard Target:0x124D328
Here,Hold This:0x124D32E
Defused:0x124D32C
Drake´s On A Plane:0x124D36E
Power Killer:0x124D36C
High Five:0x124D372
Hawk Down:0x124D370
Thanks Buddy!:0x124D376
Road Rage:0x124D282
Frag ´Em:0x124D360








I found all these Offsets not You
I'm CoBrA-EdItIoN
08-15-2014, 08:49 AM #36
Originally posted by Ahmed
I found all these Offsets not You
I'm CoBrA-EdItIoN


do u have the fix for god mode melee freeze problem ?
08-15-2014, 10:17 AM #37
suspect0
Can’t trickshot me!
i did all but the name change on my screen yes but people cant see and nothing chane in-game name if u killed some1 etc...

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo