Packet Parser|Tokenizer (unknown/unsupported packets)

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

Moderators: Moderators, Developers

Message
Author
bigedo
Noob
Noob
Posts: 1
Joined: 26 Dec 2008, 04:51
Noob?: No

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

#31 Post by bigedo »

server:idro
serverType used:22
kore version(svn revision is preferred):2.0.7
Packet Switch : 8e75(when connecto account server)
type of warning: Packet Parser: Unknown switch: xxxx

iMikeLance
Moderators
Moderators
Posts: 208
Joined: 01 Feb 2010, 17:37
Noob?: No
Location: Brazil - MG
Contact:

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

#32 Post by iMikeLance »

Server: bRO: Thor (brazil Ragnarok Online)
Kore version: 2.0.7, rev 7137
Packet Switch: 02DF (during KvM), 02E0(during KvM) - probably due to GvG mode
Type of Warning: Packet Parser: Unknown switch: xxxx
Tried everything: updating recvpackets.txt with the latest Ragexe.exe, and even tried to use pRO recvpackets with bRO. All gave me the same errors.
And a screenshot:
OpenKore during KvM battles.

Dark Airnel
Been there done that!
Been there done that!
Posts: 133
Joined: 09 Oct 2009, 01:43
Noob?: No

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

#33 Post by Dark Airnel »

Server: Astig RO
Kore Version: SVN r7132
Server Type: kRO_RagexeRE_2009_10_27a
Packet Switch: 043D
Type of Warning: Packet Parser: Unhandled Packet: 043D Handler: skill_postdelay

Lotus
Human
Human
Posts: 32
Joined: 26 Jan 2010, 12:07
Noob?: No

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

#34 Post by Lotus »

Technology wrote: for the other packetswitch: 043D, this packet isn't implemented in kore yet (it is the postskill delay packet and it was implemented in the kRO servertypes)
Regarding 043D, search before posting.

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

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

#35 Post by EternalHarvest »

rRO

Code: Select all

Packet Parser: Unknown switch: 01EC
<player> has left the guild.
Reason:
Source: http://rofan.ru/viewtopic.php?p=83337#p83337

googley71
Human
Human
Posts: 21
Joined: 06 Dec 2009, 11:30
Noob?: Yes

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

#36 Post by googley71 »

Esuna RO

Code: Select all

server: Esuna RO
serverType used: kRO_RagexeRE_2009_11_03a

kore version: Kore 2.0.7 SVN 7025
packetswitch: 

"Packet Parser: Unhandled Packet: 01FF Handler: high_jump" - appears after kore uses a knock-back skills such as Cart Revolution, Magnum Break, Charge Arrow, etc. 

type of warning: Packet Parser: Unhandled Packet: xxxx Handler: xxxxxxxxxx 

byrd
Human
Human
Posts: 21
Joined: 07 May 2009, 16:49
Noob?: No

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

#37 Post by byrd »

server: iRO Valkyrie
serverType used: iRO
Latest SVN (grabbed ~week ago)

Packet Parser: Unknown switch: 02DF
Packet Parser: Unknown switch: 02E0

When hitting battlegrounds



Edit: Just ripped new recvpackets using JVC's packet extractor and getting same values.

sinsin
Noob
Noob
Posts: 1
Joined: 17 Feb 2010, 23:15
Noob?: Yes

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

#38 Post by sinsin »

server:idro
serverType used:22
kore version(svn revision is preferred):2.0.7
Packet Switch : 6CF4 (when connecting to account server)
type of warning: Packet Tokenizer : Unknown switch: xxxx


I already ripped new recvpackets using JVC's packet extractor and getting same values.

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

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

#39 Post by kLabMouse »

sinsin wrote:serverType used:22
Packet Switch : 6CF4 (when connecting to account server)
IdRO has another thread in BugReports.
The Error message indicate that you misused Packet Extractor or The packets are encrypted (IdRo use Encrypted packets, that is unknown to us yet).

Zloba
Noob
Noob
Posts: 3
Joined: 24 Jun 2009, 03:53
Noob?: Yes

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

#40 Post by Zloba »

Code: Select all

Packet Parser: Unknown switch: 027B
Add to Receive/ServerType0.pm:

to parser table:

Code: Select all

'027B' => ['premium_rates_info', 'V3', [qw(exp death drop)]],

to handlers:

Code: Select all

sub premium_rates_info {
	my ($self, $args) = @_;
	message TF("Premium rates: exp %+i%%, death %+i%%, drop %+i%%.\n", $args->{exp}, $args->{death}, $args->{drop}), "info";

}
Please, check it. I'm not good in exp like 'V3'. There is three i32: exp, death and drop rates of premium account.

Locked