player is a Player object
oldTeam is a number (see the Teams object)
newTeam is a number (see the Teams object)
bot.on('playerSwitchTeam', (player, oldTeam, newTeam) => {
console.log(`${player.name} switched from team ${oldTeam} to team ${newTeam}`);
});