Problemopenkore lags when a bard uses Poem of bragi and moves around. It causes the network::received.pm to keep on receiving
08C7. When the skills ends, it'll spam
0120.
This would makes the nearby openkore unresponsive due to the burst of
08C7 packets. Worst case, it DC'ed them
HelpMy first tips given by EternalHarvest was to look into handlers. and with much searching, i found out that if i could suppress the received packet (making it blind to it). openkore will not lags (not sure is correct or not).
so i poke around inserting
Code:
if ($args->{switch} eq '08C7') {
undef $args->{switch};
}
in these three .pm (in src/Network)
PacketPraser.pm
iRO.pm
Received.pm
somehow it did manage to deleted the packets, but it still there. It still received the packets, and openkore still lags.
Since the case is similar to devotion, i've tried to look at the devotion solution. But didn't manage to find anything.
QuestionsIs it possible to delete/remove the $handlers related to the nerwork::received ?
How can i handle these kind of packets? Where should i start?
Is it possible to ignore/blind the received packets?
Is there any work around?