Solved i think bukkit hates me

Discussion in 'Plugin Development' started by mastermustard, Jan 25, 2013.

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

    mastermustard

  2. Offline

    raGan.

    commandlabel is only one word, other things are arguments
     
  3. Offline

    adam753

    Bukkit hates you. You should stick to vanilla MC from now on.

    Just kidding. I'm guessing it's because you haven't set up your plugin.yml correctly. Check the plugin tutorial for how to do that. http://wiki.bukkit.org/Plugin_Tutorial
    Oh yes, it's what raGan said. Didn't spot that.
     
  4. Offline

    crushh87

    if you want to make you commands 2 words first:
    in your plugin.yml add the command rules:
    so:
    Code:
    main: Whatever you have here
    version: whatever version your plugin is
    name: Name of your plugin
    commands:
      rules:
    then when you do you commands instead of
    Code:
    commandLabel.equalsIgnoreCase("rules survival")){
    //your code and stuff
    }
    
    do:

    Code:
    if(args[0].equalsIgnoreCase("survival)){
    //your code and stuff
    }
    

    Oh and remove your adf.ly link.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 31, 2016
  5. Offline

    raGan.

    I didn't even notice it's adf.ly. Shame.

    Edit: on you
     
  6. Offline

    mastermustard

  7. Offline

    crushh87

    Does it work? If so I'll check it out when the approve the project
    Nice work.

    So maybe bukkit does not hate you?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 31, 2016
  8. Offline

    mastermustard

    guess it doesnt any more!

    because of helping to squash that bug ill be able to complete my re-write of crazyfeet because its original author abandoned it
     
  9. Offline

    crushh87

    You might want to contact the author about that first, and if he does not reply try a staff member. I'm not entirely sure though
     
  10. Offline

    mastermustard

    i already talked to the author earlier today

    also the code is significantly different but just same idea
     
  11. Offline

    crushh87

    Well then, good luck to ya! feel free to contact me if you need help, I'm not sure if I can be much help but it's worth a shot.
     
  12. Offline

    mastermustard

    thanks for the offer i have another dev working with me but im betting we might run into some issues considering are lack of bukkit expeirience
     
  13. Offline

    william9518

    I could help.. Seems easy :p ill start on it in aa bit if u want me. Add me on skype for now: william.lee9518
    My plugs that i made are in ma signature
     
Thread Status:
Not open for further replies.

Share This Page