1

Some Helpful Commands

sar123's Avatar sar1232/25/15 9:15 am
1 emeralds 480 7
2/27/2015 8:58 pm
alan's Avatar alan
We all want to make our own maps, maybe you want to make your own adventure map? or perhaps a arena? for those /summon and /give commands are necessary -

Note - To Use large commands a command block is necessary ! do -
/give username command_block
place the command block and paste any of these commands into it...
and then place a button on it using shift+rightclick or simply use a pressure plate to trigger this command block.


/summon Commands

/summon commands are used to summon/spawn any mob in the game ! using the /summon commands is easy, the basic syntax of /summon looks like this -

/summon Mobname*

* you can summon any mob by entering the Mob ID/Name in place of "Mobname" for example -

open your text console by pressing T on your keyboard and type or paste following commands, one at a time.

/summon Zombie
/summon Pig
/summon Skeleton

you can also specify the coordinate of the point where you have to spawn your mob,
for example-
/summon Zombie 0 0 0
which will spawn a zombie at (0,0,0) world center.

Similarly,
/summon Zombie ~ ~ ~
will spawn a zombie at the location of command execution.

You can also summon some special In Game Mobs such as Ender Dragon and Even Wither Boss, whose commands are

Ender Dragon - /summon EnderDragon

WARNING : EnderDragon will destroy blocks at the place where it is summoned therefore it is recommended to summon it somewhere open and safe !

Wither Boss - /summon WitherBoss ~ ~ ~

Let's make it more interesting, what about a zombie with custom name?
Yes, it's possible, do this, Replace SpecialZombie with any name of your choice !

/summon Zombie ~ ~ ~ {CustomName:"SpecialZombie"}

Interesting, isn't it? Not try some of these, ------
You will need a command block to execute these commands

Zombie with Iron Sword And Iron Armor

/summon Zombie ~ ~ ~ {CustomName:"Special Zombie",CustomNameVisible:1b,Equipment:[{id:"iron_sword",Damage:0,Count:1,{}},{id:"iron_boots",Damage:0,Count:1},{id:"iron_leggings",Damage:0,Count:1,{}},{id:"iron_chestplate",Damage:0,Count:1,{}},{id:"iron_helmet",Damage:0,Count:1,{}}]}

Zombie with Diamond Armor and Diamond Sword

/summon Zombie ~ ~ ~ {CustomName:"Special Zombie",CustomNameVisible:1b,Equipment:[{id:"diamond_sword",Damage:0,Count:1},{id:"diamond_boots",Damage:0,Count:1},{id:"diamond_leggings",Damage:0,Count:1},{id:"diamond_chestplate",Damage:0,Count:1},{id:"diamond_helmet",Damage:0,Count:1}]}

Skeleton With Enchanted Bow(Flame I)

/summon Skeleton ~ ~ ~ {CustomName:"Sniper",CustomNameVisible:1b,Equipment:[{id:"bow",Damage:0,Count:1,tag:{Unbreakable:1b,ench:[{id:50,lvl:1}]}},{},{},{},{}]}

Skeleton With Enchanted Bow + Iron Armor

/summon Skeleton ~ ~ ~ {CustomName:"Sniper",CustomNameVisible:1b,Equipment:[{id:"bow",Damage:0,Count:1,tag:{Unbreakable:1b,ench:[{id:50,lvl:1}]}},{id:"iron_boots",Damage:0,Count:1},{id:"iron_leggings",Damage:0,Count:1},{id:"iron_chestplate",Damage:0,Count:1},{id:"iron_helmet",Damage:0,Count:1}]}


Extra Large Slime

/summon Slime ~ ~ ~ {Size:10}

Secret Zombie THE GIANT

/summon Giant ~ ~ ~

Zombie Knight ! (Horse Riding, Diamond Armor, Human Head, Iron Sword)

/summon Zombie ~ ~ ~ {CustomName:"Knight",CustomNameVisible:1b,Riding:{SaddleItem:{id:"saddle"},Saddle:1b,Type:3,Tame:1b,id:"EntityHorse"},Equipment:[{id:"iron_sword"},{id:"iron_boots"},{id:"diamond_leggings"},{id:"diamond_chestplate"},{id:"skull",Damage:3,tag:{SkullOwner:"MHF_Alex"}}]}

