logo bannerlogo banner
Page Navigator
  • player is a Player object
  • oldHp is a number
  • newHp is a number
bot.on('playerDamage', (player, oldHp, newHp) => {
    console.log(`${player.name} was hit! their health was ${oldHp}, now it's ${newHp}`);
});