MyCommand
MyCommand
Donations
If you like this plugin, and want to offer me a coffee, consider to click the button on the top right corner of the navbar to donate! Thank you :D

Make your own, customized Minecraft commands
Features:
- Make new commands!. (Also registered command)
- Run others command in new one
- Perform several commands in one
- Delayed commands with custom pause, warmups and cooldowns
- Make Shortcut/alias commands or override commands.
- Run commands with any item , block, signs or even (villager) NPC's.
- Various functions for costumize commands, like placeholders, scripts (if-else) and more.
- Console support
- Economy support (Require Vault)
- All features are highly customizable
- No command limits with multiple file support
- Customizable IconMenu (ChestGUI), ActionBar, BossBar, Hover/ClickableText, Title and Scoreboard commands.
- Allow the execution of commands in various circumstances (per world, by worldguard regions and more.
- Custom players database where you can store anything you want to personalize even more your commands. SQL database supported.
- BungeeCord feature, Scheduler, Join/Quit/Death events, PHP/GET request ...
- ... And much, much more..!
Configuration and examples (Documentation)
Commands & permissions
Video Tutorial :
(French) Getting Started (TEXT and ALIAS commands) by Texier (MyCommand 5.5.0)
(English) by Koz4Christ. (MyCommand 5.1.8)
If you have to report an error in the chat, or just a command section, use pastebin or a similar website. Help with YML code error : http://yaml-online-parser.appspot.com/
This plugin uses bStats Metrics - MyCommand stats page
-
View User Profile
-
Send Message
Posted Feb 7, 2016@MineyLJA
I'm not entirely sure if you can do something like that however for your hug example if the player types /hub $arg1 and then the players name it will work. You have to use this code for that :
'hug': command: /hug $arg1 type: RUN_CONSOLE runcmd: - /bc $player gave $arg1 a hug! cost: 0 delaytimer: 0
-
View User Profile
-
Send Message
Posted Feb 7, 2016Never mind, I don't think this will work for what I need it for. Works great though!
-
View User Profile
-
Send Message
Posted Feb 6, 2016This plugin looks very good and almost exactly what I need but I just need to know one thing before downloading. Can I set this to a command that already exists and also have the other plugin that has this command execute the command and do the same thing? Basically, I'm making a clans server and I want the players to leave their clan when they type /clan leave but also clear their inventory, change their rank, and send them to the hub when they type the command.
-
View User Profile
-
Send Message
Posted Feb 4, 2016Hi, thanks for this plugin, it is great and I have already used it for a few things. I was wondering if there was a way to make a command that would shout a message when the command was input by a player.
If you have an emotions plugin on your server like this: http://dev.bukkit.org/bukkit-plugins/player-emotionz/
then I basically want to know how to create an emotion command like the ones in the link above. Please may I have the structure of what I would need to put into the config.
Just to confirm what I want, I would like to be able to create a command that can be ran by the player that will input an argument (which will be TARGET_PLAYER which will take the name of the player that the command is directed at.) Also, I will need something to take the name of the player that is sending the command (which will be COMMAND_SENDER) I would like to have a message put in chat that can be seen by every player which has the COMMAND_SENDER, emotion message and the TARGET_PLAYER in it.
===== Example: ===== /hug [TARGET_PLAYER]
COMMAND_SENDER = Bill_Gates
TARGET_PLAYER = Notch
/Hug Notch
CHAT:-
Bill_Gates give Notch a hug!
Thankyou very much if you can help me with this.
-
View User Profile
-
Send Message
Posted Jan 31, 2016Is there any way to disable chests from opening if they're set as the block command?
-
View User Profile
-
Send Message
Posted Jan 24, 2016Would anyone know how to solve a Console scripting error, because it does not work! If you try running this in console it will ignore all scripts and just run the commands! I honestly cannot find any solution
- "$Script$%if%True==False" - "$Script$%else%" - "$Script$%if%$command==Join" - "/say $sender Join" - "$Script$%else%" - "$Script$%if%$command==Cheese" - "/say $sender Cheese"
-
View User Profile
-
Send Message
Posted Jan 23, 2016RND tag doesn't run random commands with RUN_COMMAND mode.
-
View User Profile
-
Send Message
Posted Jan 18, 2016How do you fix the error when the command you are trying to redirect a command has a space in it?
-
View User Profile
-
Send Message
Posted Jan 18, 2016Was there ever a way to solve the space in the command line? I want to use: /create to redirect it to: /create new but I cannot get the space to work, it spams my console with: new new new new new new new.... over and over non stop and I have to force stop my server and restart it again. Any solution?
-
View User Profile
-
Send Message
Posted Jan 14, 2016@Jdlx277
Im talking about pex suffixes, not nicknames, i would like players to retain there real minecraft name.
-
View User Profile
-
Send Message
Posted Jan 11, 2016@safetsalt
Would most likely be easier to use essentials, edit the character limit of nicknames in the essentials config.yml. And give the permission essentials.nick, to the players who you would like to use the permission :3
-
View User Profile
-
Send Message
Posted Jan 11, 2016Very good plugin but I have a problem, my commands.yml is perfect but when I click to many times on a item %openiconmenu% who redirect on an other menu with an other item %openiconmenu%, the icon menu closes alone. I'm french sorry for my bad english.
-
View User Profile
-
Send Message
Posted Jan 9, 2016Why can't I do &0 :(
-
View User Profile
-
Send Message
Posted Jan 6, 2016setting up an icon menu is it possible to set player head skins to be there i saw i could do skulls and variants
-
View User Profile
-
Send Message
Posted Jan 4, 2016Whats the command to recieve the item I made with mycmd-itemset add?
-
View User Profile
-
Send Message
Posted Jan 2, 2016Omg!!! This so awesome!!! The Developer has worked very verryyyyyyyyy well this Plugin! I like it with the Tutorials as well! GOOD JOB!
-
View User Profile
-
Send Message
Posted Jan 1, 2016Love your plugin, basically allows easy access to create commands to do whatever.
I have encountered a problem though..
I am looking to add a command that would allow players to do ./tag. I would like players to be able to change there tag, but not longer than 14 characters, is there a way to check for a strings length?
http://pastebin.com/dVzbpy5U
-
View User Profile
-
Send Message
Posted Dec 22, 2015@Wroztee
Don't worry Wroztee... This is not a MyCommand issue but a simple Minecraft / Vanilla one! Because using the /particle command from Vanilla is not user specific it does not know what player you are trying to use the particles on and its syntax is getting messed up. When using the RUN_CONSOLE type command be sure to use something like this for your particles...
- "/execute $player ~ ~ ~ particle witchMagic ~ ~ ~ 1 1 1 1 1000"
This is user specific because it uses the $player. Hopefully this works for you and you find out how to use it :)
-
View User Profile
-
Send Message
Posted Dec 22, 2015I have a problem I want to use particles in my command, but when I do it in RUN_AS_OPERATOR it shows these messages that I used /pasticle etc., and when I do it in RUN_CONSOLE it does not show any particles. Please help...
-
View User Profile
-
Send Message
Posted Nov 30, 2015@KyleUnrau2
wtf...