Code: Select all
Packet Parser: Unknown switch: 0983
Packet Parser: Unknown switch: 0983
Moderator: Moderators
Code: Select all
Packet Parser: Unknown switch: 0983
Packet Parser: Unknown switch: 0983
Code: Select all
[ValkRO]
ip 23.228.127.149
port 6900
version 32
master_version 1
charBlockSize 144
recvpackets recvpackets-valkro.txt
serverType kRO_RagexeRE_2012_06_18a
addTableFolders pRO
serverEncoding Western
private 1
Code: Select all
Stuck at prontera (116,72), while walking from (116,72) to (116,67).
Stuck during route.
Calculating lockMap route to: Payon Forest(pay_fild08)
Kevs [Shout]: T>my GSCARF = PECOband+??| S>+8MC,+8PVPsaber,+7imuff,+7cbuck
Player O n e P u n c h (4) is casting Teleport on himself (Delay: 0ms)
Packet Parser: Unknown switch: 0983
Stuck at prontera (116,72), while walking from (116,72) to (156,22).
Stuck during route.
Using Ever_Rox and Leopardo Extractor (Rename the filename to Ragexe) and run extractor2.exe:sotpi wrote:I dont know what to do now i use all what you say even the extractor the problem of my bot is the packets can you help me to get the packets this is the client
http://www.mediafire.com/download/9br5z ... alkexe.exe
you mean my recvpacket?? and i tried changing the receive to yours and its still the same standing there doing nothing.SkylorD wrote:Thanks. If it is not asking too much, could you post the recvpackets?
You need to edit your serverType (receive).
src>>network>>receive>>kRO>>RagexeRE_2012_06_18a
Change for this (click here).
Oh yea, map login = 0x22d
Code: Select all
#########################################################################
# OpenKore - Packet Receiveing
# This module contains functions for Receiveing packets to the server.
#
# 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.
########################################################################
# Korea (kRO)
# The majority of private servers use eAthena, this is a clone of kRO
package Network::Receive::kRO::RagexeRE_2012_06_18a;
use strict;
use base qw(Network::Receive::kRO::RagexeRE_2012_05_15a);
sub new {
my ($class) = @_;
my $self = $class->SUPER::new(@_);
my %packets = (
'0983' => ['actor_status_active', 'v a4 C V4', [qw(type ID flag tick unknown1 unknown2 unknown3)]], # 25 personal modification
'0977' => ['attack'],
);
foreach my $switch (keys %packets) { $self->{packet_list}{$switch} = $packets{$switch}; }
my %handlers = qw(
actor_status_active 0983
attack 0977
);
$self->{packet_lut}{$_} = $handlers{$_} for keys %handlers;
return $self;
}
1;
=pod
0x01FD,15,repairitem,2
0x023B,26,friendslistadd,2
0x0361,5,hommenu,2:4
0x0819,36,storagepassword,0
0x0288,-1,cashshopbuy,4:8
0x0802,26,partyinvite2,2
0x022D,19,wanttoconnection,2:6:10:14:18
0x0369,7,actionrequest,2:6
0x083C,10,useskilltoid,2:4:6
0x0439,8,useitem,2:4
0x0281,-1,itemlistwindowselected,2:4:8
0x0815,-1,reqopenbuyingstore,2:4:8:9:89
0x0817,2,reqclosebuyingstore,0
0x0360,6,reqclickbuyingstore,2
0x0940,-1,reqtradebuyingstore,2:4:8:12
0x0811,-1,searchstoreinfo,2:4:5:9:13:14:15
0x0835,2,searchstoreinfonextpage,0
0x0838,12,searchstoreinfolistitemclick,2:6:10
0x0437,5,walktoxy,2
0x035F,6,ticksend,2
0x0202,5,changedir,2:4
0x07E4,6,takeitem,2
0x0362,6,dropitem,2:4
0x07EC,8,movetokafra,2:4
0x0364,8,movefromkafra,2:4
0x0438,10,useskilltopos,2:4:6:8
0x0366,90,useskilltoposinfo,2:4:6:8:10
0x096A,6,getcharnamerequest,2
0x0368,6,solvecharname,2
0x08E5,41,bookingregreq,2:4
0x08E6,4
0x08E7,10,bookingsearchreq,2
0x08E8,-1
0x08E9,2,bookingdelreq,2
0x08EA,4
0x08EB,39,bookingupdatereq,2
0x08EC,73
0x08ED,43
0x08EE,6
0x08EF,6,bookingignorereq,2
0x08F0,6
0x08F1,6,bookingjoinpartyreq,2
0x08F2,36
0x08F3,-1
0x08F4,6
0x08F5,-1,bookingsummonmember,2:4
0x08F6,22
0x08F7,3
0x08F8,7
0x08F9,6
0x08FA,6
0x08FB,6,bookingcanceljoinparty,2
0x0907,5,moveitem,2:4
0x0908,5
0x08D7,28,battlegroundreg,2:4
0x08CF,10
0x08d2,10
0x0977,14
0x0983,29
0x08c9,2
=cut
still the same, character is just standing. cant seems to get whats wrong with it.SkylorD wrote:Try using xKore1. ?
Try this sT (src>>network>>receive>>kRO>>date):
Code: Select all
######################################################################### # OpenKore - Packet Receiveing # This module contains functions for Receiveing packets to the server. # # 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. ######################################################################## # Korea (kRO) # The majority of private servers use eAthena, this is a clone of kRO package Network::Receive::kRO::RagexeRE_2012_06_18a; use strict; use base qw(Network::Receive::kRO::RagexeRE_2012_05_15a); sub new { my ($class) = @_; my $self = $class->SUPER::new(@_); my %packets = ( '0983' => ['actor_status_active', 'v a4 C V4', [qw(type ID flag tick unknown1 unknown2 unknown3)]], # 25 personal modification '0977' => ['attack'], ); foreach my $switch (keys %packets) { $self->{packet_list}{$switch} = $packets{$switch}; } my %handlers = qw( actor_status_active 0983 attack 0977 ); $self->{packet_lut}{$_} = $handlers{$_} for keys %handlers; return $self; } 1; =pod 0x01FD,15,repairitem,2 0x023B,26,friendslistadd,2 0x0361,5,hommenu,2:4 0x0819,36,storagepassword,0 0x0288,-1,cashshopbuy,4:8 0x0802,26,partyinvite2,2 0x022D,19,wanttoconnection,2:6:10:14:18 0x0369,7,actionrequest,2:6 0x083C,10,useskilltoid,2:4:6 0x0439,8,useitem,2:4 0x0281,-1,itemlistwindowselected,2:4:8 0x0815,-1,reqopenbuyingstore,2:4:8:9:89 0x0817,2,reqclosebuyingstore,0 0x0360,6,reqclickbuyingstore,2 0x0940,-1,reqtradebuyingstore,2:4:8:12 0x0811,-1,searchstoreinfo,2:4:5:9:13:14:15 0x0835,2,searchstoreinfonextpage,0 0x0838,12,searchstoreinfolistitemclick,2:6:10 0x0437,5,walktoxy,2 0x035F,6,ticksend,2 0x0202,5,changedir,2:4 0x07E4,6,takeitem,2 0x0362,6,dropitem,2:4 0x07EC,8,movetokafra,2:4 0x0364,8,movefromkafra,2:4 0x0438,10,useskilltopos,2:4:6:8 0x0366,90,useskilltoposinfo,2:4:6:8:10 0x096A,6,getcharnamerequest,2 0x0368,6,solvecharname,2 0x08E5,41,bookingregreq,2:4 0x08E6,4 0x08E7,10,bookingsearchreq,2 0x08E8,-1 0x08E9,2,bookingdelreq,2 0x08EA,4 0x08EB,39,bookingupdatereq,2 0x08EC,73 0x08ED,43 0x08EE,6 0x08EF,6,bookingignorereq,2 0x08F0,6 0x08F1,6,bookingjoinpartyreq,2 0x08F2,36 0x08F3,-1 0x08F4,6 0x08F5,-1,bookingsummonmember,2:4 0x08F6,22 0x08F7,3 0x08F8,7 0x08F9,6 0x08FA,6 0x08FB,6,bookingcanceljoinparty,2 0x0907,5,moveitem,2:4 0x0908,5 0x08D7,28,battlegroundreg,2:4 0x08CF,10 0x08d2,10 0x0977,14 0x0983,29 0x08c9,2 =cut
Stuck at prontera (116,72), while walking from (116,72) to (116,67).