I Know it looks strange with a human head but that's it !
Note :- Due To Riding on a horse, the zombie will not chase you as it's movement is controlled by horse, and horse is a passive mob, however zombie will still attack you if you get closer !

Skeleton Riding On Skeleton Horse With Enchanted Bow !

/summon Skeleton ~ ~ ~ {CustomName:"Sniper King",CustomNameVisible:1b,Riding:{SaddleItem:{id:"saddle"},Saddle:1b,Type:4,Tame:1b,id:"EntityHorse"},Equipment:[{id:"bow",Damage:0,Count:1,tag:{Unbreakable:1b,ench:[{id:50,lvl:1}]}},{id:"iron_boots"},{id:"diamond_leggings"},{id:"diamond_chestplate"},{id:"skull",Damage:3,tag:{SkullOwner:"MHF_Alex"}}]}

/give commands

/give commands are used to give player(s) items. Much useful in an adventure map, where you want to give the player a reward, after completing a quest or whatever.
some specific items such as command block, mob spawners, etc. are only attainable through /give command

the basic syntax of /give command is-

/give username itemName [amount]

replace username with your in game user name, in the item name comes the name of the item you want to give, amount is optional, it's basically to state that how much item is to be given, if you leave amount blank then 1 quantity of that item will be given, examples -

/give yourname Stone
/give yourname iron_sword
/give yourname apple 10

there is one more way of using /give command.
instead of using username, you can use selectors, which are -
@p - to target nearest player
@r - to target random player
@a - to target all players
@e - to target random entities

example, the following command -
/give @p stone
will give 1 stone to the nearest player to the command execution, in Single player mode there is only one player, therefore @p will correspond to the player who is playing the map. Selectors are used for custom maps, where you do not know the username of the player playing.

NOTE - the selectors @e and @a are not the same, as of Minecraft 1.8, @a only targets the players, but @e also targets the mobs and other game Entities.


like all other commands /give can also be triggered by Command Blocks, so
you should make sure that the command block is properly hidden in your map...

/give command can also be used to give Enchanted Weapons and armors, example

/give @p diamond_sword 1 0 {ench:[{id:16,lvl:1}]}
Gives you a diamond sword with Sharpness I enchantment.

Maps feel more fantastic when the items have custom name and a custom description, right? For example a Map to treasure !
Yes, this can be done by commands. Do -

/give @p filled_map 1 0 {display:{Name:"Treasure Map",Lore:["Will Lead You To The Treasure"]}}

gives you a filled map with Name "Treasure Map" and Description "Leads You To The Treasure"

now what are you waiting for? try to create your own commands....and now you are ready to summon a wave of monsters, and give players equipments to fight them !

Hope You All Enjoy ! If You want some more cool mobs and other cool commands, please put your suggestions ! Your Suggestions are appreciated...

tags : Helpful Commands Minecraft /summon commands mobs with armor /give command
Posted by sar123's Avatar
sar123
Level 1 : New Explorer
0

Create an account or sign in to comment.

7

1
02/27/2015 8:58 pm
Level 34 : Artisan Pixel Puncher
alan
alan's Avatar
Make this a blog!! u get XP
1
02/26/2015 8:31 am
Level 1 : New Explorer
sar123
sar123's Avatar
thanks for your suggestion, but what do you mean by you get levels and stuff?
1
02/26/2015 8:48 am
Level 17 : Journeyman Architect
armyduckygaming
armyduckygaming's Avatar
On PMC you can get levels the more people read your blogs or give diamonds, favorite, and sub.
1
02/26/2015 9:03 am
Level 1 : New Explorer
sar123
sar123's Avatar
oh ! thanks !
1
02/27/2015 8:39 pm
Level 17 : Journeyman Architect
armyduckygaming
armyduckygaming's Avatar
No problem
1
02/26/2015 6:55 am
Level 20 : Expert Cake
mcrocks999
mcrocks999's Avatar
1. Make this a blog; you get levels & stuff
2. I use a /summon generator :p
1
02/26/2015 3:34 am
Level 1 : New Explorer
sar123
sar123's Avatar
All Commands Tested With Minecraft 1.8 & Minecraft 1.8.1
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome