If u encounter this prob.... like me...
In Openkore 1.9.3b
QUOTE
Error message:
Malformed UTF-8 character (fatal) at C:/Documents and Settings/Administator/My Documents/bots/openkore-1.9.3/src/FileParsers.pm line 665, <FILE> line 592.
THESE STEPS ARE FOR THOSE WHO KNOW WHAT THEY ARE DOING. DO NOT USE THEM IF YOU ARE UNSURE OF WHAT THIS IS
To those people wanting to make 1.6.x work here is what you need to do
look for the src folder in openkore then find the file named functions.pl after wards search for this word
$switch eq "006B"
once you find that it should look like this
CODE
} elsif ($switch eq "006B" && $conState != 5) {
message("Received characters from Game Login Server\n", "connection");
$conState = 3;
undef $conState_tries;
undef @chars;
my %options;
Plugins::callHook('parseMsg/recvChars', \%options);
if (exists $options{charServer}) {
$charServer = $options{charServer};
} else {
$charServer = $remote_socket->peerhost . ":" . $remote_socket->peerport;
}
my $startVal = $msg_size % 106;
my $num;
for (my $i = $startVal; $i < $msg_size; $i += 106) {
e this line:
my $startVal = $msg_size % 106;
and also this one
for (my $i = $startVal; $i < $msg_size; $i += 106) {
change the number 106 to 108
that will be fine
source
http://darkmoon.ath.cx/viewtopic.php?f=4&t...hilit=&start=75