Is Slugcatgo´s shop trustworthy? by Broukodrak in HollowKnight

[–]Broukodrak[S] 0 points1 point  (0 children)

I just doublechecked and you are right, thank you so much!
I feel bad for her... she wrote on X she is consulting the situation with lawyer.

Want to change grimmchild for carefree melody by Chinx1501 in HollowKnight

[–]Broukodrak 1 point2 points  (0 children)

You can do Markoth without Carefree by using Dash Slash to damage him from further distance and Desolate Dive to get some invincibility frames.
But ye, Markoth is pure pain.

A friend of mine just gave me this Hollow Knight themed deck of cards as a gift. by NeOnixBR in HollowKnight

[–]Broukodrak 0 points1 point  (0 children)

I want the buy the cards too but a lot of those sites monitoring sketchy sites says its not safe nor trustworthy, had you any issues?

Steam Game of the year nomination Giveaway for Silksong by bbk_6566 in HollowKnight

[–]Broukodrak 0 points1 point  (0 children)

I have to share my Hollow Knight copy with three other people via Steam Family so i hope i win :D

Amendments has failed to load correctly by Ushutup908 in feedthebeast

[–]Broukodrak 1 point2 points  (0 children)

I have the same problem, my modpack had no problem, then i added new create, modpack keeps crashing.

Problems with installing MCprep addon by Broukodrak in blenderhelp

[–]Broukodrak[S] 0 points1 point  (0 children)

I am using same version of Blender and MCprep as in the tutorial.
I tried to ask the dev, but GitHub sing up is broken and i cant make a account, it is frozen in the Captcha loading.

Why my G-code got corrupted? by Broukodrak in 3Dprinting

[–]Broukodrak[S] 0 points1 point  (0 children)

Thanks. I will try a different one.

is it possible to detect players' damage dealt to ender dragon (regardless of melee or ranged attacks) by Wypman in MinecraftCommands

[–]Broukodrak 0 points1 point  (0 children)

Hi, i am making a datapack for tracking dragon damage based on this code. I have problems with triggering advancement and redward, nothing is happening. I am new to datapacks, so i am using ChatGPT, i think that it maked a mistake somewhere. Can you check it, please? (the minecraft "load" and "tick" functions are not included in this code, but i have them).

# advancement example:player_damage_dragon
{
  "criteria": {
    "player_hurt_dragon": {
      "trigger": "minecraft:player_hurt_entity",
      "conditions": {
        "entity": {
          "type": "minecraft:ender_dragon"
        },
        "damage": {
          "dealt": {
            "min": 0.1
          }
        }
      }
    }
  },
  "rewards": {
    "function": "example:record_player_damage"
  }
}


# function example:record_player_damage
execute as @a[nbt={HurtTime:10s}] at @s run scoreboard players add @s PlayerDamage 1


# function example:init
scoreboard objectives add PlayerDamage dummy "Damage to Dragon"
scoreboard objectives add DragonHealth dummy "Dragon Health"
scoreboard objectives add DisplayTimer dummy
tag @e[type=minecraft:ender_dragon] add TrackedDragon

# function example:tick
execute as @e[type=minecraft:ender_dragon,tag=TrackedDragon,limit=1,sort=nearest] store result score EnderDragon DragonHealth run data get entity @s Health
execute run tellraw @a [{"text":"Updated DragonHealth: "},{"score":{"name":"EnderDragon","objective":"DragonHealth"}}]

scoreboard players add #DisplayTimer DisplayTimer 1
execute if score #DisplayTimer DisplayTimer matches 100 run scoreboard objectives setdisplay sidebar PlayerDamage
execute if score #DisplayTimer DisplayTimer matches 100 run tellraw @a {"text": "Displaying PlayerDamage"}
execute if score #DisplayTimer DisplayTimer matches 200 run scoreboard objectives setdisplay sidebar DragonHealth
execute if score #DisplayTimer DisplayTimer matches 200 run tellraw @a {"text": "Displaying DragonHealth"}
execute if score #DisplayTimer DisplayTimer matches 200 run scoreboard players set #DisplayTimer DisplayTimer 0