Giving a Specific Player an Item

Discussion in 'Plugin Development' started by VideoMrz, Jul 30, 2013.

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

    VideoMrz

    Hey, I am new to making plugins and shtoof, and I am just making something to troll around with my friends.

    When the player uses /givediamonds it will give a diamond to my friend, sheasaxon914. I've only found out how to give yourself or someone you define something. I want this to just give him the diamond. Is this possible?
     
  2. Offline

    gamer1097

    for(Player p : Bukkit.getServer().getOnlinePlayers())
    {
    if(p.getName() == "UserName")
    {
    //Give p a Diamond
    }
    }
     
  3. Offline

    The_Doctor_123

    You can get a player by their username:

    Code:
    Bukkit.getPlayer("sheasaxon914")
    
     
Thread Status:
Not open for further replies.

Share This Page