[Release] Get Player Structure Call

10/07/2015 19:35 RingleRangleRob#1
There is so many stuff you can do with it. I don't want keep it longer private. Have Fun with it.

-------------------------------------------

S4Client.exe + 71DEE0 = Get Player Structure Call
S4Client.exe + 125BD24 = Instance

Code:
DWORD Struct = GetPlayerStructure(Instance, Player ID, 0);
example how i used it

Code:
PlayerCounter = GetPlayerNumber(GetPlayerInstance(??));

for (int i = 0; i <= PlayerCounter-1; i++)
{
	ID = GetPlayerID(GetPlayerInstance(??), i);
	S4Structure = GetPlayerStructure(GetInstance_(0x125BD24), ID, 0);
	AddListViewItem(hwndList, ID, ReadS4Name(S4Structure));
	Sleep(10);
}
Regards

FazeDaFapper
10/07/2015 19:41 Shin..#2
What does this do? :)
10/07/2015 19:42 RingleRangleRob#3
Quote:
Originally Posted by ScreamStream View Post
What does this do? :)
You can get the structure of a player ( need some knowlegdes )

then you can get

-> ID
-> Name
-> Position
-> HP ( Should be in )
-> Team Alpha / Beta / Neutral
... etc
10/07/2015 19:45 Shin..#4
Quote:
Originally Posted by FazeDaFapper View Post
You can get the structure of a player ( need some knowlegdes )

then you can get

-> ID
-> Name
-> Position
-> HP ( Should be in )
-> Team Alpha / Beta / Neutral
... etc
Cool ,but can you tell me which programm do i need for this?
10/07/2015 19:46 kiler1997#5
good job ;3
10/07/2015 19:48 RingleRangleRob#6
Quote:
Originally Posted by ScreamStream View Post
Cool ,but can you tell me which programm do i need for this?
Recommend to use C++ for this.
10/07/2015 20:14 makoyecol#7
i really dont understand that S4Client.exe + ???? please help me to understand it :D
10/07/2015 20:15 tuaprimadd#8
You can do ESP's with this. Good job (y)
10/07/2015 20:19 ilove20#9
Nice,that's usefull
10/07/2015 21:44 Xonivion#10
Quote:
Originally Posted by FazeDaFapper View Post
You can get the structure of a player ( need some knowlegdes )

then you can get

-> ID
-> Name
-> Position
-> HP ( Should be in )
-> Team Alpha / Beta / Neutral
... etc
Code:
[ENABLE]
Alloc(tdxx,512)
CreateThread(tdxx)

Testxx:
push 01
push 00
call s4client.exe+AE370
mov ecx,eax
call s4client.exe+AE9260

[DISABLE]
Dealloc(tdxx)
How can we use the player id thing with this aa codes?
10/07/2015 22:04 RazexSkillz#11
For those people who are asking "WTF CAN I DO WITH DIIIIS?!", you should have some experience in Hacking.
10/07/2015 22:29 golle12#12
Quote:
Originally Posted by Xonivion View Post
Code:
[ENABLE]
Alloc(tdxx,512)
CreateThread(tdxx)

Testxx:
push 01
push 00
call s4client.exe+AE370
mov ecx,eax
call s4client.exe+AE9260

[DISABLE]
Dealloc(tdxx)
How can we use the player id thing with this aa codes?
DWORD ID;
ID need to be the playerID from the structure

you need to push the playerID like this:
Testxx:
push 01
push 00
mov ID, eax+28 // you need the Player structure and copy them in ID
push ID // push ID
call s4client.exe+AE370
mov ecx,eax
call s4client.exe+AE9260
10/07/2015 22:34 RingleRangleRob#13
Quote:
Originally Posted by golle12 View Post
DWORD ID;
ID need to be the playerID from the structure

you need to push the playerID like this:
Testxx:
push 01
push 00
mov ID, eax+28 // you need the Player structure and copy them in ID
push ID // push ID
call s4client.exe+AE370
mov ecx,eax
call s4client.exe+AE9260
Player Structure includes more than only the ID

Code:
push 00
push ID
mov ecx,[Instance]
call GetStruct
..mov....
Struct ->
+0x44 = ID
+0x50 = Name
10/07/2015 22:46 Jugram#14
cool release just need to make trainer :p
10/07/2015 22:50 golle12#15
Quote:
Originally Posted by FazeDaFapper View Post
Player Structure includes more than only the ID

Code:
push 00
push ID
mov ecx,[Instance]
call GetStruct
..mov....
Struct ->
+0x44 = ID
+0x50 = Name
was only an example ô.o