logo bannerlogo banner
Page Navigator
  • player is a Player object
  • pos is an object with the x, y, and z properties
  • dir is an object with the x, y, and z properties
bot.on('playerThrowGrenade', (player, pos, dir) => {
    console.log(`${player.name} threw a grenade at ${pos} with direction ${dir}`);
});