A few Questions

Discussion in 'Plugin Development' started by MC:2070, Jul 5, 2013.

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

    MC:2070

    Hey Guys,

    I have got a few Questions, because my Lobby Plugin doesn't work, like it should.

    I have the following problems:
    • ScoreBoard isn't showed
    • If the user is not in the database, he should be added, but this does not happen
    • The MySQL Ban Commands are not working, I dont know why

    Classes:

    LobbyListener: http://pastebin.de/35136
    MySQL: http://pastebin.de/35137
    PlayerManager: http://pastebin.de/35138
    Scoreboard: http://pastebin.de/35139
    Main: http://pastebin.de/35140
    UBPlayer: http://pastebin.de/35141
    BanCommand: http://pastebin.de/35142

    Plugin.yml : http://pastebin.de/35143

    I'am really sorry for my bad english, but I'am from Germany. If you have any questions, do not hesitate to contact me. I'am looking forward to hearing from you soon.

    Faithfully yours
    MC:2070
     
  2. Offline

    Warreo

    In your BanCommand, if your commands are not working make sure you add @Override on the line above so it looks like this:

    @Override
    public boolean onCommand(CommandSender cs, Command cmd, String label, String[] args)
     
  3. Offline

    Compressions

    MC:2070 I wouldn't get the player's name through their display name.
     
  4. Offline

    MC:2070

  5. Offline

    Unknowncmbk

    Player.getName() not displayName
     
  6. Offline

    sayaad


    He's saying that it's better to get a Player by player.getName() rather than player.getDisplayName(), not that storing the interface is more preferable for him.
     
    Unknowncmbk likes this.
  7. Offline

    GodzOfMadness

    Unknowncmbk I don't think you understanded his post. He's basically saying to use the getName() method other than the getDisplayname() method, not storing the player's instance.

    EDIT: Ninja'd by sayaad
     
  8. Offline

    Unknowncmbk

    I figured it was a given that a player's display name could be changed *facepalm*
     
Thread Status:
Not open for further replies.

Share This Page