I've already tried to experiment with squelchdomain using:
Code: Select all
squelchDomains emotion, guildchat, guildnotice, party, partychat, publicchat, schat, useTeleport, map_event,
Thanks in advance.
Moderator: Moderators
Code: Select all
squelchDomains emotion, guildchat, guildnotice, party, partychat, publicchat, schat, useTeleport, map_event,
Code: Select all
my %packets = (
Code: Select all
'0977' => ['attack'],
Code: Select all
sub new {
my ($class) = @_;
my $self = $class->SUPER::new(@_);
my %packets = (
'0977' => ['attack'],
);
foreach my $switch (keys %packets) {
$self->{packet_list}{$switch} = $packets{$switch};
}
my %handlers = qw(
attack 0977
);
$self->{packet_lut}{$_} = $handlers{$_} for keys %handlers;
return $self;
}
The rAthena site had some issues earlier this month and the changelog seems to have been lost but I read it on the page that Google cached here: http://webcache.googleusercontent.com/s ... clnk&gl=usAdded support for the new monster purple hp bar packet (packetver >= 20120404), make sure to toggle /monsterhp in the client to show the bar.