Character: Difference between revisions

From wowdev
Jump to navigation Jump to search
(New page: In this block several data about the player's and its target's infomation is hold. *'''by vsloathe on 12th Sep. 07, 15:40''' +0x00 player ID - 8 bytes integer +0x10 - x - float +0x14 -...)
 
No edit summary
Line 3: Line 3:
*'''by vsloathe on 12th Sep. 07, 15:40'''
*'''by vsloathe on 12th Sep. 07, 15:40'''


+0x00 player ID - 8 bytes integer  
+0x00 int64 player ID - 8 bytes integer  
+0x10 - x - float
+0x10 float x
+0x14 - y - float
+0x14 float y
+0x18 - z - float
+0x18 float z
+0x1C - horizontal direction - float (0 ... 2*PI)  
+0x1C float horizontal direction (0 ... 2*PI)  
+0x20 - vertical direction - float (-PI/2 ... PI/2)  
+0x20 float vertical direction (-PI/2 ... PI/2)  
+0x30 ->(4 bytes address, pointer to another structure) +0x58 health - 4 bytes integer
+0x30 pointer (4 bytes address, pointer to another structure) +0x58 health - in32
+0x30 -> +0x5C mana - 4 bytes integer
+0x30 pointer +0x5C mana - int32
+0x40 target ID - 8 bytes integer
+0x40 int64 target ID
+0x58 health - 4 bytes integer
+0x58 int32 health
+0x5C mana - 4 bytes integer
+0x5C int32 mana

Revision as of 15:09, 12 September 2007

In this block several data about the player's and its target's infomation is hold.

  • by vsloathe on 12th Sep. 07, 15:40
+0x00	int64	player ID - 8 bytes integer 
+0x10	float	x
+0x14	float	y
+0x18	float	z
+0x1C	float	horizontal direction (0 ... 2*PI) 
+0x20	float	vertical direction (-PI/2 ... PI/2) 
+0x30	pointer	(4 bytes address, pointer to another structure) +0x58 health - in32 
+0x30	pointer	+0x5C mana - int32
+0x40	int64	target ID
+0x58	int32	health
+0x5C	int32	mana