unknown packet 09A0

Wrote new code? Fixed a bug? Want to discuss technical stuff? Feel free to post it here.

Moderator: Moderators

Message
Author
Sinner
Noob
Noob
Posts: 2
Joined: 03 Jan 2013, 05:07
Noob?: Yes

Re: unknown packet 09A0

#11 Post by Sinner »

eski018 wrote:Dude, the iRo.pm file, what can i use to open it? is it pearl?
@eski018

just right click the file and open with either notepad or wordpad.

Kaspy
Halfway to Eternity
Halfway to Eternity
Posts: 398
Joined: 08 Jun 2012, 15:42
Noob?: No
Location: Brazil

Re: unknown packet 09A0

#12 Post by Kaspy »

eski018 wrote:Dude, the iRo.pm file, what can i use to open it? is it pearl?
Yes, it is a source code written in Perl, which is interpreted by ActivePerl (probably).
Image

anyathea20
Noob
Noob
Posts: 2
Joined: 30 Jan 2013, 06:45
Noob?: Yes

Re: unknown packet 09A0

#13 Post by anyathea20 »

sir d po madetect chareacters ko..pahelp nman po please. New Chaos po

nazri05
Noob
Noob
Posts: 19
Joined: 16 Jan 2013, 08:50
Noob?: Yes

Re: unknown packet 09A0

#14 Post by nazri05 »

ok all is done..no more problem about unknown packet 09A0 but i have 1 new problem about (ATTACK) can u try to fix becoz my character dont want attack the monster but when monster attack my character start attack...i dont know why dont want auto attack the monster,i make ready my config.exe...pls fix it..ty

shark24
Noob
Noob
Posts: 4
Joined: 21 Dec 2012, 00:49
Noob?: Yes

Re: unknown packet 09A0

#15 Post by shark24 »

BIG THANKS to u HERO no.1

danarvin005
Noob
Noob
Posts: 1
Joined: 01 Feb 2013, 09:05
Noob?: Yes

Re: unknown packet 09A0

#16 Post by danarvin005 »

this is the code that shown in iRo.pm

#########################################################################
# OpenKore - Network subsystem
# Copyright (c) 2006 OpenKore Team
#
# This software is open source, licensed under the GNU General Public
# License, version 2.
# Basically, this means that you're allowed to modify and distribute
# this software. However, if you distribute modified versions, you MUST
# also distribute the source code.
# See http://www.gnu.org/licenses/gpl.html for the full license.
#########################################################################
# iRO (International)
# Servertype overview: http://wiki.openkore.com/index.php/ServerType
package Network::Receive::iRO;

use strict;
use base qw(Network::Receive::ServerType0);

use Globals qw($questList);
use Log qw(debug);
use Misc qw(monsterName);

sub new {
my ($class) = @_;
my $self = $class->SUPER::new(@_);
my %packets = (
'006D' => ['character_creation_successful', 'a4 V9 v V2 v14 Z24 C6 v2', [qw(charID exp zeny exp_job lv_job opt1 opt2 option stance manner points_free hp hp_max sp sp_max walk_speed type hair_style weapon lv points_skill lowhead shield tophead midhead hair_color clothes_color name str agi vit int dex luk slot renameflag)]],
'0097' => ['private_message', 'v Z24 V Z*', [qw(len privMsgUser flag privMsg)]], # -1
);

foreach my $switch (keys %packets) {
$self->{packet_list}{$switch} = $packets{$switch};
}

my %handlers = qw(
received_characters 082D
actor_exists 0856
actor_connected 0857
actor_moved 0858
account_id 0283
);
$self->{packet_lut}{$_} = $handlers{$_} for keys %handlers;

return $self;
}

*parse_quest_update_mission_hunt = *Network::Receive::ServerType0::parse_quest_update_mission_hunt_v2;
*reconstruct_quest_update_mission_hunt = *Network::Receive::ServerType0::reconstruct_quest_update_mission_hunt_v2;

1;

fun2beme
Noob
Noob
Posts: 2
Joined: 06 Mar 2013, 02:29
Noob?: Yes

Re: unknown packet 09A0

#17 Post by fun2beme »

hi . ive already followed ur instruction on how to fix the problem code 09A0 but i have two problems facing now 1st is when i start my bot . it connects to the server but . a word in a yellow text says POCKET TOKENIEZER !. after than nothing happens. and when i follow your methods on how to fix it it says that i cant connect to . in red phrase can u do a quick response?

Kaspy
Halfway to Eternity
Halfway to Eternity
Posts: 398
Joined: 08 Jun 2012, 15:42
Noob?: No
Location: Brazil

Re: unknown packet 09A0

#18 Post by Kaspy »

fun2beme, update your OpenKore.
If you do not know how, read on Wiki
Image

Thirdy08
Noob
Noob
Posts: 1
Joined: 04 Mar 2013, 23:26
Noob?: Yes

Re: unknown packet 09A0

#19 Post by Thirdy08 »

Sir when i run the openkore

i get packet parser : unknown switch 082d and unknown switch 09a0

help me to fix plss ..

Kaspy
Halfway to Eternity
Halfway to Eternity
Posts: 398
Joined: 08 Jun 2012, 15:42
Noob?: No
Location: Brazil

Re: unknown packet 09A0

#20 Post by Kaspy »

Thirdy08 wrote:Sir when i run the openkore

i get packet parser : unknown switch 082d and unknown switch 09a0

help me to fix plss ..
pRO? If yes, try to build the solution that the Eternel made ​​for iRO.
Image

Post Reply