Solved Scoreboard Teams

Discussion in 'Plugin Help/Development/Requests' started by bubblefat_, Jan 23, 2015.

Thread Status:
Not open for further replies.
  1. Offline

    bubblefat_

    I know how to add a player to a team, but how do I make it add them to a team when they have permission no matter what their name is?

    Code:
    owner.addPlayer(Bukkit.getOfflinePlayer("bubblefat"));
     
  2. Offline

    InkzzzMC

    Code:
    Player p = Bukkit.getPlayer(String name);
    if(p != null) {
      //Online
    }
    else {
      //Offline
    }
     
Thread Status:
Not open for further replies.

Share This Page