Addon: SheolHelper

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
3109 users online
フォーラム » Windower » General » Addon: SheolHelper
Addon: SheolHelper
 Phoenix.Akujii
Offline
サーバ: Phoenix
Game: FFXI
User: Akuji
Posts: 2
By Phoenix.Akujii 2025-03-31 23:38:53  
since march update: 40012 works
[+]
necroskull Necro Bump Detected! [80 days between previous and next post]
Offline
Posts: 19
By Smurf0365 2025-06-20 08:25:38  
So i have it set to 40012 on line 212... but im not sure if im doing something wrong?? loads i see Segments but not the Resistances???
necroskull Necro Bump Detected! [265 days between previous and next post]
Offline
By Draylo 2026-03-12 15:25:01  
Did you fix it?
Offline
Posts: 99
By wick 2026-03-13 01:26:11  
40013 now
[+]
necroskull Necro Bump Detected! [65 days between previous and next post]
Offline
Posts: 131
By Ninjaxtasy 2026-05-17 12:56:10  
what's working for people now?
 Quetzalcoatl.Balthor
Offline
サーバ: Quetzalcoatl
Game: FFXI
Posts: 39
By Quetzalcoatl.Balthor 2026-05-17 13:33:19  
40015
[+]
necroskull Necro Bump Detected! [83 days between previous and next post]
 Asura.Bippin
Offline
サーバ: Asura
Game: FFXI
User: Gunit
Posts: 1109
By Asura.Bippin 2026-08-08 13:51:27  
Anyone got the new message ID?
 Shiva.Thorny
Offline
サーバ: Shiva
Game: FFXI
User: Rairin
Posts: 4060
By Shiva.Thorny 2026-08-08 14:52:53  
the actual ID is 7248, but the high bit seems to usually be set and this doesn't actually cut the bit so 40016 will work
 Asura.Bippin
Offline
サーバ: Asura
Game: FFXI
User: Gunit
Posts: 1109
By Asura.Bippin 2026-08-08 15:29:34  
Shiva.Thorny said: »
the actual ID is 7248, but the high bit seems to usually be set and this doesn't actually cut the bit so 40016 will work

Already had it set to 40016 and it doesn't work...
Code
 if packet['Message ID'] == 40016 and player_total ~= packet['Param 2'] then
 Shiva.Thorny
Offline
サーバ: Shiva
Game: FFXI
User: Rairin
Posts: 4060
By Shiva.Thorny 2026-08-08 15:45:28  
You might need to fix the bit, then. That field is actually a 15 bit message ID and a high bit that is currently unknown (maybe leftover garbage data). I don't use windower or this addon, but a dump of the dat today on latest client shows it to be 7248 for zones 1019-1024. Zones 1025-1026 are 7251, but I don't think it's currently used because that's Gaol.
Code
local messageId = bit.band(packet['Message ID'], 0x7FFF)
if messageId == 7248 and player_total ~= packet['Param 2'] then


You can also try printing the message ID for verification if that doesn't work, but I can't see any other reason it wouldn't.

Edit: Not unknown, atom0s REd it.. but I'm unsure why it would've changed.
https://github.com/atom0s/XiPackets/tree/main/world/server/0x002A