KITS HELP - ESSENTIALS KIT NOT FOR ME

Discussion in 'Plugin Development' started by NibsMC, Aug 20, 2014.

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

    NibsMC

    Hi, I Recently have started a faction server, and its nearly ready for the public but we need kits for the ranks on my server, because so far the perks for the ranks are cosmetic. I know you can config essentials for kits, but whenever i try to do it, it just resets the whole config. Is there another plugin thats for making kits, that is good for factions, and is relatively easy to use.
     
  2. Offline

    The Fancy Whale

    Wrong section. Also, just look up kits plugins. And the config probably resets because you are not doing it properly.
     
  3. Offline

    Cycryl

    NibsMC
    watch a tutorial


    Also wrong section......
     
  4. Offline

    Dragonphase

    NibsMC

    Hopefully a moderator will move this to the appropriate section soon.

    If you're looking for easy-to-use, you could use Kits. It lets you create kits entirely in-game with a GUI to put items in. It also lets you add armor too, and there's other features allowing you to add cooldowns/delays, whether to clear the inventory, overwrite existing slots, and silent spawning.

    There's a bunch of other Kits plugins out there, such as KingKits and BattleKits. You should also make use of DBO's search feature.
     
  5. Offline

    NibsMC

    I tried to use kits but it won't allow me to disable overwrite without crashing, as for me doing the essentials config wrong, is there an easy way, or template to do it
     
  6. post ur essentials config.yml on pastebin
     
  7. Offline

    Necrodoom

    NibsMC you need to keep the general YML rules.
    Paste essentials config.yml.broken using www.pastebin.com.
     
  8. Offline

    SmooshCakez

    1. If they're donor ranks, that's against the EULA.
    2. Make sure you're formatting your YML file (Essentials config) correctly.
    3. Wrong section.
     
    wolfs25 likes this.
  9. Offline

    Peter25715

    Hi NibsMC, Instead of creating your own kits using essentials plugin and being tired on editing essentials kit..
    Why don't you make your very own minecraft plugin that can give kits?
    You can let the player do whatever you want and it's really easy! You can make the command whatever you want.. Like, /FirstKit or whatever you like..

    Here's the code :
    Code:java
    1. package YOUR_PACKAGE_NAME;
    2.  
    3. import org.bukkit.Material;
    4. import org.bukkit.command.Command;
    5. import org.bukkit.command.CommandSender;
    6. import org.bukkit.entity.Player;
    7. import org.bukkit.event.Listener;
    8. import org.bukkit.inventory.ItemStack;
    9. import org.bukkit.inventory.PlayerInventory;
    10. import org.bukkit.plugin.java.JavaPlugin;
    11.  
    12. public class Kits extends JavaPlugin implements Listener {
    13. public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String []args) {
    14. Player p = (Player)sender;
    15. PlayerInventory pi = p.getInventory();
    16. if (cmd.getName().equalsIgnoreCase("firstkit")) {
    17.  
    18. p.sendMessage("§aYou've took the kit successfully!");
    19. pi.addItem(new ItemStack(Material.DIAMOND_SWORD, 1));
    20.  
    21. //This is /firstkit
    22. //don't put other / cause it will be //kit
    23. //when you do /firstkit you will get a diamond sword!
    24. }
    25.  
    26.  
    27.  
    28. return true;
    29. }
    30. }


    And here's the plugin.yml :

    Code:
    name: PluginName
    main: YOURPACKAGE_NAME.classname
    version: 1.0
    description: Gives the player kits whenever he does a command in the chat!
    author: YourName
    commands:
        firstkit:
            usage: /<command>
            discription: Gives the player a diamond sword!
    
    If you want to add permissions just ask me.. So easy..
     
  10. Offline

    MCMastery

    NibsMC Umm... ranks are supposed to have only cosmetic perks, otherwise it is actually illegal according to the new Minecraft EULA.
     
  11. Offline

    NibsMC

    I am in full compliance with the eula, the kits are for ranks yes... but the ranks are not donor ones.
    My Question Still Stands
     
  12. Offline

    TheHandfish

    This is for Mojang to decide, no us. If you think they are violating Mojang's EULA, simply report them.

    You really will get much faster assistance if you post in a more appropriate section.
     
  13. Offline

    Peter25715

    Wrong section. If you are interested in creating your own plugin for /kit them look up for my code.
     
  14. Offline

    Necrodoom

     
Thread Status:
Not open for further replies.

Share This Page