*
* @param npc The Npc we want to fight.
* @return <tt>true</tt> if interacting; otherwise <tt>false</tt>.
*/
public boolean isAttacking(final RSNPC npc) {
final RSCharacter interact = methods.players.getMyPlayer().getInteracting();
return interact != null && interact.equals(npc);
}