Summon an armour stand with a sword on head.

  • 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 community!

    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.
summon ArmorStand -217 70 111 {Equipment:[{},{},{},{},{id:46}]}
 
summon ArmorStand -217 70 111 {Equipment:[{},{},{},{},{id:46}]}

If you insist on using the /summon command, I would suggest using this online tool.

For example, for 1.11 and above, you would use "/summon armor_stand ~ ~ ~ {ArmorItems:[{},{},{},{id:"46",Count:1b,}]}"

However, we can do the same thing with Skript addons:

code_language.skript:
command /atest:
    trigger:
        spawn 1 armor stand at player
        add "{ArmorItems:[{},{},{},{id:""46"",Count:1b,}]}" to nbt of last spawned entity # SkStuff

Or this:

code_language.skript:
command /atest:
    trigger:
        spawn 1 armor stand at player
        set armor stand helmet of last spawned entity to tnt # Skellett

This also works in vanilla Skript:

code_language.skript:
command /atest:
    trigger:
        spawn 1 armor stand at player
        set helmet of last spawned entity to tnt

However I wouldn't be surprised if it's a Bensku's fork thing
 
Last edited by a moderator:
Status
Not open for further replies.