DarkStorm652 / DarkBot

Minecraft thin client and automation framework
BSD 2-Clause "Simplified" License
123 stars 53 forks source link

Teams #33

Open ghost opened 9 years ago

ghost commented 9 years ago

DarkBot should have the ability to retrieve scoreboard teams

Minecraft source example:

public String getTeam(GuiPlayerInfo playerInfo) {
    ScorePlayerTeam playerTeam = getWorld().getScoreboard().getPlayersTeam(playerInfo.name);
    return ScorePlayerTeam.formatPlayerName(playerTeam, playerInfo.name);
}