Skip to content

Instantly share code, notes, and snippets.

@rijkvp
Last active May 28, 2020 17:21
Show Gist options
  • Save rijkvp/5b8250e815ffd5c107c9a843700fdb6e to your computer and use it in GitHub Desktop.
Save rijkvp/5b8250e815ffd5c107c9a843700fdb6e to your computer and use it in GitHub Desktop.
MC Quest Hoedjes

Hoe maak je hoedjes voor de teams

Credits naar Joshua en Youri voor dit

Hoedjes voor de teams

Zet de eerste op ALWAYS ACTIVE of IMPULSE met redstone. ALAWAYS ACTIVE zou geen lag moeten hebben. Zet eerst wel /gamerule commandBlockOutput false anders wordt de console vol gespammt. Is ook handig voor als iemand dood gaat.

1e command block, zet op REPEAT & IMPULSE / ALWAYS ACTIVE: (Voor team rood)

/replaceitem entity @a[team=rood] armor.head minecraft:leather_helmet{display:{Name:"{\"text\":\"Team rood\"}",color:16711680},Unbreakable:1,HideFlags:63,Enchantments:[{id:"minecraft:binding_curse",lvl:1}]}

2e command block, verbonden met 1e, zet op CHAIN & ALWAYS ACTIVE: (Voor team blauw)

/replaceitem entity @a[team=blauw] armor.head minecraft:leather_helmet{display:{Name:"{\"text\":\"Team blauw\"}",color:65535},Unbreakable:1,HideFlags:63,Enchantments:[{id:"minecraft:binding_curse",lvl:1}]}

3e command block, verbonden met 2e, zet op CHAIN & ALWAYS ACTIVE: (Voor moderators)

/replaceitem entity @a[team=mod] armor.head minecraft:leather_helmet{display:{Name:"{\"text\":\"Moderator hoed\"}",color:49706},Unbreakable:1,HideFlags:63,Enchantments:[{id:"minecraft:binding_curse",lvl:1}]}

Haal de hoedjes weg

Doe met deze command of in een command block:

/replaceitem entity @a armor.head air

@DynCoder
Copy link

Eerste command block niet op REPEAT maar op Impulse

@rijkvp
Copy link
Author

rijkvp commented May 28, 2020

Eerste command block niet op REPEAT maar op Impulse

@Joshua260403
Heeft geen lag & als je /gamerule commandBlockOutput false doet wordt de console niet vol gespammt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment