Hi heres my problem: i cant get the tab api to get higher than 0 y. How i want my tab to look: Code: __________________________________________________ |Team1 |Team2 | | |--------------|------------------|---------------| | | | | |--------------|------------------|---------------| |player1 |player2 | | |--------------|------------------|---------------| | |player3 | | |--------------|------------------|---------------| |_________________________________________________| But it only looks like this: Code: ____________________________ |team1 | |--------------------------| |team2 | |--------------------------| | | |--------------------------| |player1 | |--------------------------| |player2 | |--------------------------| |palyer3 | |--------------------------| |__________________________| heres my code: Code:java public void update(Player p){TabAPI.setTabString(plugin, p, 0, 0, "team1" + TabAPI.nextNull());TabAPI.setTabString(plugin, p, 2, 0, "team2" + TabAPI.nextNull());TabAPI.setTabString(plugin, p, 1, 1, "player1" + TabAPI.nextNull());TabAPI.setTabString(plugin, p, 2, 1, "player2" + TabAPI.nextNull());TabAPI.setTabString(plugin, p, 2, 2, "player3" + TabAPI.nextNull()); TabAPI.updatePlayer(p);}
ibWill I think you need to add more slots so the tab itself is bigger. I can't tell you this for sure however.