|| _text.equalsIgnoreCase("hi"))
&& (!activeChar.isRunning()
|| !activeChar.isAttackingNow()
|| !activeChar.isCastingNow()
|| !activeChar.isCastingPotionNow()))
activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), 2));
if ((_text.equalsIgnoreCase("lol")
|| _text.equalsIgnoreCase("haha")
|| _text.equalsIgnoreCase("xaxa")
|| _text.equalsIgnoreCase("ghgh")
|| _text.equalsIgnoreCase("jaja"))
&& (!activeChar.isRunning() || !activeChar.isAttackingNow() || !activeChar.isCastingNow() || !activeChar.isCastingPotionNow()))
activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), 10));
if ((_text.equalsIgnoreCase("yes")
|| _text.equalsIgnoreCase("si")
|| _text.equalsIgnoreCase("yep"))
&& (!activeChar.isRunning() || !activeChar.isAttackingNow() || !activeChar.isCastingNow()|| !activeChar.isCastingPotionNow()))
activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), 6));
if ((_text.equalsIgnoreCase("no")
|| _text.equalsIgnoreCase("nop")
|| _text.equalsIgnoreCase("nope"))
&& (!activeChar.isRunning() || !activeChar.isAttackingNow() || !activeChar.isCastingNow()|| !activeChar.isCastingPotionNow()))
activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), 5));
}
// by Azagthtot
PowerPak.getInstance().chatHandler(activeChar, _type, _text);