You can always add such a ugly bypass
else if (currentCommand.equalsIgnoreCase("getbuffs"))
{
String[] Array = command.substring(currentCommand.length()).trim().split(";");
for(String buffs : Array)
{
String[] idLevelString = buffs.split(" ");
int buff_id = Integer.parseInt(idLevelString[0]);
int buff_level = idLevelString.length > 1 ? Integer.parseInt(idLevelString[1]) : 1;
if (buff_id != 0)
{
MagicSkillUse msu = new MagicSkillUse(this, player, buff_id, buff_level, 100, 0);
SkillTable.getInstance().getInfo(buff_id, buff_level).getEffects(this, player);
player.broadcastPacket(msu);
}
}
}
So, you will put it like
<a action=\"bypass -h npc_%objectId%_getbuffs 1204 2;1204 1;1010 5;199 2\">