What's new

BO3 1.00 PS4 Offsets

DeathRGH

DeathRGH

¯\_(ツ)_/¯
Messages
1,161
Reaction score
363
Points
210
Sin$
7
Below you can find a few basic addresses for black ops 3 1.00 on ps4.

The process you need to attach to:
Code:
//bo3 process
eboot.bin

Basic adresses within the player state:
("index" is the diffrence between clients)
Code:
0x21A8164 //playerState
0x17010 //index
 
0x21A8167 //client freeze (0x01 - frozen) || (0x00 - unfrozen)
0x21A8180 //client flag (0x04 - default) || (0x05 - godmode) || (0x06 - spectate) || (0x07 - spectate w/ godmode)
0x21A8190 //client X, Y, Z
0x21A87AC //client killstreak 1
0x21A87B0 //client killstreak 2
0x21A87B4 //client killstreak 3
0x21A87B8 //client ammo primary reserve
0x21A87BC //client ammo secondary reserve
0x21A87F4 //client ammo 1
0x21A87F8 //client ammo 2
0x21A87FC //client ammo 3
0x21A8800 //client ammo 4
0x21A8804 //client ammo 5
0x21A8808 //client ammo 6
0x21A88E4 //client uav offset (0x00 - default) || (0x02 - scramble uav)
0x21A88E9 //client vision flag (0x00 - default) || (0x80 - thermal)
0x21A88F9 //client body state flag (0x00 - default) || (0x01 - cloak) || (0x02 - hologram)
0x21BED64 //client name
 
HYX

HYX

Administrator
Administrator
Lifetime
Hidden Devils
Scaling the Mountain Programmer Odysseus' Summit
Messages
2,503
Solutions
31
Reaction score
1,240
Points
1,075
Sin$
0
This will definitely come in handy thanks for this!
 
R

Reazer_ModZ_

Newbie
Messages
2
Reaction score
0
Points
10
Sin$
0
Hi Im new in BO3 Modding, and Im wondering how to fetch all Clients and not just the player it self! i am using
Code:
string name = PS4.Extension.ReadString(0x21BED64);
            player1_btn.Text = name;
to show the Players name. How do i get the other Players name?
 
DeathRGH

DeathRGH

¯\_(ツ)_/¯
Messages
1,161
Reaction score
363
Points
210
Sin$
7
Hi Im new in BO3 Modding, and Im wondering how to fetch all Clients and not just the player it self! i am using
Code:
string name = PS4.Extension.ReadString(0x21BED64);
            player1_btn.Text = name;
to show the Players name. How do i get the other Players name?
Add the index (0x17010).
So for example your name is just the name offset but if you want to get it for client 5 you have to add the index 5 times like that:

Code:
int clientIndex = 5;
string name = PS4.Extension.ReadString(0x21BED64 + (clientIndex * 0x17010);
player1_btn.Text = name;
 
R

Reazer_ModZ_

Newbie
Messages
2
Reaction score
0
Points
10
Sin$
0
I have never modded in bo3. What does this let you do?

If you mean my Question thats just to get the Player's Names from the current lobby you'r in. If you mean the Thread from DeathRGH, that are the Codes to for example enable GodMode or a Scrambled UAV. (Ex. Enable GodMode: PS4.WriteMemory(
0x21A8180, new byte[] { 0x05 };
Hope you understood^^
 
OrphanDestroyer

OrphanDestroyer

Newbie
Messages
2
Reaction score
0
Points
35
Sin$
0
If you mean my Question thats just to get the Player's Names from the current lobby you'r in. If you mean the Thread from DeathRGH, that are the Codes to for example enable GodMode or a Scrambled UAV. (Ex. Enable GodMode: PS4.WriteMemory(
0x21A8180, new byte[] { 0x05 };
Hope you understood^^
But how would you enter that in? Like to be used on the ps4
 
Top Bottom
Login
Register