Ill just start writing (its only an example for making an image of my problem)..
Structsize in Cheat: 5
REAL Structsize (WarRock): 8
So this is what happens...
Cheat: Player = index * 5
WarRock: Player = index * 8
Example...
Cheat: Player 6 = 25
WarRock: Player 6 = 40
And there's the fail. While the Cheat thinks of the 25 Offset for Player 6, it should be 40.
So in this case you would access Yaw from Player 4.
My question now is: How do you actually get the Structure Size of CPlayer from WarRock (or where do you find it?)
...And whats the difference between CPlayer and CPlayerInfo?
...And whats the difference between Local and Globalsize?
Structsize in Cheat: 5
REAL Structsize (WarRock): 8
So this is what happens...
Cheat: Player = index * 5
WarRock: Player = index * 8
Example...
Cheat: Player 6 = 25
WarRock: Player 6 = 40
And there's the fail. While the Cheat thinks of the 25 Offset for Player 6, it should be 40.
So in this case you would access Yaw from Player 4.
Code:
WarRock Cheat Offset ______________________________________________________________________________________________________________________________ 0 Pitch 0 0 | Yaw | 1 | PosX | 2 | PosY | 3 | PosZ | 4 | PlayerState 1 FAIL!!!! 5 | NoFallDamage | 6 | NoM134Idle | 7 1 Pitch | 8 | Yaw | 9 | PosX 2 10 | PosY | 11 | PosZ | 12 | PlayerState | 13 | NoFallDamage | 14 | NoM134Idle 3 15 2 Pitch | 16 | Yaw | 17 | PosX | 18 | PosY | 19 | PosZ 4 20 | PlayerState 21 | NoFallDamage 22 | NoM134Idle 23 3 Pitch 24 | Yaw 25 | PosX 26 | PosY 27 | PosZ 28 | PlayerState 29 | NoFallDamage 30 | NoM134Idle 31
...And whats the difference between CPlayer and CPlayerInfo?
...And whats the difference between Local and Globalsize?