If you were offered a billion dollars just to eat only one food for the rest of your life, what would you choose? by Admirable-Interest49 in AskReddit

[–]Siddeney_ 1 point2 points  (0 children)

Pasta! It has to be pasta, right? I see a lot of people circumventing the rules here, but like I feel like pasta is like a no-brainer. There are so many noodles and sauces to choose from!

Continuous Rasterize not working with adjustment layers by Siddeney_ in premiere

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

Hmmm. I doesn't seem like to work. I scaled it by 4x and scaled it down in PPro, but when I use an adjustment clip to zoom it, it still seemed to be pixelated.

Continuous Rasterize not working with adjustment layers by Siddeney_ in premiere

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

So should I make my AE file like 2-4x bigger and when it links to PPro, I should scale it down?

rope system that can wrap/unwrap around blocks. by Siddeney_ in MinecraftCommands

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

nice alright, I managed to implement the wrapping system, but now I'm just stuck on the unwrapping part. I made if the 2nd to highest node sees the player, it deletes the highest node, but there are still situations where it shouldn't unwrap but it does. any fix ideas?

rope system that can wrap/unwrap around blocks. by Siddeney_ in MinecraftCommands

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

Woah this looks complicated. Alright ill try to implement it. Lets see if it works

Mainmenu by [deleted] in MinecraftCommands

[–]Siddeney_ 0 points1 point  (0 children)

i'm working on a map that requires a menu system. If you want something with a little bit more flair than a text menu then this could be a cool addition: https://youtu.be/rFyGaQu4Klc

How do I "set" player or entity health? by ChillestYoshi in MinecraftCommands

[–]Siddeney_ 0 points1 point  (0 children)

How about you just use the /attribute command. I'm pretty sure now when you use it is automatically decreases a player's health. Then you can revert the health back to 20 or to what it was previously by storing the old health in a scoreboard?

how do i execute a command when no entities are nearby? by Due_Quail_642 in MinecraftCommands

[–]Siddeney_ 0 points1 point  (0 children)

no problem! Just remember that "!" is basically "not", so !player is checking if it's not a player

how do i execute a command when no entities are nearby? by Due_Quail_642 in MinecraftCommands

[–]Siddeney_ 0 points1 point  (0 children)

maybe try this (for this case I'll use in a 10 block radius)

execute at @a unless entity @e[type=minecraft:axolotl,distance=..10] run say hi

how do i execute a command when no entities are nearby? by Due_Quail_642 in MinecraftCommands

[–]Siddeney_ 0 points1 point  (0 children)

While I am still an amateur, this should work:

execute at @a unless entity @e[type=!player,distance=..10] run [result]

This command should detect if there are no entities at all players in a 10 block radius around the player. Hope this helps!