Packet Parser|Tokenizer (unknown/unsupported packets)

Forum closed. All further discussion to be discussed at https://github.com/OpenKore/

Moderators: Moderators, Developers

Message
Author
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#61 Post by EternalHarvest »

koriko wrote:Packet Tokenizer: Unknown switch: 07D9
FAQ mentions what to do.

benok123
Noob
Noob
Posts: 1
Joined: 31 Aug 2010, 05:30
Noob?: Yes

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#62 Post by benok123 »

unknown packet 080F
Valkyrie server pRO

Help po please T.T

kaBOTi
Plain Yogurt
Plain Yogurt
Posts: 78
Joined: 08 Jun 2008, 00:02
Noob?: No

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#63 Post by kaBOTi »

master Philippines - pRO: Sakray
server : 0
serverType used: pRO
kore version(svn revision is preferred): 2.1 (r7473)
packetswitch(es) + (finding out where they come from if you can): Packet Parser : Unknown Switch : 02CA (happens during character selection, openkore doesn't properly recognize character slot)

note : sakray is now on renewal.

insaneron
Noob
Noob
Posts: 1
Joined: 12 Sep 2010, 17:53
Noob?: No

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#64 Post by insaneron »

master Philippines - pRO: Sakray
serverType used: pRO
kore version(svn revision is preferred): 2.1 (r7476)
packetswitch(es) + (finding out where they come from if you can):
Packet Parser : Unknown Switch : 07FF,07F9
(doesnt detect any NPC)

User avatar
kLabMouse
Administrator
Administrator
Posts: 1301
Joined: 24 Apr 2008, 12:02

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#65 Post by kLabMouse »

insaneron wrote:master Philippines - pRO: Sakray
serverType used: pRO
kore version(svn revision is preferred): 2.1 (r7476)
packetswitch(es) + (finding out where they come from if you can):
Packet Parser : Unknown Switch : 07FF,07F9
(doesnt detect any NPC)
0x7f7-0x7f9 are PACKET_ZC_NOTIFY_*ENTRY packets (related to actors, their positions and appearance), equivalent to 0x78, 0x79, 0x7b but with more info.

Code: Select all

		'07F7' => ['actor_display', 'v C a4 v3 V v5 a4 v5 a4 a2 v V C2 a6 C2 v2 Z*',	[qw(len object_type ID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tick tophead midhead hair_color clothes_color head_dir guildID emblemID manner opt3 karma sex coords xSize ySize lv font name)]], # -1 # walking
		'07F8' => ['actor_display', 'v C a4 v3 V v10 a4 a2 v V C2 a3 C2 v2 Z*',			[qw(len object_type ID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tophead midhead hair_color clothes_color head_dir guildID emblemID manner opt3 karma sex coords xSize ySize lv font name)]], # -1 # spawning
		'07F9' => ['actor_display', 'v C a4 v3 V v10 a4 a2 v V C2 a3 C3 v2 Z*',			[qw(len object_type ID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tophead midhead hair_color clothes_color head_dir guildID emblemID manner opt3 karma sex coords xSize ySize act lv font name)]], # -1 # standing
Also, this need a modified actor_display function, like one in kRO Sakexe_0

0x7ff is PACKET_ZC_DEFINE_CHECK and it only informs client, what features are enabled (not used by Kore at the moment).

User avatar
kLabMouse
Administrator
Administrator
Posts: 1301
Joined: 24 Apr 2008, 12:02

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#66 Post by kLabMouse »

insaneron wrote:master Philippines - pRO: Sakray
serverType used: pRO
kore version(svn revision is preferred): 2.1 (r7476)
packetswitch(es) + (finding out where they come from if you can):
Packet Parser : Unknown Switch : 07FF,07F9
(doesnt detect any NPC)
07F7, 07F8, 07F9 added to ST0 in r7485

User avatar
kLabMouse
Administrator
Administrator
Posts: 1301
Joined: 24 Apr 2008, 12:02

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#67 Post by kLabMouse »

kaBOTi wrote:master Philippines - pRO: Sakray
server : 0
serverType used: pRO
kore version(svn revision is preferred): 2.1 (r7473)
packetswitch(es) + (finding out where they come from if you can): Packet Parser : Unknown Switch : 02CA (happens during character selection, openkore doesn't properly recognize character slot)

note : sakray is now on renewal.
Added packet 02CA in r7488.

anicole
Noob
Noob
Posts: 8
Joined: 05 Sep 2008, 06:44
Noob?: Yes

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#68 Post by anicole »

kLabMouse wrote:

Code: Select all

		'07F7' => ['actor_display', 'v C a4 v3 V v5 a4 v5 a4 a2 v V C2 a6 C2 v2 Z*',	[qw(len object_type ID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tick tophead midhead hair_color clothes_color head_dir guildID emblemID manner opt3 karma sex coords xSize ySize lv font name)]], # -1 # walking
		'07F8' => ['actor_display', 'v C a4 v3 V v10 a4 a2 v V C2 a3 C2 v2 Z*',			[qw(len object_type ID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tophead midhead hair_color clothes_color head_dir guildID emblemID manner opt3 karma sex coords xSize ySize lv font name)]], # -1 # spawning
		'07F9' => ['actor_display', 'v C a4 v3 V v10 a4 a2 v V C2 a3 C3 v2 Z*',			[qw(len object_type ID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tophead midhead hair_color clothes_color head_dir guildID emblemID manner opt3 karma sex coords xSize ySize act lv font name)]], # -1 # standing
Also, this need a modified actor_display function, like one in kRO Sakexe_0

0x7ff is PACKET_ZC_DEFINE_CHECK and it only informs client, what features are enabled (not used by Kore at the moment).
May I ask if I want to add the above manually, where should I add to?
Or where can I download one already updated?
Much thanks

User avatar
kLabMouse
Administrator
Administrator
Posts: 1301
Joined: 24 Apr 2008, 12:02

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#69 Post by kLabMouse »

anicole wrote: May I ask if I want to add the above manually, where should I add to?
Or where can I download one already updated?
Much thanks
Already in SVN.

valhalla
Noob
Noob
Posts: 5
Joined: 01 Oct 2010, 09:51
Noob?: Yes

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

#70 Post by valhalla »

master Philippines - pRO: Valhalla
server : 0
serverType used: pRO
kore version(svn revision is preferred): openkore_ready

packet switches:
Packet Parser : Unknown Switch : 07FF (during game login)
Packet Parser : Unknown Switch : 07FD (when encountering loots)
the bot always DCs too. I can't seem to use the packet length extractor either because it says the file was protected. help please?

last thing is, do I just have to "right click>SVN update" to update my files?

thanks!

Locked