Abyssea Boxes In Packets

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » Windower » General » Abyssea boxes in packets
Abyssea boxes in packets
 
Offline
Posts:
By 2022-08-26 04:06:33
| Edit  | Link | 引用 | 返事
 
Post deleted by User.
Offline
Posts: 150
By Dazusu 2022-08-26 05:05:43  
I just check all chests that appear and block 0x034.
Code
if id == 0x05c then
	local packet = packets.parse('incoming', data)
	local ki = data:unpack('i', 0x05)


ki holds the id of the key item, 0x258(600) is time/stone fragment, and depop other chests to get rid of them.

-D
[+]
 
Offline
Posts:
By 2022-08-26 06:09:20
 Undelete | Edit  | Link | 引用 | 返事
 
Post deleted by User.
 Shiva.Thorny
Offline
サーバ: Shiva
Game: FFXI
user: Rairin
Posts: 2170
By Shiva.Thorny 2022-08-26 06:30:54  
model id is 2 bytes at offset 0x32 in incoming packet 0x00E

or 'Model' field in windower's packet libs
[+]
 
Offline
Posts:
By 2022-08-26 07:01:49
 Undelete | Edit  | Link | 引用 | 返事
 
Post deleted by User.
 Shiva.Thorny
Offline
サーバ: Shiva
Game: FFXI
user: Rairin
Posts: 2170
By Shiva.Thorny 2022-08-26 07:03:05  
those numbers don't seem right, have you verified with the packet? i don't really know windower's apis
 
Offline
Posts:
By 2022-08-26 07:03:44
 Undelete | Edit  | Link | 引用 | 返事
 
Post deleted by User.
 Shiva.Thorny
Offline
サーバ: Shiva
Game: FFXI
user: Rairin
Posts: 2170
By Shiva.Thorny 2022-08-26 07:09:00  
i'll go take a look, it has to be in 0x0E or it wouldn't be able to display.. i know that the other chest systems use model id, but it's possible they're using something like an animation flag to change color (or windower's apis are just wrong atm)

contents aren't sent until you interact regardless, but color has to be
[+]
 Shiva.Thorny
Offline
サーバ: Shiva
Game: FFXI
user: Rairin
Posts: 2170
By Shiva.Thorny 2022-08-26 07:15:49  
965 is blue, 968 is red, 969 is gold, and you probably just messed up your packetviewer observations (keep in mind indexes aren't color coded, so if you aren't observing in real time you may see different values from the same index)
[+]
 
Offline
Posts:
By 2022-08-26 07:24:51
 Undelete | Edit  | Link | 引用 | 返事
 
Post deleted by User.
[+]
Offline
Posts: 150
By Dazusu 2022-08-26 07:33:06  
Shiva.Thorny said: »
965 is blue, 968 is red, 969 is gold, and you probably just messed up your packetviewer observations (keep in mind indexes aren't color coded, so if you aren't observing in real time you may see different values from the same index)

Thanks for this!
[+]