Bonjour à tous !!!
Dans ce tutoriel, je vais vous montrer comment réaliser un changement d'armes sur tous les squelettes de la map : ils prendront une épée lorsqu'ils se situent à moins de 4 blocs d'un joueur, un arc lors ce qu'il est à plus de 4 blocs.
Tout d'abord faîtes une fill clock (ou autres clock rapide) puis désactivez la sortie des command blocks (pour ne pas être spam de messages, /gamerule commandBlockOutput false).
Ici, elle est dirigée vers le sud avec, dans le command block du haut :
Puis dans celui du bas :
Créez ensuite un objectif nommé Switch
Il faut tout d'abord détecter l'objet que porte en main le squelette puis lui attribuer un score de 1 s'il porte un arc dans un rayon de 4 blocs du joueur.
Pour cela, mettez un command block sur cette clock puis écrivez ceci dedans :
Pour l'expliquer, le joueur va éxécuter en boucle une commande qui mettra 1 à l'objectif Switch à tout squelette se trouvant dans un rayon de 4 et portant un arc.
S'il porte bien un arc (donc si son score est de 1), il faut ajouter un command block qui remplacera l'arc par une épée en fer :
Cette commande va remplacer l'arc tenu en main par une épée QUE si le score Switch du squelette est de 1.
Là, le système en lui-même est fini, si vous essayez, le squelette prendra bien une épée si vous êtes dans le rayon sélectionné par contre si vous vous en éloignez il gardera l'épée et là on veut qu'il reprenne l'arc donc continuons !
Maintenant, il faut détecter si le squelette tient une épée alors qu'il n'est plus dans le rayon :
Plus ou moins la même commande que tout à l'heure sauf que là on regarde dans un rayon minimum de 5 autour du joueur s'il se trouve un squelette ayant une épée.
Comme pour qu'il prenne l'épée, on rajoute une commande lui donnant l'arc si le score est de 0
Il ne reste plus qu'une chose à ajouter, car là si vous essayez le système, le switch fonctionnera dans les deux sens mais le squelette ne tirera pas avec l'arc.
C'est parce que la commande lui donnant l'arc le "spam" (car le score reste à 0) donc le changement ce fait en permanence ce qui déroute un peu le squelette. Donc ajoutons une commande en sortie des deux command blocks changeant l'état du squelette pour mettre son score à 2.
Et voilà, le système fonctionne parfaitement !!!
J'espère qu'il vous aura plu.
EDIT du 02/01/2016 : Grand merci à noftaly pour m'avoir fais un "To one command block" de mon système ! Voici la commande :
Dans ce tutoriel, je vais vous montrer comment réaliser un changement d'armes sur tous les squelettes de la map : ils prendront une épée lorsqu'ils se situent à moins de 4 blocs d'un joueur, un arc lors ce qu'il est à plus de 4 blocs.
Tout d'abord faîtes une fill clock (ou autres clock rapide) puis désactivez la sortie des command blocks (pour ne pas être spam de messages, /gamerule commandBlockOutput false).
Ici, elle est dirigée vers le sud avec, dans le command block du haut :
Code:
- /fill ~1 ~ ~ ~1 ~ ~3 stone
Puis dans celui du bas :
Code:
- /fill ~-1 ~ ~ ~-1 ~ ~3 redstone_block
Créez ensuite un objectif nommé Switch
Code:
- /scoreboard objectives add Switch dummy
Il faut tout d'abord détecter l'objet que porte en main le squelette puis lui attribuer un score de 1 s'il porte un arc dans un rayon de 4 blocs du joueur.
Pour cela, mettez un command block sur cette clock puis écrivez ceci dedans :
Code:
- /execute @a ~ ~ ~ scoreboard players set @e[type=Skeleton,r=4] Switch 1 {Equipment:[{id:"minecraft:bow"}]}
Pour l'expliquer, le joueur va éxécuter en boucle une commande qui mettra 1 à l'objectif Switch à tout squelette se trouvant dans un rayon de 4 et portant un arc.
S'il porte bien un arc (donc si son score est de 1), il faut ajouter un command block qui remplacera l'arc par une épée en fer :
Code:
- /replaceitem entity @e[type=Skeleton,score_Switch_min=1,score_Switch=1] slot.weapon minecraft:iron_sword 1 0
Cette commande va remplacer l'arc tenu en main par une épée QUE si le score Switch du squelette est de 1.
Là, le système en lui-même est fini, si vous essayez, le squelette prendra bien une épée si vous êtes dans le rayon sélectionné par contre si vous vous en éloignez il gardera l'épée et là on veut qu'il reprenne l'arc donc continuons !
Maintenant, il faut détecter si le squelette tient une épée alors qu'il n'est plus dans le rayon :
Code:
- /execute @a ~ ~ ~ scoreboard players set @e[type=Skeleton,rm=5] Switch 0 {Equipment:[{id:"minecraft:iron_sword"}]}
Plus ou moins la même commande que tout à l'heure sauf que là on regarde dans un rayon minimum de 5 autour du joueur s'il se trouve un squelette ayant une épée.
Comme pour qu'il prenne l'épée, on rajoute une commande lui donnant l'arc si le score est de 0
Code:
- /replaceitem entity @e[type=Skeleton,score_Switch=0] slot.weapon minecraft:bow 1 0
Il ne reste plus qu'une chose à ajouter, car là si vous essayez le système, le switch fonctionnera dans les deux sens mais le squelette ne tirera pas avec l'arc.
C'est parce que la commande lui donnant l'arc le "spam" (car le score reste à 0) donc le changement ce fait en permanence ce qui déroute un peu le squelette. Donc ajoutons une commande en sortie des deux command blocks changeant l'état du squelette pour mettre son score à 2.
Code:
- /execute @a ~ ~ ~ scoreboard players set @e[type=Skeleton] Switch 2
Et voilà, le système fonctionne parfaitement !!!
J'espère qu'il vous aura plu.
EDIT du 02/01/2016 : Grand merci à noftaly pour m'avoir fais un "To one command block" de mon système ! Voici la commande :
Code:
/summon MinecartCommandBlock ~ ~1 ~ {Command:kill @e[type=MinecartCommandBlock,r=1],Riding:{id:MinecartCommandBlock,Command:setblock ~ ~-1 ~1 redstone_block,Riding:{id:MinecartCommandBlock,Command:setblock ~ ~ ~1 command_block 0 replace {Command:fill ~ ~-3 ~-1 ~ ~ ~ air},Riding:{id:MinecartCommandBlock,Command:"/setblock ~3 ~-1 ~1 minecraft:air 0 replace",Riding:{id:MinecartCommandBlock,Command:"/setblock ~3 ~-1 ~-1 minecraft:air 0 replace",Riding:{id:MinecartCommandBlock,Command:"/setblock ~6 ~-2 ~1 minecraft:air 0 replace",Riding:{id:MinecartCommandBlock,Command:"/setblock ~6 ~-2 ~-1 minecraft:air 0 replace",Riding:{id:MinecartCommandBlock,Command:"/setblock ~5 ~-1 ~1 minecraft:unpowered_comparator 1 replace",Riding:{id:MinecartCommandBlock,Command:"/setblock ~5 ~-1 ~-1 minecraft:unpowered_comparator 1 replace",Riding:{id:MinecartCommandBlock,Command:"/setblock ~5 ~-2 ~-1 minecraft:quartz_block 0 replace",Riding:{id:MinecartCommandBlock,Command:"/setblock ~5 ~-2 ~1 minecraft:quartz_block 0 replace",Riding:{id:MinecartCommandBlock,Command:"/summon FireworksRocketEntity ~ ~ ~ {LifeTime:20,FireworksItem:{id:fireworks,Count:1,tag:{Fireworks:{Explosions:[{Type:1,Flicker:0,Trail:1,Colors:[3887386],FadeColors:[4312372,14602026,6719955]}]}}}}",Riding:{id:MinecartCommandBlock,Command:"/title @a subtitle [{text:\"par : \"},{text:\"noftaly\",color:red}]",Riding:{id:MinecartCommandBlock,Command:"/title @a title {text:\"Better Skeleton\",color:gold,bold:true}",Riding:{id:MinecartCommandBlock,Command:"/tellraw @a [\"\",{\"text\":\"'\",\"bold\":true,\"color\":\"red\"},{\"text\":\"Better Skeleton\",\"bold\":true,\"color\":\"gold\"},{\"text\":\"'\",\"bold\":true,\"color\":\"red\"},{\"text\":\"\\n\\n\"},{\"text\":\"One command par :\",\"color\":\"dark_green\"},{\"text\":\" \"},{\"text\":\"noftaly\",\"color\":\"green\"},{\"text\":\"\\n\"},{\"text\":\"Système par :\",\"color\":\"dark_green\"},{\"text\":\" \"},{\"text\":\"Oromis\",\"color\":\"green\"},{\"text\":\" \"},{\"text\":\"(pseudo du Forum)\",\"color\":\"gray\"},{\"text\":\"\\n\"},{\"text\":\"Forum :\",\"color\":\"dark_green\"},{\"text\":\" \",\"color\":\"green\"},{\"text\":\"clique pour aller sur le forum\",\"color\":\"green\",\"clickEvent\":{\"action\":\"open_url\",\"value\":\"http://minecraft.fr/forum/threads/faire-un-archer-qui-change-darmes-en-fonction-de-la-proximité-du-joueur.152034/\"}},{\"text\":\"\\n\\n\"},{\"text\":\"Merci de l'avoir télécharger !!\",\"bold\":true,\"color\":\"red\",\"clickEvent\":{\"action\":\"run_command\",\"value\":\"/title @a title {text:\\\":)\\\",color:yellow}\"}}]",Riding:{id:MinecartCommandBlock,Command:"/scoreboard objectives add Switch dummy",Riding:{id:MinecartCommandBlock,Command:blockdata ~3 ~-2 ~-1 {Command:fill ~ ~ ~1 ~1 ~1 ~1 stone},Riding:{id:MinecartCommandBlock,Command:blockdata ~3 ~-2 ~1 {Command:fill ~ ~ ~-1 ~1 ~1 ~-1 redstone_block},Riding:{id:MinecartCommandBlock,Command:blockdata ~4 ~-2 ~-1 {Command:"/execute @a ~ ~ ~ scoreboard players set @e[type=Skeleton,r=4] Switch 1 {Equipment:[{id:\\\"minecraft:bow\\\"}]}"},Riding:{id:MinecartCommandBlock,Command:blockdata ~4 ~-2 ~1 {Command:"/execute @a ~ ~ ~ scoreboard players set @e[type=Skeleton,rm=5] Switch 0 {Equipment:[{id:\\\"minecraft:stone_sword\\\"}]}"},Riding:{id:MinecartCommandBlock,Command:blockdata ~5 ~-2 ~-1 {Command:"/3"},Riding:{id:MinecartCommandBlock,Command:blockdata ~5 ~-2 ~1 {Command:"/4"},Riding:{id:MinecartCommandBlock,Command:blockdata ~6 ~-2 ~-1 {Command:"/5"},Riding:{id:MinecartCommandBlock,Command:blockdata ~6 ~-2 ~1 {Command:"/6"},Riding:{id:MinecartCommandBlock,Command:blockdata ~3 ~-1 ~-1 {Command:"/7"},Riding:{id:MinecartCommandBlock,Command:blockdata ~3 ~-1 ~1 {Command:"/8"},Riding:{id:MinecartCommandBlock,Command:blockdata ~4 ~-1 ~-1 {Command:"/replaceitem entity @e[type=Skeleton,score_Switch_min=1,score_Switch=1] slot.weapon minecraft:stone_sword 1 0"},Riding:{id:MinecartCommandBlock,Command:blockdata ~4 ~-1 ~1 {Command:"/replaceitem entity @e[type=Skeleton,score_Switch=0] slot.weapon minecraft:bow 1 0 "},Riding:{id:MinecartCommandBlock,Command:blockdata ~5 ~-1 ~-1 {Command:"/11"},Riding:{id:MinecartCommandBlock,Command:blockdata ~5 ~-1 ~1 {Command:"/12"},Riding:{id:MinecartCommandBlock,Command:blockdata ~6 ~-1 ~-1 {Command:"/execute @a ~ ~ ~ scoreboard players set @e[type=Skeleton] Switch 2"},Riding:{id:MinecartCommandBlock,Command:blockdata ~6 ~-1 ~1 {Command:"/execute @a ~ ~ ~ scoreboard players set @e[type=Skeleton] Switch 2"},Riding:{id:MinecartCommandBlock,Command:setblock ~3 ~-2 ~ redstone_block,Riding:{id:MinecartCommandBlock,Command:fill ~3 ~-2 ~-1 ~6 ~-1 ~-1 command_block,Riding:{id:MinecartCommandBlock,Command:fill ~3 ~-2 ~-1 ~6 ~-2 ~-1 command_block,Riding:{id:MinecartCommandBlock,Command:fill ~3 ~-2 ~1 ~6 ~-1 ~1 command_block,Riding:{id:MinecartCommandBlock,Command:fill ~3 ~-2 ~1 ~6 ~-2 ~1 command_block,Riding:{id:MinecartCommandBlock,Command:setblock ~1 ~ ~ wall_sign 4 replace {Text2:"{text:\\\"Detruire la\\\",color:red,bold:true}",Text3:"{text:\\\"Machine\\\",color:red,bold:true}",Text4:"{text:\\\"\\\",clickEvent:{action:\\\"run_command\\\",value:\\\"fill ~ ~-3 ~-2 ~7 ~4 ~2 air\\\"}}"},Riding:{id:MinecartCommandBlock,Command:setblock ~1 ~-1 ~ wall_sign 4 replace {Text1:"{text:\\\"One Command :\\\",color:white,bold:true}",Text2:"{text:\\\"Better Skeleton\\\",color:dark_gray,bold:false}",Text3:"{text:\\\"par : noftaly\\\",color:green}",Text4:"{text:\\\"Système : Oromis\\\",color:green}"},Riding:{id:MinecartCommandBlock,Command:fill ~2 ~-2 ~-2 ~7 ~-1 ~2 stained_glass 0 replace stained_hardened_clay 14,Riding:{id:MinecartCommandBlock,Command:fill ~2 ~-3 ~-2 ~7 ~ ~2 stained_hardened_clay 14 hollow,Riding:{id:MinecartCommandBlock,Command:gamerule commandBlockOutput false,Riding:{id:MinecartCommandBlock,Riding:{id:FallingSand,Block:activator_rail,Time:1,Riding:{id:FallingSand,Block:redstone_block,Time:1,Riding:{id:FallingSand,Block:stone,Time:1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
Dernière édition: