Solved Playing Music Discs to Players?

Discussion in 'Plugin Development' started by qlimax5000, Nov 16, 2013.

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

    qlimax5000

    Hey! I wanna play a music disc at a players location, example:

    Code:java
    1. @Override
    2. public boolean onCommand(CommandSender sender, Command command,
    3. String label, String[] args) {
    4. if (command.getName().equalsIgnoreCase("test")) {
    5. if (sender instanceof Player) {
    6. Player player = (Player) sender;
    7. //Play music disc: cat - How?
    8. }
    9. }
    10. return false;
    11. }


    Thanks.
    - Ben
     
  2. Offline

    Chinwe

    Search on google first, I found this really quickly :)
     
  3. Offline

    qlimax5000

    Chinwe
    Seen that. But now, how do i stop it?
     
  4. Offline

    Chinwe

    :confused:
     
  5. Offline

    TehVoyager

    hmm is their a moth or bug of sorts in your computer
     
  6. Offline

    qlimax5000

    Chinwe
    TehVoyager
    The thing is, they changed it, it no longer uses (Location, Effect, int) so i'm using player.playEffect(player.getLocation(), Effect.RECORD_PLAY, Material.GOLD_RECORD);which works. But how can i stop it?
     
  7. Offline

    Chinwe

    Does this not work?
    player.playEffect(player.getLocation(), Effect.RECORD_PLAY, 0);

    TehVoyager wat
     
  8. Offline

    qlimax5000

    Chinwe
    Hmm, it does, i don't really under deprecation then -.-
    Mind explaining it? :)
     
  9. Offline

    Chinwe

    Most methods still work, they are basically just warning us that in the future they may become unsafe to use (ie, magic values are being removed in a future minecraft version) :)
    Instead of using just 0, try using new Integer(0);
     
  10. Offline

    qlimax5000

    Chinwe
    Thanks! btw, it's cool, i added a suppressing warning. Thanks, Eclipse xD
     
  11. Offline

    Chintzi

    Thanks this helped me :D
     
  12. Offline

    CraftCreeper6

    Chintzi
    This was posted almost a year ago...
     
  13. Offline

    Chintzi

    I know i was just saying thanks cause i was really happy that i finally found a way to play music discs by via command now! :D, and if that doesn't make sense im using it for my plugin 'SkieCraft'
     
Thread Status:
Not open for further replies.

Share This Page