This is my Server info:
[FreynRO]
ip 74.208.227.24
port 5900
private 1
master_version 14
version 20
recvpackets freynro.txt
serverType kRO_RagexeRE_2013_08_07a
serverEncoding Western
charBlockSize 144
addTableFolders translated/kRO_english;kRO;kRO
Tried to adjust the other recvpackets.txt for my server and tried copying the RagexeRE_2013_08_07a recvpackets, still nothing works. Hope you can help me. Thanks
Packet Parser: Unknown Switch 0914 and 0915 Help! Thanks
Moderator: Moderators
-
- Noob
- Posts: 1
- Joined: 28 Feb 2016, 16:27
- Noob?: Yes
-
- Noob
- Posts: 13
- Joined: 13 May 2015, 19:04
- Noob?: Yes
Re: Packet Parser: Unknown Switch 0914 and 0915 Help! Thanks
im using the lastest openkore it works, hower it cannot detect players,npc, and monsters
i also recieved failed error when i use packet extractor v3 and peek
any work arround to fix it?
i also recieved failed error when i use packet extractor v3 and peek
any work arround to fix it?
loving you is so demn easy for me~
-
- Noob
- Posts: 13
- Joined: 17 Aug 2015, 00:51
- Noob?: Yes
Re: Packet Parser: Unknown Switch 0914 and 0915 Help! Thanks
add below code to openkore\src\Network\Receive\kRO\RagexeRE_2013_08_07a.pm (after "use base qw(Network::Receive::kRO::RagexeRE_2013_05_22);")bringiton08 wrote:This is my Server info:
[FreynRO]
ip 74.208.227.24
port 5900
private 1
master_version 14
version 20
recvpackets freynro.txt
serverType kRO_RagexeRE_2013_08_07a
serverEncoding Western
charBlockSize 144
addTableFolders translated/kRO_english;kRO;kRO
Tried to adjust the other recvpackets.txt for my server and tried copying the RagexeRE_2013_08_07a recvpackets, still nothing works. Hope you can help me. Thanks
Code: Select all
sub new {
my ($class) = @_;
my $self = $class->SUPER::new(@_);
my %packets = (
'0914' => ['actor_moved', 'v C a4 v3 V v5 a4 v6 a4 a2 v V C2 a6 C2 v2 a9 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 costume guildID emblemID manner opt3 stance sex coords xSize ySize lv font opt4 name)]],
'0915' => ['actor_exists', 'v C a4 v3 V v11 a4 a2 v V C2 a3 C3 v2 a9 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 costume guildID emblemID manner opt3 stance sex coords xSize ySize act lv font opt4 name)]],
'09DB' => ['actor_moved', 'v C a4 a4 v3 V v10 a4 a2 v V C2 a3 C3 v2 Z*', [qw(len object_type ID AID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tophead midhead hair_color clothes_color head_dir guildID emblemID manner opt3 stance sex coords xSize ySize act lv font name)]],
'09DC' => ['actor_connected', 'v C a4 a4 v3 V v11 a4 a2 v V C2 a3 C2 v2 a9 Z*', [qw(len object_type ID AID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tophead midhead hair_color clothes_color head_dir costume guildID emblemID manner opt3 stance sex coords xSize ySize lv font opt4 name)]],
'09DD' => ['actor_exists', 'v C a4 a4 v3 V v11 a4 a2 v V C2 a3 C3 v2 a9 Z*', [qw(len object_type ID AID walk_speed opt1 opt2 option type hair_style weapon shield lowhead tophead midhead hair_color clothes_color head_dir costume guildID emblemID manner opt3 stance sex coords xSize ySize act lv font opt4 name)]],
'08C8' => ['actor_action', 'a4 a4 a4 V3 x v C V', [qw(sourceID targetID tick src_speed dst_speed damage div type dual_wield_damage)]],
'08FF' => ['actor_status_active', 'a4 v V4', [qw(ID type tick unknown1 unknown2 unknown3)]],
'090F' => ['actor_connected', 'v C a4 v3 V v11 a4 a2 v V C2 a3 C2 v2 a9 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 costume guildID emblemID manner opt3 stance sex coords xSize ySize lv font opt4 name)]],
'08C7' => ['area_spell', 'x2 a4 a4 v2 C3', [qw(ID sourceID x y type range fail)]],
);
foreach my $switch (keys %packets) {
$self->{packet_list}{$switch} = $packets{$switch};
}
return $self;
}