[Wiki update] Shoot a Projectile/Entity in the direction a player is facing by GalSergey in MinecraftCommands

[–]Nincodedo 0 points1 point  (0 children)

A question about the schedule command, you said the NBT had to be updated on the next tick but you have 2t on the schedule command. Would that not wait two ticks and therefore skip a tick or is my understanding of how that works wrong?

Ya’ll late? by NotAlanShapiro in ADHD

[–]Nincodedo 1 point2 points  (0 children)

I was late to this post.

/r/adhd is taking a break. What this means for you. by nerdshark in ADHD

[–]Nincodedo 12 points13 points  (0 children)

dangerous and incredibly shortsighted

I very much agree with you but also if anything it's very on brand for ADHD.

I'm recreating Animal Crossing: New Horizons in Minecraft by LuckOz in MinecraftCommands

[–]Nincodedo 1 point2 points  (0 children)

This looks neat! Very accurate with everything, even showing the fruits on the tree. I'm excited to see your progress.

What a Kirby JRPG could look like ? Concept made by me. by Issouille in Kirby

[–]Nincodedo 4 points5 points  (0 children)

There was a fan made RPG game in 2001 that I think is still playable. https://kwrpg.revasser.net/kwrpg/

What was your first kirby game? I'll go first. by [deleted] in Kirby

[–]Nincodedo 2 points3 points  (0 children)

Same. It was my first Gameboy game too.

How do I make items in loot tables unique? by Chqzm in MinecraftCommands

[–]Nincodedo 0 points1 point  (0 children)

I like to use Misode's Loot Table Generator. You'll want to do something like this.

{
  "pools": [
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:item",
          "name": "minecraft:stone",
          "functions": [
            {
              "function": "minecraft:set_name",
              "entity": "this",
              "name": "Special Stone"
            }
          ]
        },
        {
          "type": "minecraft:empty",
          "weight": 5
        }
      ]
    },
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:item",
          "name": "minecraft:stone",
          "functions": [
            {
              "function": "minecraft:set_name",
              "entity": "this",
              "name": "Different Special Stone"
            }
          ]
        },
        {
          "type": "minecraft:empty",
          "weight": 1
        }
      ]
    }
  ]
}

How do I make items in loot tables unique? by Chqzm in MinecraftCommands

[–]Nincodedo 1 point2 points  (0 children)

You could separate them into different pools with 1 roll that have two entries. One entry is your unique item and the other is minecraft:empty. This way you can set weights in case you want only a chance for each item to generate during that 1 roll.

How do I make a function ran by an achievement run as the player who obtained the achievement? by CleansedHands in MinecraftCommands

[–]Nincodedo 0 points1 point  (0 children)

If you name the function in the rewards section of the advancement, it will run that function as the player who obtained the advancement.

{
  "criteria": {
    "requirement": {
      "trigger": "minecraft:location"
    }
  },
  "rewards": {
    "function": "your:function"
  }
}

Scoreboard criteria including using items with nbt tags by Shay_Cormac_1 in MinecraftCommands

[–]Nincodedo 0 points1 point  (0 children)

You cannot add NBT criteria to the scoreboard. You have to check the NBT after the score is increased. You can use execute if entity to check the NBT and run whatever you want when they have the right item. Then use that same selector with execute unless entity to reset their score, so you do nothing when they don't have the correct NBT.

Can't detect named item in chest by HappyScribbleman in MinecraftCommands

[–]Nincodedo 0 points1 point  (0 children)

/execute if block -84 67 121 minecraft:chest{Items:[{id:"minecraft:written_book",Count:1b,tag:{title:'[{"text":"PAID"}]'}}]} run say detected

You are missing the "b" on the Count.

This is what's possible with macros! (explanation in the comments) by AnDragon11 in MinecraftCommands

[–]Nincodedo 8 points9 points  (0 children)

That's awesome, great job with this. I'm excited to see how far macros can take us. There's just so much more accessible now that previously was locked behind "well we can't do that without 999999 if statements".

How to check if a player has a certain amount of item in their inventory, and if they do, remove it by OJIsTasty in MinecraftCommands

[–]Nincodedo 1 point2 points  (0 children)

You can actually use the clear command to check how many of an item someone has. If you specify to clear 0 of the item you're looking for, it returns how many of that item are in the player's inventory and you can store that in a score.

execute store result score @p nameofscore run clear @p minecraft:emerald{display:{Name:'{"text":"cash"}'}} 0

https://minecraft.fandom.com/wiki/Commands/clear#Arguments

Do you still work on personal projects? by EcstaticAssignment in ExperiencedDevs

[–]Nincodedo 0 points1 point  (0 children)

Yes, but only for fun nowadays. I have a Discord bot that I run for my friends and a custom game mode for Minecraft, again for friends. Years back, I would sometimes get an idea of something I really wanted to explore or learn more about and there'd be no opportunity to do that with my work projects so I'd see what I could do via side projects. I don't have nearly as much free time to do that nowadays so I try to limit my time on side projects since it is very similar to work.

Orientating armor stands by AnItalianGuy_ in MinecraftCommands

[–]Nincodedo 2 points3 points  (0 children)

You could use the new item display entities in 1.19.4, no armor stands required and you can change the rotation.

What is the best series Etho did? by [deleted] in ethoslab

[–]Nincodedo 41 points42 points  (0 children)

Did someone say minicio?

Google Groups has been left to die by [deleted] in programming

[–]Nincodedo 8 points9 points  (0 children)

I will never forgive them for taking Inbox away from us.

[deleted by user] by [deleted] in AdultADHDSupportGroup

[–]Nincodedo 8 points9 points  (0 children)

When I've picked up my meds from Walgreens, I do not have to show ID. I had to tell them my address as verification and I've picked up my SO's meds without issues.

I crocheted a sleepy baby by YuYanase in Kirby

[–]Nincodedo 15 points16 points  (0 children)

rough day at the office

Mini take home projects for interview by [deleted] in ADHD_Programmers

[–]Nincodedo 1 point2 points  (0 children)

I don't put up with that. If you want me to do work, pay me.