Offset for find X, Y, Z and RGB server marker?

0xNull

Member
Joined
Jul 14, 2018
Messages
24
Reaction score
0
Hello anyone there!

I had such a question: how to find the coordinates of the X, Y, Z marker on the radar and their color, which the server is putting? I do not know how on English servers, but on Russian servers - when you write out / gps and choose a place there - a mark is placed on the radar (and not a marker that we put on the map with the right mouse button) , Or in singleplayer version of the game, there too set such markers (they are put by the game itself). Please help me)
 

0xNull

Member
Joined
Jul 14, 2018
Messages
24
Reaction score
0
user88 said:
x,y,z
Code:
fX 0xC7DEC8

fY 0xC7DECC
fZ 0xC7DED0


for color maybe u have to go trough marker pools

How i can did this? Trought cheat engine, for example?

Maybe have some addresses?

How i can got RGB? :D

And yet one a question: Where you found those addresses? Just I've been looking for a long time and cannot find even those addresses..
 

Parazitas

God
Staff member
Joined
Jan 2, 2017
Messages
3,315
Solutions
7
Reaction score
935
Location
Lithuania
CLEO

[shcode=cpp]
{$CLEO .cs}
//{$NOSOURCE}

0000: NOP

REPEAT
WAIT 0
UNTIL 0AFA: SAMP_IS_READY

WHILE TRUE
WAIT 0

//////////////// ONLY IF MARKER ACTIVE
0A8D: 0@ = read_memory 0xC7DEC8 size 4 virtual_protect 0 {X}
0A8D: 1@ = read_memory 0xC7DECC size 4 virtual_protect 0 {Y}
0A8D: 2@ = read_memory 0xC7DED0 size 4 virtual_protect 0 {Z}
CHATMSG "%f %f %f" -1 0@ 1@ 2@

END
[/shcode]
 
Top