mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
fix: correct PLAYER_REST_STATE_EXPERIENCE wire indices for all expansions
The REST_STATE_EXPERIENCE field was erroneously set to the same index as PLAYER_SKILL_INFO_START in all four expansion JSON files, causing the rested XP tracker to read the first skill slot ID as the rested XP value. Correct indices derived from layout: EXPLORED_ZONES_START + 128 zone fields (or 64 for Classic) immediately precede PLAYER_FIELD_COINAGE, with REST_STATE_EXPERIENCE in the one slot between them. - WotLK: 636 → 1169 (1041 + 128 = 1169, before COINAGE=1170) - Classic: 718 → 1175 (1111 + 64 = 1175, before COINAGE=1176) - TBC: 928 → 1440 (1312 + 128 = 1440, before COINAGE=1441) - Turtle: 718 → 1175 (same as Classic layout)
This commit is contained in:
parent
99de1fa3e5
commit
1b55ebb387
4 changed files with 4 additions and 4 deletions
|
|
@ -28,7 +28,7 @@
|
|||
"PLAYER_BYTES_2": 192,
|
||||
"PLAYER_XP": 716,
|
||||
"PLAYER_NEXT_LEVEL_XP": 717,
|
||||
"PLAYER_REST_STATE_EXPERIENCE": 718,
|
||||
"PLAYER_REST_STATE_EXPERIENCE": 1175,
|
||||
"PLAYER_FIELD_COINAGE": 1176,
|
||||
"PLAYER_QUEST_LOG_START": 198,
|
||||
"PLAYER_FIELD_INV_SLOT_HEAD": 486,
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
"PLAYER_BYTES_2": 238,
|
||||
"PLAYER_XP": 926,
|
||||
"PLAYER_NEXT_LEVEL_XP": 927,
|
||||
"PLAYER_REST_STATE_EXPERIENCE": 928,
|
||||
"PLAYER_REST_STATE_EXPERIENCE": 1440,
|
||||
"PLAYER_FIELD_COINAGE": 1441,
|
||||
"PLAYER_QUEST_LOG_START": 244,
|
||||
"PLAYER_FIELD_INV_SLOT_HEAD": 650,
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
"PLAYER_BYTES_2": 192,
|
||||
"PLAYER_XP": 716,
|
||||
"PLAYER_NEXT_LEVEL_XP": 717,
|
||||
"PLAYER_REST_STATE_EXPERIENCE": 718,
|
||||
"PLAYER_REST_STATE_EXPERIENCE": 1175,
|
||||
"PLAYER_FIELD_COINAGE": 1176,
|
||||
"PLAYER_QUEST_LOG_START": 198,
|
||||
"PLAYER_FIELD_INV_SLOT_HEAD": 486,
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
"PLAYER_BYTES_2": 154,
|
||||
"PLAYER_XP": 634,
|
||||
"PLAYER_NEXT_LEVEL_XP": 635,
|
||||
"PLAYER_REST_STATE_EXPERIENCE": 636,
|
||||
"PLAYER_REST_STATE_EXPERIENCE": 1169,
|
||||
"PLAYER_FIELD_COINAGE": 1170,
|
||||
"PLAYER_QUEST_LOG_START": 158,
|
||||
"PLAYER_FIELD_INV_SLOT_HEAD": 324,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue