OpenKore / openkore

A free/open source client and automation tool for Ragnarok Online
http://openkore.com
Other
1.25k stars 1.03k forks source link

a minor fix of Vx.pm #3847

Open hubertyang88 opened 3 months ago

hubertyang88 commented 3 months ago

------------------ Openkore Issues Template ------------------

in Vx.pm

use I18N qw(bytesToString);

sub packet {
...
    } elsif ($switch eq "09DE") {
        # Private message
        my ($privMsgU) = substr($msg, 8, 25) =~ /([\s\S]*?)\000/;
        my $privMsgUser = bytesToString($privMsgU);
        $self->pm_add($privMsgUser);
...
}

it will fix Private Chat use 09DE for Vx in case anyone need this.