Kodisa's Avatar
Member
Level 61 High Grandmaster Modder
163

Forum Posts

1 - 11 of 11

    1
    08/19/2022 1:24 pm
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    Use this Generator to make Poses: https://haselkern.com/Minecraft-ArmorStand/
    With /data merge entity you can edit the Pose of an ArmorStand
    1
    08/19/2022 4:27 am
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    Do you use Functions or just Command Blocks? If you use Functions you can use /schedule for the timer: /schedule function YOURFUNCTION 15s

    Also I recommend to use /tellraw and not /say because with /say you have the [@] before your message. Use this Tellraw Generator for your Commands: minecraft.tools/de/tellraw.php
    2
    08/19/2022 4:23 am
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    In the Chain Command Blocks you test if timer in the scoreboard "timer" is 100. In the Repeating Command Block you're adding 1 to your score not to timer. You have 2 options to fix this:
    1. Chain Command Block: execute as @a if score @s timer matches 100 run say sven
    or
    2. Repeating Command Block: scoreboard players add timer timer 1


    Now only the first Chain Command Block should work. To fix this issue set both Chain Command Blocks to Unconditional
    1
    08/08/2022 8:46 pm
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    No you can't move files with Datapacks/Commands. But you can copy small parts of your world with /clone or with Structure Blocks. If you want to copy a huge part of your world then this isn't a good option because you need huge amounts of resources
    1
    08/08/2022 8:39 pm
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    Sorry a bit late but I think it's this: (This is a line in the sounds.json)


    "NAME":{"sounds":[{"name":"SOUND1","weight":1},{"name":"SOUND2","weight":1}]}

    Higher Numbers = Higher Chance
    1
    08/08/2022 8:31 pm
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    Which file and which part? I can't see it
    4
    08/08/2022 8:28 pm
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    Just set all Players into Adventure Mode: /gamemode 2 @a
    Then you're not able to place or destroy Blocks
    1
    06/01/2022 12:56 pm
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    Stone Block on ArmorStand:
    /summon armor_stand ~ ~ ~ {ArmorItems:[{},{},{},{id:minecraft:stone,Count:1b}]}
    or
    /item replace entity @e[type=armor_stand,limit=1] armor.head with stone 1


    You said you use an Texture Pack for Custom Models, if you're using CustomModelData in your Pack then this is your Command:
    /summon armor_stand ~ ~ ~ {ArmorItems:[{},{},{},{id:minecraft:stone,Count:1b,tag:{CustomModelData:1}}]}
    1
    06/01/2022 12:48 pm
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    How can I help you?
    2
    05/03/2021 4:08 am
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    No that does'nt work I've tested it myself. But after hours of searching I've found this website: https://walshy.dev/blog/21_03_16-mc-new-text-filtering


    He's getting into the code and found that the feature sadly isn't finished. You can bypass this but thats a bit too complex for me.
    Thx for your anwser :)
    1
    12/09/2020 4:31 am
    Level 61 : High Grandmaster Modder
    Kodisa
    Kodisa's Avatar
    I think you have to make many command blocks and define scores. Something like this (Commands for 1.16):
    scoreboard players set @a Item 0

    scoreboard players set @a[nbt={SelectedItem:{id:"minecraft:iron_sword",tag:{Damage:1}}}] Item 1
    scoreboard players set @a[nbt={SelectedItem:{id:"minecraft:iron_sword",tag:{Damage:2}}}] Item 2
    scoreboard players set @a[nbt={SelectedItem:{id:"minecraft:iron_sword",tag:{Damage:3}}}] Item 3
    You can use for example Inventory instead of SelectedItem. Then youre able to define a slot where this Item should be in too.

    With the scores you can use replaceitem:
    replaceitem @a[scores={Item=1}] weapon.offhand ITEM1
    replaceitem @a[scores={Item=2}] weapon.offhand ITEM2
    replaceitem @a[scores={Item=3}] weapon.offhand ITEM3

    So just define how you get the scores 1, 2, 3, ... and then its easy. Hope I could help you.
    Kodisa

1 - 11 of 11

Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome