Equip player with enchanted armor

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

HumbleMC

Member
Nov 8, 2018
18
1
0
26
Hi all,

I am working on a skript where it will equip the player with enchanted armor.

I am using this line of code:
code_language.skript:
equip player with chain ChestPlate of unbreaking 1

But it only equips the chestplate without the enchantment..

Would anyone know why?
 
You can use this it works for me

code_language.skript:
set player's helmet to chainmail helmet of unbreaking 1
 
Theres some problems in the beta still
You could try one of two things
code_language.skript:
set {_helmet} to chainmail helmet of unbreaking 1
set player's helmet to {_helmet}

If that doesn't work try this
code_language.skript:
set {_helmet} to chainmail helmet
enchant {_helmet} with unbreaking 1
set player's helmet to {_helmet}
 
Status
Not open for further replies.